]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/3.5.2rc' into 1705-dbclean-advanced
authorMichael <heluecht@pirati.ca>
Mon, 29 May 2017 20:54:43 +0000 (20:54 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 29 May 2017 20:54:43 +0000 (20:54 +0000)
14 files changed:
include/dbstructure.php
include/poller.php
mod/admin.php
mod/profiles.php
src/Network/Probe.php
util/messages.po
view/lang/de/messages.po
view/lang/de/strings.php
view/lang/en-GB/messages.po
view/lang/en-GB/strings.php
view/lang/pt-br/messages.po
view/lang/pt-br/strings.php
view/lang/ru/messages.po
view/lang/ru/strings.php

index c9c37c9390bcca0f45153d0cd33cc6744ced9320..413395905d10aabb1658b98154d3afe3892b92c7 100644 (file)
@@ -8,6 +8,10 @@ require_once("include/text.php");
 
 define('NEW_UPDATE_ROUTINE_VERSION', 1170);
 
+const DB_UPDATE_NOT_CHECKED = 0; // Database check wasn't executed before
+const DB_UPDATE_SUCCESSFUL = 1;  // Database check was successful
+const DB_UPDATE_FAILED = 2;      // Database check failed
+
 /*
  * Converts all tables from MyISAM to InnoDB
  */
@@ -480,6 +484,12 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                Config::set('system', 'maintenance_reason', '');
        }
 
+       if ($errors) {
+               Config::set('system', 'dbupdate', DB_UPDATE_FAILED);
+       } else {
+               Config::set('system', 'dbupdate', DB_UPDATE_SUCCESSFUL);
+       }
+
        return $errors;
 }
 
index ae249ffe46ddc41f8be766534fdfbaa7b4e1c696..839e5c11bbdb36c9f027d57542fa19b269bb474d 100644 (file)
@@ -417,11 +417,9 @@ function poller_too_much_workers() {
 
        $maxqueues = $queues;
 
-       $active = poller_active_workers();
-
        // Decrease the number of workers at higher load
        $load = current_load();
-       if($load) {
+       if ($load) {
                $maxsysload = intval(Config::get("system", "maxloadavg", 50));
 
                $maxworkers = $queues;
@@ -431,6 +429,33 @@ function poller_too_much_workers() {
                $slope = $maxworkers / pow($maxsysload, $exponent);
                $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent));
 
+               $active = 0;
+
+               // Create a list of queue entries grouped by their priority
+               $listitem = array();
+
+               // Adding all processes with no workerqueue entry
+               $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` WHERE NOT EXISTS (SELECT id FROM `workerqueue` WHERE `workerqueue`.`pid` = `process`.`pid`)");
+               if ($process = dba::fetch($processes)) {
+                       $listitem[0] = "0:".$process["running"];
+                       $active += $process["running"];
+               }
+               dba::close($processes);
+
+               // Now adding all processes with workerqueue entries
+               $entries = dba::p("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` GROUP BY `priority`");
+               while ($entry = dba::fetch($entries)) {
+                       $processes = dba::p("SELECT COUNT(*) AS `running` FROM `process` LEFT JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` WHERE `priority` = ?", $entry["priority"]);
+                       if ($process = dba::fetch($processes)) {
+                               $listitem[$entry["priority"]] = $entry["priority"].":".$process["running"]."/".$entry["entries"];
+                               $active += $process["running"];
+                       }
+                       dba::close($processes);
+               }
+               dba::close($entries);
+
+               $processlist = implode(', ', $listitem);
+
                $s = q("SELECT COUNT(*) AS `total` FROM `workerqueue` WHERE `executed` <= '%s'", dbesc(NULL_DATE));
                $entries = $s[0]["total"];
 
@@ -448,27 +473,6 @@ function poller_too_much_workers() {
                        }
                }
 
-               // Create a list of queue entries grouped by their priority
-               $running = array(PRIORITY_CRITICAL => 0,
-                               PRIORITY_HIGH => 0,
-                               PRIORITY_MEDIUM => 0,
-                               PRIORITY_LOW => 0,
-                               PRIORITY_NEGLIGIBLE => 0);
-
-               $r = q("SELECT COUNT(*) AS `running`, `priority` FROM `process` INNER JOIN `workerqueue` ON `workerqueue`.`pid` = `process`.`pid` GROUP BY `priority`");
-               if (dbm::is_result($r))
-                       foreach ($r AS $process)
-                               $running[$process["priority"]] = $process["running"];
-
-               $processlist = "";
-               $r = q("SELECT COUNT(*) AS `entries`, `priority` FROM `workerqueue` GROUP BY `priority`");
-               if (dbm::is_result($r))
-                       foreach ($r as $entry) {
-                               if ($processlist != "")
-                                       $processlist .= ", ";
-                               $processlist .= $entry["priority"].":".$running[$entry["priority"]]."/".$entry["entries"];
-                       }
-
                logger("Load: ".$load."/".$maxsysload." - processes: ".$active."/".$entries." (".$processlist.") - maximum: ".$queues."/".$maxqueues, LOGGER_DEBUG);
 
                // Are there fewer workers running as possible? Then fork a new one.
@@ -478,6 +482,8 @@ function poller_too_much_workers() {
                        $a = get_app();
                        $a->proc_run($args);
                }
+       } else {
+               $active = poller_active_workers();
        }
 
        return($active >= $queues);
index d9f2d95760d3449b71f550887e0ff00dd85e3113..d9684d6a4fe462399098c2e837c942f01d4aad7a 100644 (file)
@@ -545,11 +545,16 @@ function admin_page_summary(App $a) {
                $showwarning = true;
                $warningtext[] = sprintf(t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />'), 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');
        }
-       // MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
-       if ((version_compare($db->server_info(), '5.7.4') >= 0) AND
-               !(strpos($db->server_info(), 'MariaDB') !== false)) {
-               $warningtext[] = t('You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB.');
+
+       if (Config::get('system', 'dbupdate', DB_UPDATE_NOT_CHECKED) == DB_UPDATE_NOT_CHECKED) {
+               require_once("include/dbstructure.php");
+               update_structure(false, true);
        }
+       if (Config::get('system', 'dbupdate') == DB_UPDATE_FAILED) {
+               $showwarning = true;
+               $warningtext[] = t('The database update failed. Please run "php include/dbstructure.php update" from the command line and have a look at the errors that might appear.');
+       }
+
        $r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`");
        $accounts = array(
                array(t('Normal Account'), 0),
index 60a1fe818a9c88182ff0f4fc150fd7bf3b315420..01030914c47bd095b7806403ab52ea63eead1a44 100644 (file)
@@ -4,6 +4,7 @@ use Friendica\App;
 use Friendica\Network\Probe;
 
 require_once 'include/Contact.php';
+require_once 'include/socgraph.php';
 
 function profiles_init(App $a) {
 
index 5606332849cf8deafff87401d74a27a15767bd8f..94fa2733befa7eba890c82e457d3a84d27f4da40 100644 (file)
@@ -58,6 +58,28 @@ class Probe {
                return $newdata;
        }
 
+       /**
+        * @brief Check if the hostname belongs to the own server
+        *
+        * @param string $host The hostname that is to be checked
+        *
+        * @return bool Does the testes hostname belongs to the own server?
+        */
+       private function ownHost($host) {
+               $own_host = get_app()->get_hostname();
+
+               $parts = parse_url($host);
+
+               if (!isset($parts['scheme'])) {
+                       $parts = parse_url('http://'.$host);
+               }
+
+               if (!isset($parts['host'])) {
+                       return false;
+               }
+               return $parts['host'] == $own_host;
+       }
+
        /**
         * @brief Probes for XRD data
         *
@@ -82,7 +104,8 @@ class Probe {
                logger("Probing for ".$host, LOGGER_DEBUG);
 
                $ret = z_fetch_url($ssl_url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
-               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+               if (($ret['errno'] == CURLE_OPERATION_TIMEDOUT) AND !self::ownHost($ssl_url)) {
+                       logger("Probing timeout for ".$ssl_url, LOGGER_DEBUG);
                        return false;
                }
                $xml = $ret['body'];
@@ -92,12 +115,14 @@ class Probe {
                if (!is_object($xrd)) {
                        $ret = z_fetch_url($url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
                        if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                               logger("Probing timeout for ".$url, LOGGER_DEBUG);
                                return false;
                        }
                        $xml = $ret['body'];
                        $xrd = parse_xml_string($xml, false);
                }
                if (!is_object($xrd)) {
+                       logger("No xrd object found for ".$host, LOGGER_DEBUG);
                        return false;
                }
 
@@ -133,6 +158,8 @@ class Probe {
 
                self::$baseurl = "http://".$host;
 
+               logger("Probing successful for ".$host, LOGGER_DEBUG);
+
                return $xrd_data;
        }
 
@@ -404,6 +431,7 @@ class Probe {
                                $lrdd = self::xrd($host);
                        }
                        if (!$lrdd) {
+                               logger('No XRD data was found for '.$uri, LOGGER_DEBUG);
                                return self::feed($uri);
                        }
                        $nick = array_pop($path_parts);
@@ -435,6 +463,7 @@ class Probe {
                        $lrdd = self::xrd($host);
 
                        if (!$lrdd) {
+                               logger('No XRD data was found for '.$uri, LOGGER_DEBUG);
                                return self::mail($uri, $uid);
                        }
                        $addr = $uri;
index 3da18ca6b2e8ed86b1d6fdd5cc84612f6145c95b..9f845714e6350426bf1d248d279c5f1cc1e6a0d2 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-03 07:08+0200\n"
+"POT-Creation-Date: 2017-05-28 11:09+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,1836 +18,2002 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
-#: view/theme/vier/theme.php:254
-msgid "Forums"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
 msgstr ""
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:256
-msgid "External link to forum"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
 msgstr ""
 
-#: include/ForumManager.php:119 include/contact_widgets.php:269
-#: include/items.php:2450 mod/content.php:624 object/Item.php:420
-#: view/theme/vier/theme.php:259 boot.php:1000
-msgid "show more"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: include/NotificationsManager.php:153
-msgid "System"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
 msgstr ""
 
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517
-#: view/theme/frio/theme.php:253
-msgid "Network"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
 msgstr ""
 
-#: include/NotificationsManager.php:167 mod/network.php:832
-#: mod/profiles.php:696
-msgid "Personal"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
 msgstr ""
 
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161
-msgid "Home"
+#: include/contact_selectors.php:56 mod/admin.php:986
+msgid "Frequently"
 msgstr ""
 
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
+#: include/contact_selectors.php:57 mod/admin.php:987
+msgid "Hourly"
 msgstr ""
 
-#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
-#, php-format
-msgid "%s commented on %s's post"
+#: include/contact_selectors.php:58 mod/admin.php:988
+msgid "Twice daily"
 msgstr ""
 
-#: include/NotificationsManager.php:250
-#, php-format
-msgid "%s created a new post"
+#: include/contact_selectors.php:59 mod/admin.php:989
+msgid "Daily"
 msgstr ""
 
-#: include/NotificationsManager.php:265
-#, php-format
-msgid "%s liked %s's post"
+#: include/contact_selectors.php:60
+msgid "Weekly"
 msgstr ""
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s disliked %s's post"
+#: include/contact_selectors.php:61
+msgid "Monthly"
 msgstr ""
 
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is attending %s's event"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:886
+msgid "Friendica"
 msgstr ""
 
-#: include/NotificationsManager.php:304
-#, php-format
-msgid "%s is not attending %s's event"
+#: include/contact_selectors.php:77
+msgid "OStatus"
 msgstr ""
 
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s may attend %s's event"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
 msgstr ""
 
-#: include/NotificationsManager.php:334
-#, php-format
-msgid "%s is now friends with %s"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540
+msgid "Email"
 msgstr ""
 
-#: include/NotificationsManager.php:770
-msgid "Friend Suggestion"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:888
+#: mod/settings.php:849
+msgid "Diaspora"
 msgstr ""
 
-#: include/NotificationsManager.php:803
-msgid "Friend/Connect Request"
+#: include/contact_selectors.php:81
+msgid "Facebook"
 msgstr ""
 
-#: include/NotificationsManager.php:803
-msgid "New Follower"
+#: include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
-#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
-#: mod/item.php:467
-msgid "Wall Photos"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
 msgstr ""
 
-#: include/delivery.php:427
-msgid "(no subject)"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
 msgstr ""
 
-#: include/delivery.php:439 include/enotify.php:43
-msgid "noreply"
+#: include/contact_selectors.php:85
+msgid "MySpace"
 msgstr ""
 
-#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
+#: include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: include/like.php:31 include/like.php:36 include/conversation.php:156
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: include/contact_selectors.php:88
+msgid "pump.io"
 msgstr ""
 
-#: include/like.php:41
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
+#: include/contact_selectors.php:89
+msgid "Twitter"
 msgstr ""
 
-#: include/like.php:46
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: include/like.php:51
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
 msgstr ""
 
-#: include/like.php:178 include/conversation.php:141
-#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "photo"
+#: include/contact_selectors.php:92
+msgid "pnut"
 msgstr ""
 
-#: include/like.php:178 include/conversation.php:136
-#: include/conversation.php:146 include/conversation.php:288
-#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "status"
+#: include/contact_selectors.php:93
+msgid "App.net"
 msgstr ""
 
-#: include/like.php:180 include/conversation.php:133
-#: include/conversation.php:285 include/text.php:1870
-msgid "event"
+#: include/features.php:65
+msgid "General Features"
 msgstr ""
 
-#: include/message.php:15 include/message.php:169
-msgid "[no subject]"
+#: include/features.php:67
+msgid "Multiple Profiles"
 msgstr ""
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
+#: include/features.php:68
+msgid "Photo Location"
 msgstr ""
 
-#: include/nav.php:40 include/text.php:1083
-msgid "@name, !forum, #tags, content"
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present) "
+"prior to stripping metadata and links it to a map."
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
-msgid "Logout"
+#: include/features.php:69
+msgid "Export Public Calendar"
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
 msgstr ""
 
-#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645
-#: mod/contacts.php:841 view/theme/frio/theme.php:246
-msgid "Status"
+#: include/features.php:74
+msgid "Post Composition Features"
 msgstr ""
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-msgid "Your posts and conversations"
+#: include/features.php:75
+msgid "Post Preview"
 msgstr ""
 
-#: include/nav.php:82 include/identity.php:622 include/identity.php:744
-#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849
-#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
-msgid "Profile"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-msgid "Your profile page"
+#: include/features.php:76
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31
-#: view/theme/frio/theme.php:248
-msgid "Photos"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-msgid "Your photos"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: include/nav.php:84 include/identity.php:793 include/identity.php:796
-#: view/theme/frio/theme.php:249
-msgid "Videos"
+#: include/features.php:82
+msgid "Search by Date"
 msgstr ""
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:805
-#: include/identity.php:816 mod/cal.php:270 mod/events.php:374
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-msgid "Events"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
 msgstr ""
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-msgid "Your events"
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
 msgstr ""
 
-#: include/nav.php:86
-msgid "Personal notes"
+#: include/features.php:84
+msgid "Group Filter"
 msgstr ""
 
-#: include/nav.php:86
-msgid "Your personal notes"
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
-msgid "Login"
+#: include/features.php:85
+msgid "Network Filter"
 msgstr ""
 
-#: include/nav.php:95
-msgid "Sign in"
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: include/nav.php:105
-msgid "Home Page"
+#: include/features.php:86 mod/network.php:209 mod/search.php:37
+msgid "Saved Searches"
 msgstr ""
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1844
-msgid "Register"
+#: include/features.php:86
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: include/nav.php:109
-msgid "Create an account"
+#: include/features.php:91
+msgid "Network Tabs"
 msgstr ""
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297
-msgid "Help"
+#: include/features.php:92
+msgid "Network Personal Tab"
 msgstr ""
 
-#: include/nav.php:115
-msgid "Help and documentation"
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Apps"
+#: include/features.php:93
+msgid "Network New Tab"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: include/nav.php:123 include/text.php:1080 mod/search.php:149
-msgid "Search"
+#: include/features.php:94
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: include/nav.php:123
-msgid "Search site content"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: include/nav.php:126 include/text.php:1088
-msgid "Full Text"
+#: include/features.php:99
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: include/nav.php:127 include/text.php:1089
-msgid "Tags"
+#: include/features.php:100
+msgid "Multiple Deletion"
 msgstr ""
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:838
-#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
-#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
-msgid "Contacts"
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:32
-msgid "Community"
+#: include/features.php:101
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: include/nav.php:143
-msgid "Conversations on this site"
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: include/nav.php:145
-msgid "Conversations on the network"
+#: include/features.php:102
+msgid "Tagging"
 msgstr ""
 
-#: include/nav.php:149 include/identity.php:808 include/identity.php:819
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: include/nav.php:152
-msgid "Directory"
+#: include/features.php:103
+msgid "Post Categories"
 msgstr ""
 
-#: include/nav.php:152
-msgid "People directory"
+#: include/features.php:103
+msgid "Add categories to your posts"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information"
+#: include/features.php:104 include/contact_widgets.php:162
+msgid "Saved Folders"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
+#: include/features.php:105
+msgid "Dislike Posts"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Network Reset"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
+#: include/features.php:106
+msgid "Star Posts"
 msgstr ""
 
-#: include/nav.php:166
-msgid "Friend Requests"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
+#: include/features.php:107
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: include/nav.php:170
-msgid "See all notifications"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: include/nav.php:171 mod/settings.php:906
-msgid "Mark as seen"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
 msgstr ""
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
-msgid "Messages"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
 msgstr ""
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: include/nav.php:176
-msgid "Inbox"
+#: include/group.php:243
+msgid "Everybody"
 msgstr ""
 
-#: include/nav.php:177
-msgid "Outbox"
+#: include/group.php:266
+msgid "edit"
 msgstr ""
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
+#: include/group.php:287 mod/newmember.php:39
+msgid "Groups"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage"
+#: include/group.php:289
+msgid "Edit groups"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage other pages"
+#: include/group.php:291
+msgid "Edit group"
 msgstr ""
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
+#: include/group.php:292
+msgid "Create a new group"
 msgstr ""
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
+#: include/group.php:293 mod/group.php:100 mod/group.php:197
+msgid "Group Name: "
 msgstr ""
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
-msgid "Settings"
+#: include/group.php:295
+msgid "Contacts not in any group"
 msgstr ""
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
+#: include/group.php:297 mod/network.php:210
+msgid "add"
 msgstr ""
 
-#: include/nav.php:189 include/identity.php:290
-msgid "Profiles"
+#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133
+#: view/theme/vier/theme.php:256
+msgid "Forums"
 msgstr ""
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
+#: include/ForumManager.php:118 view/theme/vier/theme.php:258
+msgid "External link to forum"
 msgstr ""
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
+#: include/ForumManager.php:121 include/contact_widgets.php:271
+#: include/items.php:2432 mod/content.php:625 object/Item.php:417
+#: view/theme/vier/theme.php:261 src/App.php:506
+msgid "show more"
 msgstr ""
 
-#: include/nav.php:197 mod/admin.php:196
-msgid "Admin"
+#: include/NotificationsManager.php:153
+msgid "System"
 msgstr ""
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
+#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518
+#: view/theme/frio/theme.php:255
+msgid "Network"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Navigation"
+#: include/NotificationsManager.php:167 mod/network.php:835
+#: mod/profiles.php:699
+msgid "Personal"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Site map"
+#: include/NotificationsManager.php:174 include/nav.php:107
+#: include/nav.php:163
+msgid "Home"
 msgstr ""
 
-#: include/plugin.php:530 include/plugin.php:532
-msgid "Click here to upgrade."
+#: include/NotificationsManager.php:181 include/nav.php:168
+msgid "Introductions"
 msgstr ""
 
-#: include/plugin.php:538
-msgid "This action exceeds the limits set by your subscription plan."
+#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: include/plugin.php:543
-msgid "This action is not available under your subscription plan."
+#: include/NotificationsManager.php:250
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Male"
+#: include/NotificationsManager.php:265
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Female"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
+#: include/NotificationsManager.php:291
+#, php-format
+msgid "%s is attending %s's event"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
+#: include/NotificationsManager.php:304
+#, php-format
+msgid "%s is not attending %s's event"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
+#: include/NotificationsManager.php:317
+#, php-format
+msgid "%s may attend %s's event"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
+#: include/NotificationsManager.php:334
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
+#: include/NotificationsManager.php:770
+msgid "Friend Suggestion"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
+#: include/NotificationsManager.php:803
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
+#: include/NotificationsManager.php:803
+msgid "New Follower"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
+#: include/acl_selectors.php:360
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
+#: include/acl_selectors.php:361 mod/settings.php:1189
+msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: include/profile_selectors.php:6
-msgid "Other"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
 msgstr ""
 
-#: include/profile_selectors.php:6 include/conversation.php:1547
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/profile_selectors.php:23
-msgid "Males"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:109
+msgid "show"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Females"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:109
+msgid "don't show"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Gay"
+#: include/acl_selectors.php:375 mod/editpost.php:125
+msgid "CC: email addresses"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
+#: include/acl_selectors.php:376 mod/editpost.php:132
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
+#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198
+#: mod/photos.php:1595
+msgid "Permissions"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
+#: include/acl_selectors.php:379
+msgid "Close"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
+#: include/auth.php:52
+msgid "Logged out."
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
+#: include/auth.php:123 include/auth.php:185 mod/openid.php:110
+msgid "Login failed."
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
+#: include/auth.php:139 include/user.php:75
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
+#: include/auth.php:139 include/user.php:75
+msgid "The error message was:"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
+#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
+#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56
+#: include/event.php:459
+msgid "Starts:"
 msgstr ""
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
+#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62
+#: include/event.php:460
+msgid "Finishes:"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Single"
+#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69
+#: include/event.php:461 include/identity.php:342 mod/directory.php:135
+#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639
+msgid "Location:"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
+#: include/contact_widgets.php:8
+msgid "Add New Contact"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Available"
+#: include/contact_widgets.php:9
+msgid "Enter address or web location"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
+#: include/contact_widgets.php:10
+msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
+#: include/contact_widgets.php:12 include/identity.php:230
+#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92
+#: mod/suggest.php:103
+msgid "Connect"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr ""
+#: include/contact_widgets.php:26
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/profile_selectors.php:42
-msgid "Dating"
+#: include/contact_widgets.php:32
+msgid "Find People"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
+#: include/contact_widgets.php:33
+msgid "Enter name or interest"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
+#: include/contact_widgets.php:34 include/conversation.php:1018
+#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212
+#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613
+msgid "Connect/Follow"
 msgstr ""
 
-#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267
-msgid "Friends"
+#: include/contact_widgets.php:35
+msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
+#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809
+msgid "Find"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Casual"
+#: include/contact_widgets.php:37 mod/suggest.php:116
+#: view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
+msgid "Similar Interests"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Married"
+#: include/contact_widgets.php:39
+msgid "Random Profile"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: include/contact_widgets.php:40 view/theme/vier/theme.php:204
+msgid "Invite Friends"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Partners"
+#: include/contact_widgets.php:127
+msgid "Networks"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
+#: include/contact_widgets.php:130
+msgid "All Networks"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Common law"
+#: include/contact_widgets.php:165 include/contact_widgets.php:200
+msgid "Everything"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Happy"
+#: include/contact_widgets.php:197
+msgid "Categories"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: include/contact_widgets.php:266
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
+#: include/conversation.php:134 include/conversation.php:286
+#: include/like.php:183 include/text.php:1871
+msgid "event"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
+#: include/conversation.php:137 include/conversation.php:147
+#: include/conversation.php:289 include/conversation.php:298
+#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89
+#: mod/tagger.php:63
+msgid "status"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Separated"
+#: include/conversation.php:142 include/conversation.php:294
+#: include/like.php:181 include/text.php:1873 mod/subthread.php:89
+#: mod/tagger.php:63
+msgid "photo"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
+#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
+#: include/conversation.php:157 include/like.php:34 include/like.php:39
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: include/conversation.php:160
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
+#: include/conversation.php:163
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
+#: include/conversation.php:166
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
+#: include/conversation.php:199 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
+#: include/conversation.php:240
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
+#: include/conversation.php:261 mod/mood.php:64
+#, php-format
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: include/security.php:61
-msgid "Welcome "
+#: include/conversation.php:308 mod/tagger.php:96
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: include/security.php:62
-msgid "Please upload a profile photo."
+#: include/conversation.php:335
+msgid "post/item"
 msgstr ""
 
-#: include/security.php:65
-msgid "Welcome back "
+#: include/conversation.php:336
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/security.php:429
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664
+#: mod/profiles.php:344
+msgid "Likes"
 msgstr ""
 
-#: include/uimport.php:91
-msgid "Error decoding account file"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664
+#: mod/profiles.php:348
+msgid "Dislikes"
 msgstr ""
 
-#: include/uimport.php:97
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: include/conversation.php:616 include/conversation.php:1542
+#: mod/content.php:374 mod/photos.php:1665
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/uimport.php:113 include/uimport.php:124
-msgid "Error! Cannot check nickname"
+#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665
+msgid "Not attending"
 msgstr ""
 
-#: include/uimport.php:117 include/uimport.php:128
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665
+msgid "Might attend"
 msgstr ""
 
-#: include/uimport.php:150
-msgid "User creation error"
+#: include/conversation.php:748 mod/content.php:454 mod/content.php:760
+#: mod/photos.php:1730 object/Item.php:137
+msgid "Select"
 msgstr ""
 
-#: include/uimport.php:170
-msgid "User profile creation error"
+#: include/conversation.php:749 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819
+#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138
+msgid "Delete"
 msgstr ""
 
-#: include/uimport.php:219
+#: include/conversation.php:792 mod/content.php:488 mod/content.php:916
+#: mod/content.php:917 object/Item.php:353 object/Item.php:354
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/uimport.php:289
-msgid "Done. You can now login with your username and password"
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453
-#: include/conversation.php:1004 include/conversation.php:1020
-#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73
-#: mod/suggest.php:82 mod/dirfind.php:209
-msgid "View Profile"
+#: include/conversation.php:804 object/Item.php:341
+msgid "Categories:"
 msgstr ""
 
-#: include/Contact.php:409 include/contact_widgets.php:32
-#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610
-#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106
-msgid "Connect/Follow"
+#: include/conversation.php:805 object/Item.php:342
+msgid "Filed under:"
 msgstr ""
 
-#: include/Contact.php:452 include/conversation.php:1003
-msgid "View Status"
+#: include/conversation.php:812 mod/content.php:498 mod/content.php:929
+#: object/Item.php:367
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: include/Contact.php:454 include/conversation.php:1005
-msgid "View Photos"
+#: include/conversation.php:828 mod/content.php:514
+msgid "View in context"
 msgstr ""
 
-#: include/Contact.php:455 include/conversation.php:1006
-msgid "Network Posts"
+#: include/conversation.php:830 include/conversation.php:1299
+#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116
+#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629
+#: mod/wallmessage.php:142 object/Item.php:392
+msgid "Please wait"
 msgstr ""
 
-#: include/Contact.php:456 include/conversation.php:1007
-msgid "View Contact"
+#: include/conversation.php:907
+msgid "remove"
 msgstr ""
 
-#: include/Contact.php:457
-msgid "Drop Contact"
+#: include/conversation.php:911
+msgid "Delete Selected Items"
 msgstr ""
 
-#: include/Contact.php:458 include/conversation.php:1008
-msgid "Send PM"
+#: include/conversation.php:1003
+msgid "Follow Thread"
 msgstr ""
 
-#: include/Contact.php:459 include/conversation.php:1012
-msgid "Poke"
+#: include/conversation.php:1004 include/Contact.php:432
+msgid "View Status"
 msgstr ""
 
-#: include/Contact.php:840
-msgid "Organisation"
+#: include/conversation.php:1005 include/conversation.php:1021
+#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433
+#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211
+#: mod/match.php:76 mod/suggest.php:84
+msgid "View Profile"
 msgstr ""
 
-#: include/Contact.php:843
-msgid "News"
+#: include/conversation.php:1006 include/Contact.php:434
+msgid "View Photos"
 msgstr ""
 
-#: include/Contact.php:846
-msgid "Forum"
+#: include/conversation.php:1007 include/Contact.php:435
+msgid "Network Posts"
 msgstr ""
 
-#: include/acl_selectors.php:353
-msgid "Post to Email"
+#: include/conversation.php:1008 include/Contact.php:436
+msgid "View Contact"
 msgstr ""
 
-#: include/acl_selectors.php:358
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+#: include/conversation.php:1009 include/Contact.php:438
+msgid "Send PM"
 msgstr ""
 
-#: include/acl_selectors.php:359 mod/settings.php:1188
-msgid "Hide your profile details from unknown viewers?"
+#: include/conversation.php:1013 include/Contact.php:439
+msgid "Poke"
 msgstr ""
 
-#: include/acl_selectors.php:365
-msgid "Visible to everybody"
+#: include/conversation.php:1140
+#, php-format
+msgid "%s likes this."
 msgstr ""
 
-#: include/acl_selectors.php:366 view/theme/vier/config.php:108
-msgid "show"
+#: include/conversation.php:1143
+#, php-format
+msgid "%s doesn't like this."
 msgstr ""
 
-#: include/acl_selectors.php:367 view/theme/vier/config.php:108
-msgid "don't show"
+#: include/conversation.php:1146
+#, php-format
+msgid "%s attends."
 msgstr ""
 
-#: include/acl_selectors.php:373 mod/editpost.php:123
-msgid "CC: email addresses"
+#: include/conversation.php:1149
+#, php-format
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/acl_selectors.php:374 mod/editpost.php:130
-msgid "Example: bob@example.com, mary@example.com"
+#: include/conversation.php:1152
+#, php-format
+msgid "%s attends maybe."
 msgstr ""
 
-#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196
-#: mod/photos.php:1593
-msgid "Permissions"
+#: include/conversation.php:1163
+msgid "and"
 msgstr ""
 
-#: include/acl_selectors.php:377
-msgid "Close"
+#: include/conversation.php:1169
+#, php-format
+msgid ", and %d other people"
 msgstr ""
 
-#: include/api.php:1089
+#: include/conversation.php:1178
 #, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: include/api.php:1110
+#: include/conversation.php:1179
 #, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgid "%s like this."
 msgstr ""
 
-#: include/api.php:1131
+#: include/conversation.php:1182
 #, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: include/auth.php:51
-msgid "Logged out."
+#: include/conversation.php:1183
+#, php-format
+msgid "%s don't like this."
 msgstr ""
 
-#: include/auth.php:122 include/auth.php:184 mod/openid.php:110
-msgid "Login failed."
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: include/auth.php:138 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: include/conversation.php:1187
+#, php-format
+msgid "%s attend."
 msgstr ""
 
-#: include/auth.php:138 include/user.php:75
-msgid "The error message was:"
+#: include/conversation.php:1190
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
+#: include/conversation.php:1191
+#, php-format
+msgid "%s don't attend."
 msgstr ""
 
-#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54
-#: include/event.php:525
-msgid "Starts:"
+#: include/conversation.php:1194
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60
-#: include/event.php:526
-msgid "Finishes:"
+#: include/conversation.php:1195
+#, php-format
+msgid "%s anttend maybe."
 msgstr ""
 
-#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
-#: include/event.php:527 include/identity.php:336 mod/contacts.php:636
-#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
-msgid "Location:"
+#: include/conversation.php:1224 include/conversation.php:1240
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133
-msgid "Image/photo"
+#: include/conversation.php:1225 include/conversation.php:1241
+#: mod/message.php:273 mod/message.php:280 mod/message.php:420
+#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: include/bbcode.php:497
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/conversation.php:1226 include/conversation.php:1242
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: include/bbcode.php:1089 include/bbcode.php:1111
-msgid "$1 wrote:"
+#: include/conversation.php:1227 include/conversation.php:1243
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: include/bbcode.php:1141 include/bbcode.php:1142
-msgid "Encrypted content"
+#: include/conversation.php:1228 include/conversation.php:1244
+msgid "Tag term:"
 msgstr ""
 
-#: include/bbcode.php:1257
-msgid "Invalid source protocol"
+#: include/conversation.php:1229 include/conversation.php:1245
+#: mod/filer.php:31
+msgid "Save to Folder:"
 msgstr ""
 
-#: include/bbcode.php:1267
-msgid "Invalid link protocol"
+#: include/conversation.php:1230 include/conversation.php:1246
+msgid "Where are you right now?"
 msgstr ""
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: include/conversation.php:1231
+msgid "Delete item(s)?"
 msgstr ""
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
+#: include/conversation.php:1280
+msgid "Share"
 msgstr ""
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337
+#: mod/message.php:521 mod/wallmessage.php:140
+msgid "Upload photo"
 msgstr ""
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: include/conversation.php:1282 mod/editpost.php:103
+msgid "upload photo"
 msgstr ""
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: include/conversation.php:1283 mod/editpost.php:104
+msgid "Attach file"
 msgstr ""
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: include/conversation.php:1284 mod/editpost.php:105
+msgid "attach file"
 msgstr ""
 
-#: include/contact_selectors.php:56 mod/admin.php:980
-msgid "Frequently"
+#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338
+#: mod/message.php:522 mod/wallmessage.php:141
+msgid "Insert web link"
 msgstr ""
 
-#: include/contact_selectors.php:57 mod/admin.php:981
-msgid "Hourly"
+#: include/conversation.php:1286 mod/editpost.php:107
+msgid "web link"
 msgstr ""
 
-#: include/contact_selectors.php:58 mod/admin.php:982
-msgid "Twice daily"
+#: include/conversation.php:1287 mod/editpost.php:108
+msgid "Insert video link"
 msgstr ""
 
-#: include/contact_selectors.php:59 mod/admin.php:983
-msgid "Daily"
+#: include/conversation.php:1288 mod/editpost.php:109
+msgid "video link"
 msgstr ""
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
+#: include/conversation.php:1289 mod/editpost.php:110
+msgid "Insert audio link"
 msgstr ""
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
+#: include/conversation.php:1290 mod/editpost.php:111
+msgid "audio link"
 msgstr ""
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:886
-msgid "Friendica"
+#: include/conversation.php:1291 mod/editpost.php:112
+msgid "Set your location"
 msgstr ""
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
+#: include/conversation.php:1292 mod/editpost.php:113
+msgid "set location"
 msgstr ""
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: include/conversation.php:1293 mod/editpost.php:114
+msgid "Clear browser location"
 msgstr ""
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
-msgid "Email"
+#: include/conversation.php:1294 mod/editpost.php:115
+msgid "clear location"
 msgstr ""
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:888
-#: mod/settings.php:848
-msgid "Diaspora"
+#: include/conversation.php:1296 mod/editpost.php:129
+msgid "Set title"
 msgstr ""
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
+#: include/conversation.php:1298 mod/editpost.php:131
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
+#: include/conversation.php:1300 mod/editpost.php:117
+msgid "Permission settings"
 msgstr ""
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
+#: include/conversation.php:1301 mod/editpost.php:146
+msgid "permissions"
 msgstr ""
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: include/conversation.php:1309 mod/editpost.php:126
+msgid "Public post"
 msgstr ""
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
+#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137
+#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691
+#: mod/photos.php:1771 object/Item.php:711
+msgid "Preview"
 msgstr ""
 
-#: include/contact_selectors.php:87
-msgid "Google+"
+#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140
+#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126
+#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339
+#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134
+#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683
+#: mod/settings.php:709
+msgid "Cancel"
 msgstr ""
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
+#: include/conversation.php:1324
+msgid "Post to Groups"
 msgstr ""
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
+#: include/conversation.php:1325
+msgid "Post to Contacts"
 msgstr ""
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
+#: include/conversation.php:1326
+msgid "Private post"
 msgstr ""
 
-#: include/contact_selectors.php:91
-msgid "GNU Social Connector"
+#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144
+msgid "Message"
 msgstr ""
 
-#: include/contact_selectors.php:92
-msgid "pnut"
+#: include/conversation.php:1332 mod/editpost.php:145
+msgid "Browser"
 msgstr ""
 
-#: include/contact_selectors.php:93
-msgid "App.net"
+#: include/conversation.php:1514
+msgid "View all"
 msgstr ""
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr ""
-
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr ""
+#: include/conversation.php:1536
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr ""
+#: include/conversation.php:1539
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/contact_widgets.php:10 include/identity.php:224
-#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101
-#: mod/dirfind.php:207
-msgid "Connect"
-msgstr ""
+#: include/conversation.php:1545
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
+#: include/conversation.php:1548 include/profile_selectors.php:6
+msgid "Undecided"
+msgid_plural "Undecided"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/contact_widgets.php:30
-msgid "Find People"
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701
+msgid "Miscellaneous"
 msgstr ""
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
+#: include/datetime.php:196 include/identity.php:656
+msgid "Birthday:"
 msgstr ""
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
+#: include/datetime.php:198 mod/profiles.php:724
+msgid "Age: "
 msgstr ""
 
-#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
-msgid "Find"
+#: include/datetime.php:200
+msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:201
-msgid "Friend Suggestions"
+#: include/datetime.php:370
+msgid "never"
 msgstr ""
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:200
-msgid "Similar Interests"
+#: include/datetime.php:376
+msgid "less than a second ago"
 msgstr ""
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
+#: include/datetime.php:379
+msgid "year"
 msgstr ""
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
-msgid "Invite Friends"
+#: include/datetime.php:379
+msgid "years"
 msgstr ""
 
-#: include/contact_widgets.php:125
-msgid "Networks"
+#: include/datetime.php:380 include/event.php:453 mod/cal.php:281
+#: mod/events.php:387
+msgid "month"
 msgstr ""
 
-#: include/contact_widgets.php:128
-msgid "All Networks"
+#: include/datetime.php:380
+msgid "months"
 msgstr ""
 
-#: include/contact_widgets.php:160 include/features.php:104
-msgid "Saved Folders"
+#: include/datetime.php:381 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
+msgid "week"
 msgstr ""
 
-#: include/contact_widgets.php:163 include/contact_widgets.php:198
-msgid "Everything"
+#: include/datetime.php:381
+msgid "weeks"
 msgstr ""
 
-#: include/contact_widgets.php:195
-msgid "Categories"
+#: include/datetime.php:382 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
+msgid "day"
 msgstr ""
 
-#: include/contact_widgets.php:264
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
+#: include/datetime.php:382
+msgid "days"
+msgstr ""
 
-#: include/conversation.php:159
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
+#: include/datetime.php:383
+msgid "hour"
 msgstr ""
 
-#: include/conversation.php:162
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
+#: include/datetime.php:383
+msgid "hours"
 msgstr ""
 
-#: include/conversation.php:165
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
+#: include/datetime.php:384
+msgid "minute"
 msgstr ""
 
-#: include/conversation.php:198 mod/dfrn_confirm.php:478
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: include/datetime.php:384
+msgid "minutes"
 msgstr ""
 
-#: include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
+#: include/datetime.php:385
+msgid "second"
 msgstr ""
 
-#: include/conversation.php:260 mod/mood.php:63
-#, php-format
-msgid "%1$s is currently %2$s"
+#: include/datetime.php:385
+msgid "seconds"
 msgstr ""
 
-#: include/conversation.php:307 mod/tagger.php:95
+#: include/datetime.php:394
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: include/conversation.php:334
-msgid "post/item"
+#: include/datetime.php:620
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: include/conversation.php:335
+#: include/datetime.php:621 include/dfrn.php:1254
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
-#: mod/profiles.php:340
-msgid "Likes"
+#: include/delivery.php:428
+msgid "(no subject)"
 msgstr ""
 
-#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
-#: mod/profiles.php:344
-msgid "Dislikes"
+#: include/delivery.php:440 include/enotify.php:46
+msgid "noreply"
 msgstr ""
 
-#: include/conversation.php:615 include/conversation.php:1541
-#: mod/content.php:373 mod/photos.php:1663
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/dfrn.php:1253
+#, php-format
+msgid "%s\\'s birthday"
+msgstr ""
 
-#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
-msgid "Not attending"
+#: include/event.php:408
+msgid "all-day"
 msgstr ""
 
-#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
-msgid "Might attend"
+#: include/event.php:410
+msgid "Sun"
 msgstr ""
 
-#: include/conversation.php:747 mod/content.php:453 mod/content.php:759
-#: mod/photos.php:1728 object/Item.php:137
-msgid "Select"
+#: include/event.php:411
+msgid "Mon"
 msgstr ""
 
-#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
-#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
-#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
-msgid "Delete"
+#: include/event.php:412
+msgid "Tue"
 msgstr ""
 
-#: include/conversation.php:791 mod/content.php:487 mod/content.php:915
-#: mod/content.php:916 object/Item.php:356 object/Item.php:357
-#, php-format
-msgid "View %s's profile @ %s"
+#: include/event.php:413
+msgid "Wed"
 msgstr ""
 
-#: include/conversation.php:803 object/Item.php:344
-msgid "Categories:"
+#: include/event.php:414
+msgid "Thu"
 msgstr ""
 
-#: include/conversation.php:804 object/Item.php:345
-msgid "Filed under:"
+#: include/event.php:415
+msgid "Fri"
 msgstr ""
 
-#: include/conversation.php:811 mod/content.php:497 mod/content.php:928
-#: object/Item.php:370
-#, php-format
-msgid "%s from %s"
+#: include/event.php:416
+msgid "Sat"
 msgstr ""
 
-#: include/conversation.php:827 mod/content.php:513
-msgid "View in context"
+#: include/event.php:418 include/text.php:1199 mod/settings.php:982
+msgid "Sunday"
 msgstr ""
 
-#: include/conversation.php:829 include/conversation.php:1298
-#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
-#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522
-#: mod/photos.php:1627 object/Item.php:395
-msgid "Please wait"
+#: include/event.php:419 include/text.php:1199 mod/settings.php:982
+msgid "Monday"
 msgstr ""
 
-#: include/conversation.php:906
-msgid "remove"
+#: include/event.php:420 include/text.php:1199
+msgid "Tuesday"
 msgstr ""
 
-#: include/conversation.php:910
-msgid "Delete Selected Items"
+#: include/event.php:421 include/text.php:1199
+msgid "Wednesday"
 msgstr ""
 
-#: include/conversation.php:1002
-msgid "Follow Thread"
+#: include/event.php:422 include/text.php:1199
+msgid "Thursday"
 msgstr ""
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s likes this."
+#: include/event.php:423 include/text.php:1199
+msgid "Friday"
 msgstr ""
 
-#: include/conversation.php:1142
-#, php-format
-msgid "%s doesn't like this."
+#: include/event.php:424 include/text.php:1199
+msgid "Saturday"
 msgstr ""
 
-#: include/conversation.php:1145
-#, php-format
-msgid "%s attends."
+#: include/event.php:426
+msgid "Jan"
 msgstr ""
 
-#: include/conversation.php:1148
-#, php-format
-msgid "%s doesn't attend."
+#: include/event.php:427
+msgid "Feb"
 msgstr ""
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s attends maybe."
+#: include/event.php:428
+msgid "Mar"
 msgstr ""
 
-#: include/conversation.php:1162
-msgid "and"
+#: include/event.php:429
+msgid "Apr"
 msgstr ""
 
-#: include/conversation.php:1168
-#, php-format
-msgid ", and %d other people"
+#: include/event.php:430 include/event.php:443 include/text.php:1203
+msgid "May"
 msgstr ""
 
-#: include/conversation.php:1177
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: include/event.php:431
+msgid "Jun"
 msgstr ""
 
-#: include/conversation.php:1178
-#, php-format
-msgid "%s like this."
+#: include/event.php:432
+msgid "Jul"
 msgstr ""
 
-#: include/conversation.php:1181
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+#: include/event.php:433
+msgid "Aug"
 msgstr ""
 
-#: include/conversation.php:1182
-#, php-format
-msgid "%s don't like this."
+#: include/event.php:434
+msgid "Sept"
 msgstr ""
 
-#: include/conversation.php:1185
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
+#: include/event.php:435
+msgid "Oct"
 msgstr ""
 
-#: include/conversation.php:1186
-#, php-format
-msgid "%s attend."
+#: include/event.php:436
+msgid "Nov"
 msgstr ""
 
-#: include/conversation.php:1189
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
+#: include/event.php:437
+msgid "Dec"
 msgstr ""
 
-#: include/conversation.php:1190
-#, php-format
-msgid "%s don't attend."
+#: include/event.php:439 include/text.php:1203
+msgid "January"
 msgstr ""
 
-#: include/conversation.php:1193
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
+#: include/event.php:440 include/text.php:1203
+msgid "February"
 msgstr ""
 
-#: include/conversation.php:1194
-#, php-format
-msgid "%s anttend maybe."
+#: include/event.php:441 include/text.php:1203
+msgid "March"
 msgstr ""
 
-#: include/conversation.php:1223 include/conversation.php:1239
-msgid "Visible to <strong>everybody</strong>"
+#: include/event.php:442 include/text.php:1203
+msgid "April"
 msgstr ""
 
-#: include/conversation.php:1224 include/conversation.php:1240
-#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271
-#: mod/message.php:278 mod/message.php:418 mod/message.php:425
-msgid "Please enter a link URL:"
+#: include/event.php:444 include/text.php:1203
+msgid "June"
 msgstr ""
 
-#: include/conversation.php:1225 include/conversation.php:1241
-msgid "Please enter a video link/URL:"
+#: include/event.php:445 include/text.php:1203
+msgid "July"
 msgstr ""
 
-#: include/conversation.php:1226 include/conversation.php:1242
-msgid "Please enter an audio link/URL:"
+#: include/event.php:446 include/text.php:1203
+msgid "August"
 msgstr ""
 
-#: include/conversation.php:1227 include/conversation.php:1243
-msgid "Tag term:"
+#: include/event.php:447 include/text.php:1203
+msgid "September"
 msgstr ""
 
-#: include/conversation.php:1228 include/conversation.php:1244
-#: mod/filer.php:30
-msgid "Save to Folder:"
+#: include/event.php:448 include/text.php:1203
+msgid "October"
 msgstr ""
 
-#: include/conversation.php:1229 include/conversation.php:1245
-msgid "Where are you right now?"
+#: include/event.php:449 include/text.php:1203
+msgid "November"
 msgstr ""
 
-#: include/conversation.php:1230
-msgid "Delete item(s)?"
+#: include/event.php:450 include/text.php:1203
+msgid "December"
 msgstr ""
 
-#: include/conversation.php:1279
-msgid "Share"
+#: include/event.php:452 mod/cal.php:280 mod/events.php:386
+msgid "today"
 msgstr ""
 
-#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138
-#: mod/message.php:335 mod/message.php:519
-msgid "Upload photo"
+#: include/event.php:457
+msgid "No events to display"
 msgstr ""
 
-#: include/conversation.php:1281 mod/editpost.php:101
-msgid "upload photo"
+#: include/event.php:570
+msgid "l, F j"
 msgstr ""
 
-#: include/conversation.php:1282 mod/editpost.php:102
-msgid "Attach file"
+#: include/event.php:592
+msgid "Edit event"
 msgstr ""
 
-#: include/conversation.php:1283 mod/editpost.php:103
-msgid "attach file"
+#: include/event.php:593
+msgid "Delete event"
 msgstr ""
 
-#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139
-#: mod/message.php:336 mod/message.php:520
-msgid "Insert web link"
+#: include/event.php:619 include/text.php:1601 include/text.php:1608
+msgid "link to source"
 msgstr ""
 
-#: include/conversation.php:1285 mod/editpost.php:105
-msgid "web link"
+#: include/event.php:873
+msgid "Export"
 msgstr ""
 
-#: include/conversation.php:1286 mod/editpost.php:106
-msgid "Insert video link"
+#: include/event.php:874
+msgid "Export calendar as ical"
 msgstr ""
 
-#: include/conversation.php:1287 mod/editpost.php:107
-msgid "video link"
+#: include/event.php:875
+msgid "Export calendar as csv"
 msgstr ""
 
-#: include/conversation.php:1288 mod/editpost.php:108
-msgid "Insert audio link"
+#: include/follow.php:84 mod/dfrn_request.php:514
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: include/conversation.php:1289 mod/editpost.php:109
-msgid "audio link"
+#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520
+#: mod/admin.php:280 mod/admin.php:298
+msgid "Blocked domain"
 msgstr ""
 
-#: include/conversation.php:1290 mod/editpost.php:110
-msgid "Set your location"
+#: include/follow.php:94
+msgid "Connect URL missing."
 msgstr ""
 
-#: include/conversation.php:1291 mod/editpost.php:111
-msgid "set location"
+#: include/follow.php:122
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: include/conversation.php:1292 mod/editpost.php:112
-msgid "Clear browser location"
+#: include/follow.php:123 include/follow.php:137
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: include/conversation.php:1293 mod/editpost.php:113
-msgid "clear location"
+#: include/follow.php:135
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: include/conversation.php:1295 mod/editpost.php:127
-msgid "Set title"
+#: include/follow.php:140
+msgid "An author or name was not found."
 msgstr ""
 
-#: include/conversation.php:1297 mod/editpost.php:129
-msgid "Categories (comma-separated list)"
+#: include/follow.php:143
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: include/conversation.php:1299 mod/editpost.php:115
-msgid "Permission settings"
+#: include/follow.php:146
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: include/conversation.php:1300 mod/editpost.php:144
-msgid "permissions"
+#: include/follow.php:147
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: include/conversation.php:1308 mod/editpost.php:124
-msgid "Public post"
+#: include/follow.php:153
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135
-#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689
-#: mod/photos.php:1769 object/Item.php:714
-msgid "Preview"
+#: include/follow.php:158
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
-#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
-#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
-#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
-#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682
-#: mod/settings.php:708 mod/videos.php:132
-msgid "Cancel"
+#: include/follow.php:259
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: include/conversation.php:1323
-msgid "Post to Groups"
+#: include/like.php:44
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1324
-msgid "Post to Contacts"
+#: include/like.php:49
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1325
-msgid "Private post"
+#: include/like.php:54
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142
-msgid "Message"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42
+#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125
+#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841
+#: mod/photos.php:1855
+msgid "Contact Photos"
 msgstr ""
 
-#: include/conversation.php:1331 mod/editpost.php:143
-msgid "Browser"
+#: include/security.php:63
+msgid "Welcome "
 msgstr ""
 
-#: include/conversation.php:1513
-msgid "View all"
+#: include/security.php:64
+msgid "Please upload a profile photo."
 msgstr ""
 
-#: include/conversation.php:1535
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/conversation.php:1538
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
+#: include/security.php:67
+msgid "Welcome back "
+msgstr ""
 
-#: include/conversation.php:1544
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/security.php:431
+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/datetime.php:66 include/datetime.php:68 mod/profiles.php:698
-msgid "Miscellaneous"
+#: include/text.php:308
+msgid "newer"
 msgstr ""
 
-#: include/datetime.php:196 include/identity.php:644
-msgid "Birthday:"
+#: include/text.php:309
+msgid "older"
 msgstr ""
 
-#: include/datetime.php:198 mod/profiles.php:721
-msgid "Age: "
+#: include/text.php:314
+msgid "first"
 msgstr ""
 
-#: include/datetime.php:200
-msgid "YYYY-MM-DD or MM-DD"
+#: include/text.php:315
+msgid "prev"
 msgstr ""
 
-#: include/datetime.php:370
-msgid "never"
+#: include/text.php:349
+msgid "next"
 msgstr ""
 
-#: include/datetime.php:376
-msgid "less than a second ago"
+#: include/text.php:350
+msgid "last"
 msgstr ""
 
-#: include/datetime.php:379
-msgid "year"
+#: include/text.php:404
+msgid "Loading more entries..."
 msgstr ""
 
-#: include/datetime.php:379
-msgid "years"
+#: include/text.php:405
+msgid "The end"
 msgstr ""
 
-#: include/datetime.php:380 include/event.php:519 mod/cal.php:279
-#: mod/events.php:384
-msgid "month"
+#: include/text.php:956
+msgid "No contacts"
 msgstr ""
 
-#: include/datetime.php:380
-msgid "months"
+#: include/text.php:981
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/text.php:994
+msgid "View Contacts"
 msgstr ""
 
-#: include/datetime.php:381 include/event.php:520 mod/cal.php:280
-#: mod/events.php:385
-msgid "week"
+#: include/text.php:1081 include/nav.php:125 mod/search.php:152
+msgid "Search"
 msgstr ""
 
-#: include/datetime.php:381
-msgid "weeks"
+#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32
+#: mod/notes.php:64
+msgid "Save"
 msgstr ""
 
-#: include/datetime.php:382 include/event.php:521 mod/cal.php:281
-#: mod/events.php:386
-msgid "day"
+#: include/text.php:1084 include/nav.php:42
+msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/datetime.php:382
-msgid "days"
+#: include/text.php:1089 include/nav.php:128
+msgid "Full Text"
 msgstr ""
 
-#: include/datetime.php:383
-msgid "hour"
+#: include/text.php:1090 include/nav.php:129
+msgid "Tags"
 msgstr ""
 
-#: include/datetime.php:383
-msgid "hours"
+#: include/text.php:1091 include/nav.php:130 include/nav.php:194
+#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124
+#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259
+msgid "Contacts"
 msgstr ""
 
-#: include/datetime.php:384
-msgid "minute"
+#: include/text.php:1145
+msgid "poke"
 msgstr ""
 
-#: include/datetime.php:384
-msgid "minutes"
+#: include/text.php:1145
+msgid "poked"
 msgstr ""
 
-#: include/datetime.php:385
-msgid "second"
+#: include/text.php:1146
+msgid "ping"
 msgstr ""
 
-#: include/datetime.php:385
-msgid "seconds"
+#: include/text.php:1146
+msgid "pinged"
 msgstr ""
 
-#: include/datetime.php:394
-#, php-format
-msgid "%1$d %2$s ago"
+#: include/text.php:1147
+msgid "prod"
 msgstr ""
 
-#: include/datetime.php:620
-#, php-format
-msgid "%s's birthday"
+#: include/text.php:1147
+msgid "prodded"
 msgstr ""
 
-#: include/datetime.php:621 include/dfrn.php:1252
-#, php-format
-msgid "Happy Birthday %s"
+#: include/text.php:1148
+msgid "slap"
 msgstr ""
 
-#: include/dba_pdo.php:72 include/dba.php:47
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+#: include/text.php:1148
+msgid "slapped"
 msgstr ""
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
+#: include/text.php:1149
+msgid "finger"
 msgstr ""
 
-#: include/enotify.php:27
-msgid "Thank You,"
+#: include/text.php:1149
+msgid "fingered"
 msgstr ""
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
+#: include/text.php:1150
+msgid "rebuff"
 msgstr ""
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
+#: include/text.php:1150
+msgid "rebuffed"
 msgstr ""
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
+#: include/text.php:1164
+msgid "happy"
 msgstr ""
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: include/text.php:1165
+msgid "sad"
 msgstr ""
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: include/text.php:1166
+msgid "mellow"
 msgstr ""
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
+#: include/text.php:1167
+msgid "tired"
 msgstr ""
 
-#: include/enotify.php:86
-msgid "a private message"
+#: include/text.php:1168
+msgid "perky"
 msgstr ""
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: include/text.php:1169
+msgid "angry"
 msgstr ""
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: include/text.php:1170
+msgid "stupified"
 msgstr ""
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: include/text.php:1171
+msgid "puzzled"
 msgstr ""
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: include/text.php:1172
+msgid "interested"
 msgstr ""
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/text.php:1173
+msgid "bitter"
 msgstr ""
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: include/text.php:1174
+msgid "cheerful"
 msgstr ""
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: include/text.php:1175
+msgid "alive"
 msgstr ""
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: include/text.php:1176
+msgid "annoyed"
 msgstr ""
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: include/text.php:1177
+msgid "anxious"
 msgstr ""
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: include/text.php:1178
+msgid "cranky"
 msgstr ""
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
+#: include/text.php:1179
+msgid "disturbed"
 msgstr ""
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
+#: include/text.php:1180
+msgid "frustrated"
 msgstr ""
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+#: include/text.php:1181
+msgid "motivated"
 msgstr ""
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+#: include/text.php:1182
+msgid "relaxed"
 msgstr ""
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
+#: include/text.php:1183
+msgid "surprised"
 msgstr ""
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+#: include/text.php:1393 mod/videos.php:388
+msgid "View Video"
 msgstr ""
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: include/text.php:1425
+msgid "bytes"
 msgstr ""
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: include/text.php:1457 include/text.php:1469
+msgid "Click to open/close"
 msgstr ""
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: include/text.php:1595
+msgid "View on separate page"
 msgstr ""
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: include/text.php:1596
+msgid "view on separate page"
 msgstr ""
 
-#: include/enotify.php:233
+#: include/text.php:1875
+msgid "activity"
+msgstr ""
+
+#: include/text.php:1877 mod/content.php:624 object/Item.php:416
+#: object/Item.php:428
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/text.php:1878
+msgid "post"
+msgstr ""
+
+#: include/text.php:2046
+msgid "Item filed"
+msgstr ""
+
+#: include/Contact.php:437
+msgid "Drop Contact"
+msgstr ""
+
+#: include/Contact.php:819
+msgid "Organisation"
+msgstr ""
+
+#: include/Contact.php:822
+msgid "News"
+msgstr ""
+
+#: include/Contact.php:825
+msgid "Forum"
+msgstr ""
+
+#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179
+msgid "Image/photo"
+msgstr ""
+
+#: include/bbcode.php:536
 #, php-format
-msgid "%1$s tagged your post at %2$s"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
+
+#: include/bbcode.php:1135 include/bbcode.php:1157
+msgid "$1 wrote:"
+msgstr ""
+
+#: include/bbcode.php:1187 include/bbcode.php:1188
+msgid "Encrypted content"
+msgstr ""
+
+#: include/bbcode.php:1303
+msgid "Invalid source protocol"
+msgstr ""
+
+#: include/bbcode.php:1313
+msgid "Invalid link protocol"
+msgstr ""
+
+#: include/enotify.php:27
+msgid "Friendica Notification"
+msgstr ""
+
+#: include/enotify.php:30
+msgid "Thank You,"
+msgstr ""
+
+#: include/enotify.php:33
+#, php-format
+msgid "%s Administrator"
+msgstr ""
+
+#: include/enotify.php:35
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr ""
+
+#: include/enotify.php:73
+#, php-format
+msgid "%s <!item_type!>"
+msgstr ""
+
+#: include/enotify.php:86
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr ""
+
+#: include/enotify.php:88
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr ""
+
+#: include/enotify.php:89
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr ""
+
+#: include/enotify.php:89
+msgid "a private message"
+msgstr ""
+
+#: include/enotify.php:91
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr ""
+
+#: include/enotify.php:137
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr ""
+
+#: include/enotify.php:144
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
+
+#: include/enotify.php:152
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
+
+#: include/enotify.php:162
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
+
+#: include/enotify.php:164
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr ""
+
+#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195
+#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr ""
+
+#: include/enotify.php:174
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
+
+#: include/enotify.php:176
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
+
+#: include/enotify.php:177
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
+
+#: include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr ""
+
+#: include/enotify.php:190
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr ""
+
+#: include/enotify.php:191
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr ""
+
+#: include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr ""
+
+#: include/enotify.php:204
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr ""
+
+#: include/enotify.php:205
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr ""
+
+#: include/enotify.php:216
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr ""
+
+#: include/enotify.php:218
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr ""
+
+#: include/enotify.php:219
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
 #: include/enotify.php:234
 #, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr ""
+
+#: include/enotify.php:236
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
+
+#: include/enotify.php:237
+#, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: include/enotify.php:245
+#: include/enotify.php:248
 msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: include/enotify.php:247
+#: include/enotify.php:250
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: include/enotify.php:248
+#: include/enotify.php:251
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: include/enotify.php:252 include/enotify.php:295
+#: include/enotify.php:255 include/enotify.php:298
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr ""
 
-#: include/enotify.php:254
+#: include/enotify.php:257
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: include/enotify.php:262
+#: include/enotify.php:265
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: include/enotify.php:264 include/enotify.php:265
+#: include/enotify.php:267 include/enotify.php:268
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: include/enotify.php:271
+#: include/enotify.php:274
 msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: include/enotify.php:273 include/enotify.php:274
+#: include/enotify.php:276 include/enotify.php:277
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: include/enotify.php:285
+#: include/enotify.php:288
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: include/enotify.php:287
+#: include/enotify.php:290
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: include/enotify.php:288
+#: include/enotify.php:291
 #, php-format
 msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: include/enotify.php:293
+#: include/enotify.php:296
 msgid "Name:"
 msgstr ""
 
-#: include/enotify.php:294
+#: include/enotify.php:297
 msgid "Photo:"
 msgstr ""
 
-#: include/enotify.php:297
+#: include/enotify.php:300
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: include/enotify.php:305 include/enotify.php:319
+#: include/enotify.php:308 include/enotify.php:322
 msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: include/enotify.php:307 include/enotify.php:321
+#: include/enotify.php:310 include/enotify.php:324
 #, php-format
 msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: include/enotify.php:308 include/enotify.php:322
+#: include/enotify.php:311 include/enotify.php:325
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: include/enotify.php:312
+#: include/enotify.php:315
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and "
 "email without restriction."
 msgstr ""
 
-#: include/enotify.php:314
+#: include/enotify.php:317
 #, php-format
 msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/enotify.php:326
+#: include/enotify.php:329
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -1856,2246 +2022,2449 @@ msgid ""
 "automatically."
 msgstr ""
 
-#: include/enotify.php:328
+#: include/enotify.php:331
 #, php-format
 msgid ""
 "'%1$s' may choose to extend this into a two-way or more permissive "
 "relationship in the future."
 msgstr ""
 
-#: include/enotify.php:330
+#: include/enotify.php:333
 #, php-format
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/enotify.php:340
+#: include/enotify.php:343
 msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: include/enotify.php:342
+#: include/enotify.php:345
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: include/enotify.php:343
+#: include/enotify.php:346
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: include/enotify.php:347
+#: include/enotify.php:350
 #, php-format
 msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: include/enotify.php:350
+#: include/enotify.php:353
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/event.php:474
-msgid "all-day"
+#: include/message.php:14 include/message.php:168
+msgid "[no subject]"
 msgstr ""
 
-#: include/event.php:476
-msgid "Sun"
+#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091
+#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249
+#: mod/item.php:468
+msgid "Wall Photos"
 msgstr ""
 
-#: include/event.php:477
-msgid "Mon"
+#: include/nav.php:37 mod/navigation.php:21
+msgid "Nothing new here"
 msgstr ""
 
-#: include/event.php:478
-msgid "Tue"
+#: include/nav.php:41 mod/navigation.php:25
+msgid "Clear notifications"
 msgstr ""
 
-#: include/event.php:479
-msgid "Wed"
+#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862
+msgid "Logout"
 msgstr ""
 
-#: include/event.php:480
-msgid "Thu"
+#: include/nav.php:80 view/theme/frio/theme.php:245
+msgid "End this session"
 msgstr ""
 
-#: include/event.php:481
-msgid "Fri"
+#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648
+#: mod/contacts.php:844 view/theme/frio/theme.php:248
+msgid "Status"
 msgstr ""
 
-#: include/event.php:482
-msgid "Sat"
+#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248
+msgid "Your posts and conversations"
 msgstr ""
 
-#: include/event.php:484 include/text.php:1198 mod/settings.php:981
-msgid "Sunday"
+#: include/nav.php:84 include/identity.php:632 include/identity.php:759
+#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249
+msgid "Profile"
 msgstr ""
 
-#: include/event.php:485 include/text.php:1198 mod/settings.php:981
-msgid "Monday"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your profile page"
 msgstr ""
 
-#: include/event.php:486 include/text.php:1198
-msgid "Tuesday"
+#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33
+#: view/theme/frio/theme.php:250
+msgid "Photos"
 msgstr ""
 
-#: include/event.php:487 include/text.php:1198
-msgid "Wednesday"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your photos"
 msgstr ""
 
-#: include/event.php:488 include/text.php:1198
-msgid "Thursday"
+#: include/nav.php:86 include/identity.php:808 include/identity.php:811
+#: view/theme/frio/theme.php:251
+msgid "Videos"
 msgstr ""
 
-#: include/event.php:489 include/text.php:1198
-msgid "Friday"
+#: include/nav.php:86 view/theme/frio/theme.php:251
+msgid "Your videos"
 msgstr ""
 
-#: include/event.php:490 include/text.php:1198
-msgid "Saturday"
+#: include/nav.php:87 include/nav.php:151 include/identity.php:820
+#: include/identity.php:831 mod/cal.php:272 mod/events.php:377
+#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256
+msgid "Events"
 msgstr ""
 
-#: include/event.php:492
-msgid "Jan"
+#: include/nav.php:87 view/theme/frio/theme.php:252
+msgid "Your events"
 msgstr ""
 
-#: include/event.php:493
-msgid "Feb"
+#: include/nav.php:88
+msgid "Personal notes"
 msgstr ""
 
-#: include/event.php:494
-msgid "Mar"
+#: include/nav.php:88
+msgid "Your personal notes"
 msgstr ""
 
-#: include/event.php:495
-msgid "Apr"
+#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863
+msgid "Login"
 msgstr ""
 
-#: include/event.php:496 include/event.php:509 include/text.php:1202
-msgid "May"
+#: include/nav.php:97
+msgid "Sign in"
 msgstr ""
 
-#: include/event.php:497
-msgid "Jun"
+#: include/nav.php:107
+msgid "Home Page"
 msgstr ""
 
-#: include/event.php:498
-msgid "Jul"
+#: include/nav.php:111 mod/register.php:291 boot.php:839
+msgid "Register"
 msgstr ""
 
-#: include/event.php:499
-msgid "Aug"
+#: include/nav.php:111
+msgid "Create an account"
 msgstr ""
 
-#: include/event.php:500
-msgid "Sept"
+#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299
+msgid "Help"
 msgstr ""
 
-#: include/event.php:501
-msgid "Oct"
+#: include/nav.php:117
+msgid "Help and documentation"
 msgstr ""
 
-#: include/event.php:502
-msgid "Nov"
+#: include/nav.php:121
+msgid "Apps"
 msgstr ""
 
-#: include/event.php:503
-msgid "Dec"
+#: include/nav.php:121
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: include/event.php:505 include/text.php:1202
-msgid "January"
+#: include/nav.php:125
+msgid "Search site content"
 msgstr ""
 
-#: include/event.php:506 include/text.php:1202
-msgid "February"
+#: include/nav.php:145 include/nav.php:147 mod/community.php:32
+msgid "Community"
 msgstr ""
 
-#: include/event.php:507 include/text.php:1202
-msgid "March"
+#: include/nav.php:145
+msgid "Conversations on this site"
 msgstr ""
 
-#: include/event.php:508 include/text.php:1202
-msgid "April"
+#: include/nav.php:147
+msgid "Conversations on the network"
 msgstr ""
 
-#: include/event.php:510 include/text.php:1202
-msgid "June"
+#: include/nav.php:151 include/identity.php:823 include/identity.php:834
+#: view/theme/frio/theme.php:256
+msgid "Events and Calendar"
 msgstr ""
 
-#: include/event.php:511 include/text.php:1202
-msgid "July"
+#: include/nav.php:154
+msgid "Directory"
 msgstr ""
 
-#: include/event.php:512 include/text.php:1202
-msgid "August"
+#: include/nav.php:154
+msgid "People directory"
 msgstr ""
 
-#: include/event.php:513 include/text.php:1202
-msgid "September"
+#: include/nav.php:156
+msgid "Information"
 msgstr ""
 
-#: include/event.php:514 include/text.php:1202
-msgid "October"
+#: include/nav.php:156
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: include/event.php:515 include/text.php:1202
-msgid "November"
+#: include/nav.php:160 view/theme/frio/theme.php:255
+msgid "Conversations from your friends"
 msgstr ""
 
-#: include/event.php:516 include/text.php:1202
-msgid "December"
+#: include/nav.php:161
+msgid "Network Reset"
 msgstr ""
 
-#: include/event.php:518 mod/cal.php:278 mod/events.php:383
-msgid "today"
+#: include/nav.php:161
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: include/event.php:523
-msgid "No events to display"
+#: include/nav.php:168
+msgid "Friend Requests"
 msgstr ""
 
-#: include/event.php:636
-msgid "l, F j"
+#: include/nav.php:171 mod/notifications.php:98
+msgid "Notifications"
 msgstr ""
 
-#: include/event.php:658
-msgid "Edit event"
+#: include/nav.php:172
+msgid "See all notifications"
 msgstr ""
 
-#: include/event.php:659
-msgid "Delete event"
+#: include/nav.php:173 mod/settings.php:907
+msgid "Mark as seen"
 msgstr ""
 
-#: include/event.php:685 include/text.php:1600 include/text.php:1607
-msgid "link to source"
+#: include/nav.php:173
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: include/event.php:939
-msgid "Export"
+#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257
+msgid "Messages"
 msgstr ""
 
-#: include/event.php:940
-msgid "Export calendar as ical"
+#: include/nav.php:177 view/theme/frio/theme.php:257
+msgid "Private mail"
 msgstr ""
 
-#: include/event.php:941
-msgid "Export calendar as csv"
+#: include/nav.php:178
+msgid "Inbox"
 msgstr ""
 
-#: include/features.php:65
-msgid "General Features"
+#: include/nav.php:179
+msgid "Outbox"
 msgstr ""
 
-#: include/features.php:67
-msgid "Multiple Profiles"
+#: include/nav.php:180 mod/message.php:18
+msgid "New Message"
 msgstr ""
 
-#: include/features.php:67
-msgid "Ability to create multiple profiles"
+#: include/nav.php:183
+msgid "Manage"
 msgstr ""
 
-#: include/features.php:68
-msgid "Photo Location"
+#: include/nav.php:183
+msgid "Manage other pages"
 msgstr ""
 
-#: include/features.php:68
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present) "
-"prior to stripping metadata and links it to a map."
+#: include/nav.php:186 mod/settings.php:83
+msgid "Delegations"
 msgstr ""
 
-#: include/features.php:69
-msgid "Export Public Calendar"
+#: include/nav.php:186 mod/delegate.php:132
+msgid "Delegate Page Management"
 msgstr ""
 
-#: include/features.php:69
-msgid "Ability for visitors to download the public calendar"
+#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624
+#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258
+msgid "Settings"
 msgstr ""
 
-#: include/features.php:74
-msgid "Post Composition Features"
+#: include/nav.php:188 view/theme/frio/theme.php:258
+msgid "Account settings"
 msgstr ""
 
-#: include/features.php:75
-msgid "Post Preview"
+#: include/nav.php:191 include/identity.php:296
+msgid "Profiles"
 msgstr ""
 
-#: include/features.php:75
-msgid "Allow previewing posts and comments before publishing them"
+#: include/nav.php:191
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: include/features.php:76
-msgid "Auto-mention Forums"
+#: include/nav.php:194 view/theme/frio/theme.php:259
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: include/features.php:76
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
+#: include/nav.php:199 mod/admin.php:197
+msgid "Admin"
 msgstr ""
 
-#: include/features.php:81
-msgid "Network Sidebar Widgets"
+#: include/nav.php:199
+msgid "Site setup and configuration"
 msgstr ""
 
-#: include/features.php:82
-msgid "Search by Date"
+#: include/nav.php:202
+msgid "Navigation"
 msgstr ""
 
-#: include/features.php:82
-msgid "Ability to select posts by date ranges"
+#: include/nav.php:202
+msgid "Site map"
 msgstr ""
 
-#: include/features.php:83 include/features.php:113
-msgid "List Forums"
+#: include/network.php:687
+msgid "view full size"
 msgstr ""
 
-#: include/features.php:83
-msgid "Enable widget to display the forums your are connected with"
+#: include/oembed.php:256
+msgid "Embedded content"
 msgstr ""
 
-#: include/features.php:84
-msgid "Group Filter"
+#: include/oembed.php:264
+msgid "Embedding disabled"
 msgstr ""
 
-#: include/features.php:84
-msgid "Enable widget to display Network posts only from selected group"
+#: include/uimport.php:85
+msgid "Error decoding account file"
 msgstr ""
 
-#: include/features.php:85
-msgid "Network Filter"
+#: include/uimport.php:91
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: include/features.php:85
-msgid "Enable widget to display Network posts only from selected network"
+#: include/uimport.php:108 include/uimport.php:119
+msgid "Error! Cannot check nickname"
 msgstr ""
 
-#: include/features.php:86 mod/network.php:206 mod/search.php:34
-msgid "Saved Searches"
+#: include/uimport.php:112 include/uimport.php:123
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: include/features.php:86
-msgid "Save search terms for re-use"
+#: include/uimport.php:145
+msgid "User creation error"
 msgstr ""
 
-#: include/features.php:91
-msgid "Network Tabs"
+#: include/uimport.php:166
+msgid "User profile creation error"
 msgstr ""
 
-#: include/features.php:92
-msgid "Network Personal Tab"
-msgstr ""
+#: include/uimport.php:215
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/features.php:92
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: include/uimport.php:281
+msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: include/features.php:93
-msgid "Network New Tab"
+#: include/user.php:39 mod/settings.php:377
+msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: include/features.php:93
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: include/user.php:48
+msgid "An invitation is required."
 msgstr ""
 
-#: include/features.php:94
-msgid "Network Shared Links Tab"
+#: include/user.php:53
+msgid "Invitation could not be verified."
 msgstr ""
 
-#: include/features.php:94
-msgid "Enable tab to display only Network posts with links in them"
+#: include/user.php:61
+msgid "Invalid OpenID url"
 msgstr ""
 
-#: include/features.php:99
-msgid "Post/Comment Tools"
+#: include/user.php:82
+msgid "Please enter the required information."
 msgstr ""
 
-#: include/features.php:100
-msgid "Multiple Deletion"
+#: include/user.php:96
+msgid "Please use a shorter name."
 msgstr ""
 
-#: include/features.php:100
-msgid "Select and delete multiple posts/comments at once"
+#: include/user.php:98
+msgid "Name too short."
 msgstr ""
 
-#: include/features.php:101
-msgid "Edit Sent Posts"
+#: include/user.php:106
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: include/features.php:101
-msgid "Edit and correct posts and comments after sending"
+#: include/user.php:111
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: include/features.php:102
-msgid "Tagging"
+#: include/user.php:114
+msgid "Not a valid email address."
 msgstr ""
 
-#: include/features.php:102
-msgid "Ability to tag existing posts"
+#: include/user.php:127
+msgid "Cannot use that email."
 msgstr ""
 
-#: include/features.php:103
-msgid "Post Categories"
+#: include/user.php:133
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
 msgstr ""
 
-#: include/features.php:103
-msgid "Add categories to your posts"
+#: include/user.php:140 include/user.php:228
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: include/features.php:104
-msgid "Ability to file posts under folders"
+#: include/user.php:150
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
 msgstr ""
 
-#: include/features.php:105
-msgid "Dislike Posts"
+#: include/user.php:166
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: include/features.php:105
-msgid "Ability to dislike posts/comments"
+#: include/user.php:214
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: include/features.php:106
-msgid "Star Posts"
+#: include/user.php:237 view/theme/duepuntozero/config.php:46
+msgid "default"
 msgstr ""
 
-#: include/features.php:106
-msgid "Ability to mark special posts with a star indicator"
+#: include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: include/features.php:107
-msgid "Mute Post Notifications"
+#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42
+msgid "Friends"
 msgstr ""
 
-#: include/features.php:107
-msgid "Ability to mute notifications for a thread"
+#: include/user.php:306 include/user.php:314 include/user.php:322
+#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189
+#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279
+#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82
+#: mod/profile_photo.php:90 mod/profile_photo.php:214
+#: mod/profile_photo.php:309 mod/profile_photo.php:319
+msgid "Profile Photos"
 msgstr ""
 
-#: include/features.php:112
-msgid "Advanced Profile Settings"
+#: include/user.php:397
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for "
+"approval by the administrator.\n"
+"\t"
 msgstr ""
 
-#: include/features.php:113
-msgid "Show visitors public community forums at the Advanced Profile Page"
+#: include/user.php:407
+#, php-format
+msgid "Registration at %s"
 msgstr ""
 
-#: include/follow.php:81 mod/dfrn_request.php:512
-msgid "Disallowed profile URL."
+#: include/user.php:417
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
 msgstr ""
 
-#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
-#: mod/admin.php:279 mod/admin.php:297
-msgid "Blocked domain"
+#: include/user.php:421
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: include/follow.php:91
-msgid "Connect URL missing."
+#: include/user.php:453 mod/admin.php:1314
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: include/follow.php:119
-msgid ""
-"This site is not configured to allow communications with other networks."
+#: include/api.php:1102
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/follow.php:120 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
+#: include/api.php:1123
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
+#: include/api.php:1144
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/follow.php:137
-msgid "An author or name was not found."
-msgstr ""
-
-#: include/follow.php:140
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: include/follow.php:143
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: include/dba.php:57 include/dba_pdo.php:75
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: include/follow.php:144
-msgid "Use mailto: in front of address to force email check."
+#: include/dbstructure.php:25
+msgid "There are no tables on MyISAM."
 msgstr ""
 
-#: include/follow.php:150
+#: include/dbstructure.php:66
+#, php-format
 msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database "
+"might be invalid."
 msgstr ""
 
-#: include/follow.php:155
+#: include/dbstructure.php:71
+#, php-format
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
-#: include/follow.php:256
-msgid "Unable to retrieve contact information."
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: include/group.php:25
+#: include/dbstructure.php:195
+#, php-format
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr ""
-
-#: include/group.php:210
-msgid "Default privacy group for new contacts"
-msgstr ""
-
-#: include/group.php:243
-msgid "Everybody"
-msgstr ""
-
-#: include/group.php:266
-msgid "edit"
-msgstr ""
-
-#: include/group.php:287 mod/newmember.php:61
-msgid "Groups"
-msgstr ""
-
-#: include/group.php:289
-msgid "Edit groups"
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
 msgstr ""
 
-#: include/group.php:291
-msgid "Edit group"
+#: include/dbstructure.php:198
+msgid "Errors encountered performing database changes: "
 msgstr ""
 
-#: include/group.php:292
-msgid "Create a new group"
+#: include/dbstructure.php:206
+msgid ": Database update"
 msgstr ""
 
-#: include/group.php:293 mod/group.php:99 mod/group.php:196
-msgid "Group Name: "
+#: include/dbstructure.php:438
+#, php-format
+msgid "%s: updating %s table."
 msgstr ""
 
-#: include/group.php:295
-msgid "Contacts not in any group"
+#: include/diaspora.php:2214
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: include/group.php:297 mod/network.php:207
-msgid "add"
+#: include/diaspora.php:3234
+msgid "Attachments:"
 msgstr ""
 
-#: include/identity.php:43
+#: include/identity.php:45
 msgid "Requested account is not available."
 msgstr ""
 
-#: include/identity.php:52 mod/profile.php:21
+#: include/identity.php:54 mod/profile.php:22
 msgid "Requested profile is not available."
 msgstr ""
 
-#: include/identity.php:96 include/identity.php:319 include/identity.php:740
+#: include/identity.php:98 include/identity.php:325 include/identity.php:755
 msgid "Edit profile"
 msgstr ""
 
-#: include/identity.php:259
+#: include/identity.php:265
 msgid "Atom feed"
 msgstr ""
 
-#: include/identity.php:290
+#: include/identity.php:296
 msgid "Manage/edit profiles"
 msgstr ""
 
-#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787
+#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790
 msgid "Change profile photo"
 msgstr ""
 
-#: include/identity.php:296 mod/profiles.php:788
+#: include/identity.php:302 mod/profiles.php:791
 msgid "Create New Profile"
 msgstr ""
 
-#: include/identity.php:306 mod/profiles.php:777
+#: include/identity.php:312 mod/profiles.php:780
 msgid "Profile Image"
 msgstr ""
 
-#: include/identity.php:309 mod/profiles.php:779
+#: include/identity.php:315 mod/profiles.php:782
 msgid "visible to everybody"
 msgstr ""
 
-#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780
+#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783
 msgid "Edit visibility"
 msgstr ""
 
-#: include/identity.php:338 include/identity.php:633 mod/directory.php:141
-#: mod/notifications.php:250
+#: include/identity.php:344 include/identity.php:644 mod/directory.php:137
+#: mod/notifications.php:252
 msgid "Gender:"
 msgstr ""
 
-#: include/identity.php:341 include/identity.php:651 mod/directory.php:143
+#: include/identity.php:347 include/identity.php:665 mod/directory.php:139
 msgid "Status:"
 msgstr ""
 
-#: include/identity.php:343 include/identity.php:667 mod/directory.php:145
+#: include/identity.php:349 include/identity.php:682 mod/directory.php:141
 msgid "Homepage:"
 msgstr ""
 
-#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
-#: mod/directory.php:147 mod/notifications.php:246
+#: include/identity.php:351 include/identity.php:702 mod/directory.php:143
+#: mod/notifications.php:248 mod/contacts.php:643
 msgid "About:"
 msgstr ""
 
-#: include/identity.php:347 mod/contacts.php:638
+#: include/identity.php:353 mod/contacts.php:641
 msgid "XMPP:"
 msgstr ""
 
-#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
+#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58
 msgid "Network:"
 msgstr ""
 
-#: include/identity.php:462 include/identity.php:552
+#: include/identity.php:468 include/identity.php:558
 msgid "g A l F d"
 msgstr ""
 
-#: include/identity.php:463 include/identity.php:553
+#: include/identity.php:469 include/identity.php:559
 msgid "F d"
 msgstr ""
 
-#: include/identity.php:514 include/identity.php:599
+#: include/identity.php:520 include/identity.php:609
 msgid "[today]"
 msgstr ""
 
-#: include/identity.php:526
+#: include/identity.php:532
 msgid "Birthday Reminders"
 msgstr ""
 
-#: include/identity.php:527
+#: include/identity.php:533
 msgid "Birthdays this week:"
 msgstr ""
 
-#: include/identity.php:586
+#: include/identity.php:595
 msgid "[No description]"
 msgstr ""
 
-#: include/identity.php:610
+#: include/identity.php:620
 msgid "Event Reminders"
 msgstr ""
 
-#: include/identity.php:611
+#: include/identity.php:621
 msgid "Events this week:"
 msgstr ""
 
-#: include/identity.php:631 mod/settings.php:1286
+#: include/identity.php:641 mod/settings.php:1287
 msgid "Full Name:"
 msgstr ""
 
-#: include/identity.php:636
+#: include/identity.php:648
 msgid "j F, Y"
 msgstr ""
 
-#: include/identity.php:637
+#: include/identity.php:649
 msgid "j F"
 msgstr ""
 
-#: include/identity.php:648
+#: include/identity.php:661
 msgid "Age:"
 msgstr ""
 
-#: include/identity.php:659
+#: include/identity.php:674
 #, php-format
 msgid "for %1$d %2$s"
 msgstr ""
 
-#: include/identity.php:663 mod/profiles.php:703
+#: include/identity.php:678 mod/profiles.php:706
 msgid "Sexual Preference:"
 msgstr ""
 
-#: include/identity.php:671 mod/profiles.php:730
+#: include/identity.php:686 mod/profiles.php:733
 msgid "Hometown:"
 msgstr ""
 
-#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
-#: mod/notifications.php:248
+#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250
+#: mod/contacts.php:645
 msgid "Tags:"
 msgstr ""
 
-#: include/identity.php:679 mod/profiles.php:731
+#: include/identity.php:694 mod/profiles.php:734
 msgid "Political Views:"
 msgstr ""
 
-#: include/identity.php:683
+#: include/identity.php:698
 msgid "Religion:"
 msgstr ""
 
-#: include/identity.php:691
+#: include/identity.php:706
 msgid "Hobbies/Interests:"
 msgstr ""
 
-#: include/identity.php:695 mod/profiles.php:735
+#: include/identity.php:710 mod/profiles.php:738
 msgid "Likes:"
 msgstr ""
 
-#: include/identity.php:699 mod/profiles.php:736
+#: include/identity.php:714 mod/profiles.php:739
 msgid "Dislikes:"
 msgstr ""
 
-#: include/identity.php:703
+#: include/identity.php:718
 msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: include/identity.php:707
+#: include/identity.php:722
 msgid "Musical interests:"
 msgstr ""
 
-#: include/identity.php:711
+#: include/identity.php:726
 msgid "Books, literature:"
 msgstr ""
 
-#: include/identity.php:715
+#: include/identity.php:730
 msgid "Television:"
 msgstr ""
 
-#: include/identity.php:719
+#: include/identity.php:734
 msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: include/identity.php:723
+#: include/identity.php:738
 msgid "Love/Romance:"
 msgstr ""
 
-#: include/identity.php:727
+#: include/identity.php:742
 msgid "Work/employment:"
 msgstr ""
 
-#: include/identity.php:731
+#: include/identity.php:746
 msgid "School/education:"
 msgstr ""
 
-#: include/identity.php:736
+#: include/identity.php:751
 msgid "Forums:"
 msgstr ""
 
-#: include/identity.php:745 mod/events.php:506
+#: include/identity.php:760 mod/events.php:509
 msgid "Basic"
 msgstr ""
 
-#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
-#: mod/admin.php:1059
+#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065
+#: mod/contacts.php:881
 msgid "Advanced"
 msgstr ""
 
-#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145
+#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847
 msgid "Status Messages and Posts"
 msgstr ""
 
-#: include/identity.php:780 mod/contacts.php:852
+#: include/identity.php:795 mod/contacts.php:855
 msgid "Profile Details"
 msgstr ""
 
-#: include/identity.php:788 mod/photos.php:93
+#: include/identity.php:803 mod/photos.php:95
 msgid "Photo Albums"
 msgstr ""
 
-#: include/identity.php:827 mod/notes.php:47
+#: include/identity.php:842 mod/notes.php:49
 msgid "Personal Notes"
 msgstr ""
 
-#: include/identity.php:830
+#: include/identity.php:845
 msgid "Only You Can See This"
 msgstr ""
 
-#: include/network.php:687
-msgid "view full size"
+#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
 msgstr ""
 
-#: include/oembed.php:255
-msgid "Embedded content"
+#: include/items.php:2121 mod/display.php:105 mod/display.php:280
+#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248
+#: mod/admin.php:1571 mod/admin.php:1822
+msgid "Item not found."
 msgstr ""
 
-#: include/oembed.php:263
-msgid "Embedding disabled"
+#: include/items.php:2160
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
-#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
-#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
-#: mod/photos.php:1853
-msgid "Contact Photos"
+#: include/items.php:2162 mod/api.php:107 mod/follow.php:115
+#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31
+#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643
+#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172
+#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189
+#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204
+#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239
+msgid "Yes"
 msgstr ""
 
-#: include/user.php:39 mod/settings.php:375
-msgid "Passwords do not match. Password unchanged."
+#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33
+#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105
+#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15
+#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188
+#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80
+#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103
+#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7
+#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73
+#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111
+#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11
+#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104
+#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75
+#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106
+#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19
+#: mod/profile_photo.php:179 mod/profile_photo.php:190
+#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610
+#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410
+msgid "Permission denied."
 msgstr ""
 
-#: include/user.php:48
-msgid "An invitation is required."
+#: include/items.php:2426
+msgid "Archives"
 msgstr ""
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
+#: include/ostatus.php:1962
+#, php-format
+msgid "%s is now following %s."
 msgstr ""
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
+#: include/ostatus.php:1963
+msgid "following"
 msgstr ""
 
-#: include/user.php:82
-msgid "Please enter the required information."
+#: include/ostatus.php:1966
+#, php-format
+msgid "%s stopped following %s."
 msgstr ""
 
-#: include/user.php:96
-msgid "Please use a shorter name."
+#: include/ostatus.php:1967
+msgid "stopped following"
 msgstr ""
 
-#: include/user.php:98
-msgid "Name too short."
+#: include/plugin.php:531 include/plugin.php:533
+msgid "Click here to upgrade."
 msgstr ""
 
-#: include/user.php:106
-msgid "That doesn't appear to be your full (First Last) name."
+#: include/plugin.php:539
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: include/user.php:111
-msgid "Your email domain is not among those allowed on this site."
+#: include/plugin.php:544
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: include/user.php:114
-msgid "Not a valid email address."
+#: include/profile_selectors.php:6
+msgid "Male"
 msgstr ""
 
-#: include/user.php:127
-msgid "Cannot use that email."
+#: include/profile_selectors.php:6
+msgid "Female"
 msgstr ""
 
-#: include/user.php:133
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+#: include/profile_selectors.php:6
+msgid "Currently Male"
 msgstr ""
 
-#: include/user.php:140 include/user.php:228
-msgid "Nickname is already registered. Please choose another."
+#: include/profile_selectors.php:6
+msgid "Currently Female"
 msgstr ""
 
-#: include/user.php:150
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
 msgstr ""
 
-#: include/user.php:166
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
 msgstr ""
 
-#: include/user.php:214
-msgid "An error occurred during registration. Please try again."
+#: include/profile_selectors.php:6
+msgid "Transgender"
 msgstr ""
 
-#: include/user.php:239 view/theme/duepuntozero/config.php:43
-msgid "default"
+#: include/profile_selectors.php:6
+msgid "Intersex"
 msgstr ""
 
-#: include/user.php:249
-msgid "An error occurred creating your default profile. Please try again."
+#: include/profile_selectors.php:6
+msgid "Transsexual"
 msgstr ""
 
-#: include/user.php:309 include/user.php:317 include/user.php:325
-#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
-#: mod/profile_photo.php:215 mod/profile_photo.php:310
-#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187
-#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
-#: mod/photos.php:1863
-msgid "Profile Photos"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
 msgstr ""
 
-#: include/user.php:400
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for "
-"approval by the administrator.\n"
-"\t"
+#: include/profile_selectors.php:6
+msgid "Neuter"
 msgstr ""
 
-#: include/user.php:410
-#, php-format
-msgid "Registration at %s"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
 msgstr ""
 
-#: include/user.php:420
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
+#: include/profile_selectors.php:6
+msgid "Other"
 msgstr ""
 
-#: include/user.php:424
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
+#: include/profile_selectors.php:23
+msgid "Males"
 msgstr ""
 
-#: include/user.php:456 mod/admin.php:1308
-#, php-format
-msgid "Registration details for %s"
+#: include/profile_selectors.php:23
+msgid "Females"
 msgstr ""
 
-#: include/dbstructure.php:20
-msgid "There are no tables on MyISAM."
+#: include/profile_selectors.php:23
+msgid "Gay"
 msgstr ""
 
-#: include/dbstructure.php:61
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database "
-"might be invalid."
+#: include/profile_selectors.php:23
+msgid "Lesbian"
 msgstr ""
 
-#: include/dbstructure.php:66
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+#: include/profile_selectors.php:23
+msgid "No Preference"
 msgstr ""
 
-#: include/dbstructure.php:190
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
+#: include/profile_selectors.php:23
+msgid "Bisexual"
 msgstr ""
 
-#: include/dbstructure.php:193
-msgid "Errors encountered performing database changes: "
+#: include/profile_selectors.php:23
+msgid "Autosexual"
 msgstr ""
 
-#: include/dbstructure.php:201
-msgid ": Database update"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
 msgstr ""
 
-#: include/dbstructure.php:425
-#, php-format
-msgid "%s: updating %s table."
+#: include/profile_selectors.php:23
+msgid "Virgin"
 msgstr ""
 
-#: include/dfrn.php:1251
-#, php-format
-msgid "%s\\'s birthday"
+#: include/profile_selectors.php:23
+msgid "Deviant"
 msgstr ""
 
-#: include/diaspora.php:2137
-msgid "Sharing notification from Diaspora network"
+#: include/profile_selectors.php:23
+msgid "Fetish"
 msgstr ""
 
-#: include/diaspora.php:3146
-msgid "Attachments:"
-msgstr ""
-
-#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
-msgid "[Name Withheld]"
-msgstr ""
-
-#: include/items.php:2123 mod/display.php:103 mod/display.php:279
-#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
-#: mod/admin.php:1565 mod/admin.php:1816
-msgid "Item not found."
+#: include/profile_selectors.php:23
+msgid "Oodles"
 msgstr ""
 
-#: include/items.php:2162
-msgid "Do you really want to delete this item?"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
 msgstr ""
 
-#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
-#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
-#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171
-#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188
-#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203
-#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235
-#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
-msgid "Yes"
+#: include/profile_selectors.php:42
+msgid "Single"
 msgstr ""
 
-#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
-#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
-#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
-#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
-#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
-#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
-#: mod/profile_photo.php:180 mod/profile_photo.php:191
-#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9
-#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
-#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
-#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
-#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
-#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
-#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
-#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
-#: mod/item.php:208 mod/notifications.php:71 index.php:407
-msgid "Permission denied."
+#: include/profile_selectors.php:42
+msgid "Lonely"
 msgstr ""
 
-#: include/items.php:2444
-msgid "Archives"
+#: include/profile_selectors.php:42
+msgid "Available"
 msgstr ""
 
-#: include/ostatus.php:1947
-#, php-format
-msgid "%s is now following %s."
+#: include/profile_selectors.php:42
+msgid "Unavailable"
 msgstr ""
 
-#: include/ostatus.php:1948
-msgid "following"
+#: include/profile_selectors.php:42
+msgid "Has crush"
 msgstr ""
 
-#: include/ostatus.php:1951
-#, php-format
-msgid "%s stopped following %s."
+#: include/profile_selectors.php:42
+msgid "Infatuated"
 msgstr ""
 
-#: include/ostatus.php:1952
-msgid "stopped following"
+#: include/profile_selectors.php:42
+msgid "Dating"
 msgstr ""
 
-#: include/text.php:307
-msgid "newer"
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
 msgstr ""
 
-#: include/text.php:308
-msgid "older"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
 msgstr ""
 
-#: include/text.php:313
-msgid "first"
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
 msgstr ""
 
-#: include/text.php:314
-msgid "prev"
+#: include/profile_selectors.php:42
+msgid "Casual"
 msgstr ""
 
-#: include/text.php:348
-msgid "next"
+#: include/profile_selectors.php:42
+msgid "Engaged"
 msgstr ""
 
-#: include/text.php:349
-msgid "last"
+#: include/profile_selectors.php:42
+msgid "Married"
 msgstr ""
 
-#: include/text.php:403
-msgid "Loading more entries..."
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
 msgstr ""
 
-#: include/text.php:404
-msgid "The end"
+#: include/profile_selectors.php:42
+msgid "Partners"
 msgstr ""
 
-#: include/text.php:955
-msgid "No contacts"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
 msgstr ""
 
-#: include/text.php:980
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/text.php:993
-msgid "View Contacts"
+#: include/profile_selectors.php:42
+msgid "Common law"
 msgstr ""
 
-#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
-msgid "Save"
+#: include/profile_selectors.php:42
+msgid "Happy"
 msgstr ""
 
-#: include/text.php:1144
-msgid "poke"
+#: include/profile_selectors.php:42
+msgid "Not looking"
 msgstr ""
 
-#: include/text.php:1144
-msgid "poked"
+#: include/profile_selectors.php:42
+msgid "Swinger"
 msgstr ""
 
-#: include/text.php:1145
-msgid "ping"
+#: include/profile_selectors.php:42
+msgid "Betrayed"
 msgstr ""
 
-#: include/text.php:1145
-msgid "pinged"
+#: include/profile_selectors.php:42
+msgid "Separated"
 msgstr ""
 
-#: include/text.php:1146
-msgid "prod"
+#: include/profile_selectors.php:42
+msgid "Unstable"
 msgstr ""
 
-#: include/text.php:1146
-msgid "prodded"
+#: include/profile_selectors.php:42
+msgid "Divorced"
 msgstr ""
 
-#: include/text.php:1147
-msgid "slap"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
 msgstr ""
 
-#: include/text.php:1147
-msgid "slapped"
+#: include/profile_selectors.php:42
+msgid "Widowed"
 msgstr ""
 
-#: include/text.php:1148
-msgid "finger"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
 msgstr ""
 
-#: include/text.php:1148
-msgid "fingered"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
 msgstr ""
 
-#: include/text.php:1149
-msgid "rebuff"
+#: include/profile_selectors.php:42
+msgid "Don't care"
 msgstr ""
 
-#: include/text.php:1149
-msgid "rebuffed"
+#: include/profile_selectors.php:42
+msgid "Ask me"
 msgstr ""
 
-#: include/text.php:1163
-msgid "happy"
+#: mod/allfriends.php:48
+msgid "No friends to display."
 msgstr ""
 
-#: include/text.php:1164
-msgid "sad"
+#: mod/api.php:78 mod/api.php:104
+msgid "Authorize application connection"
 msgstr ""
 
-#: include/text.php:1165
-msgid "mellow"
+#: mod/api.php:79
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: include/text.php:1166
-msgid "tired"
+#: mod/api.php:91
+msgid "Please login to continue."
 msgstr ""
 
-#: include/text.php:1167
-msgid "perky"
+#: mod/api.php:106
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
 msgstr ""
 
-#: include/text.php:1168
-msgid "angry"
+#: mod/api.php:108 mod/follow.php:115 mod/register.php:248
+#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647
+#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178
+#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194
+#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209
+#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
+#: mod/settings.php:1238 mod/settings.php:1239
+msgid "No"
 msgstr ""
 
-#: include/text.php:1169
-msgid "stupified"
+#: mod/apps.php:9 index.php:257
+msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: include/text.php:1170
-msgid "puzzled"
+#: mod/apps.php:14
+msgid "Applications"
 msgstr ""
 
-#: include/text.php:1171
-msgid "interested"
+#: mod/apps.php:17
+msgid "No installed applications."
 msgstr ""
 
-#: include/text.php:1172
-msgid "bitter"
+#: mod/attach.php:10
+msgid "Item not available."
 msgstr ""
 
-#: include/text.php:1173
-msgid "cheerful"
+#: mod/attach.php:22
+msgid "Item was not found."
 msgstr ""
 
-#: include/text.php:1174
-msgid "alive"
+#: mod/babel.php:18
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: include/text.php:1175
-msgid "annoyed"
+#: mod/babel.php:25
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: include/text.php:1176
-msgid "anxious"
+#: mod/babel.php:33
+msgid "Source input: "
 msgstr ""
 
-#: include/text.php:1177
-msgid "cranky"
+#: mod/babel.php:37
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: include/text.php:1178
-msgid "disturbed"
+#: mod/babel.php:41
+msgid "bb2html: "
 msgstr ""
 
-#: include/text.php:1179
-msgid "frustrated"
+#: mod/babel.php:45
+msgid "bb2html2bb: "
 msgstr ""
 
-#: include/text.php:1180
-msgid "motivated"
+#: mod/babel.php:49
+msgid "bb2md: "
 msgstr ""
 
-#: include/text.php:1181
-msgid "relaxed"
+#: mod/babel.php:53
+msgid "bb2md2html: "
 msgstr ""
 
-#: include/text.php:1182
-msgid "surprised"
+#: mod/babel.php:57
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: include/text.php:1392 mod/videos.php:386
-msgid "View Video"
+#: mod/babel.php:61
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: include/text.php:1424
-msgid "bytes"
+#: mod/babel.php:67
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: include/text.php:1456 include/text.php:1468
-msgid "Click to open/close"
+#: mod/babel.php:71
+msgid "diaspora2bb: "
 msgstr ""
 
-#: include/text.php:1594
-msgid "View on separate page"
+#: mod/bookmarklet.php:43
+msgid "The post was created"
 msgstr ""
 
-#: include/text.php:1595
-msgid "view on separate page"
+#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: include/text.php:1874
-msgid "activity"
+#: mod/cal.php:273 mod/events.php:378
+msgid "View"
 msgstr ""
 
-#: include/text.php:1876 mod/content.php:623 object/Item.php:419
-#: object/Item.php:431
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/text.php:1877
-msgid "post"
+#: mod/cal.php:274 mod/events.php:380
+msgid "Previous"
 msgstr ""
 
-#: include/text.php:2045
-msgid "Item filed"
+#: mod/cal.php:275 mod/events.php:381 mod/install.php:203
+msgid "Next"
 msgstr ""
 
-#: mod/allfriends.php:46
-msgid "No friends to display."
+#: mod/cal.php:284 mod/events.php:390
+msgid "list"
 msgstr ""
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
+#: mod/cal.php:294
+msgid "User not found"
 msgstr ""
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: mod/cal.php:310
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/api.php:89
-msgid "Please login to continue."
+#: mod/cal.php:312
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+#: mod/cal.php:327
+msgid "calendar"
 msgstr ""
 
-#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
-#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
-#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
-#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
-#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238
-msgid "No"
+#: mod/common.php:93
+msgid "No contacts in common."
 msgstr ""
 
-#: mod/apps.php:7 index.php:254
-msgid "You must be logged in to use addons. "
+#: mod/common.php:143 mod/contacts.php:874
+msgid "Common Friends"
 msgstr ""
 
-#: mod/apps.php:11
-msgid "Applications"
+#: mod/community.php:18 mod/directory.php:33 mod/display.php:201
+#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804
+#: mod/probe.php:9
+msgid "Public access denied."
 msgstr ""
 
-#: mod/apps.php:14
-msgid "No installed applications."
+#: mod/community.php:23
+msgid "Not available."
 msgstr ""
 
-#: mod/attach.php:8
-msgid "Item not available."
+#: mod/community.php:50 mod/search.php:222
+msgid "No results."
 msgstr ""
 
-#: mod/attach.php:20
-msgid "Item was not found."
+#: mod/content.php:120 mod/network.php:478
+msgid "No such group"
 msgstr ""
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
+#: mod/content.php:131 mod/group.php:214 mod/network.php:505
+msgid "Group is empty"
 msgstr ""
 
-#: mod/common.php:91
-msgid "No contacts in common."
+#: mod/content.php:136 mod/network.php:509
+#, php-format
+msgid "Group: %s"
 msgstr ""
 
-#: mod/common.php:141 mod/contacts.php:871
-msgid "Common Friends"
+#: mod/content.php:326 object/Item.php:96
+msgid "This entry was edited"
 msgstr ""
 
-#: mod/contacts.php:134
+#: mod/content.php:622 object/Item.php:414
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
+msgid "%d comment"
+msgid_plural "%d comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/contacts.php:169 mod/contacts.php:378
-msgid "Could not access contact record."
+#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117
+msgid "Private Message"
 msgstr ""
 
-#: mod/contacts.php:183
-msgid "Could not locate selected profile."
+#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271
+msgid "I like this (toggle)"
 msgstr ""
 
-#: mod/contacts.php:216
-msgid "Contact updated."
+#: mod/content.php:703 object/Item.php:271
+msgid "like"
 msgstr ""
 
-#: mod/contacts.php:218 mod/dfrn_request.php:593
-msgid "Failed to update contact record."
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: mod/contacts.php:399
-msgid "Contact has been blocked"
+#: mod/content.php:704 object/Item.php:272
+msgid "dislike"
 msgstr ""
 
-#: mod/contacts.php:399
-msgid "Contact has been unblocked"
+#: mod/content.php:706 object/Item.php:275
+msgid "Share this"
 msgstr ""
 
-#: mod/contacts.php:410
-msgid "Contact has been ignored"
+#: mod/content.php:706 object/Item.php:275
+msgid "share"
 msgstr ""
 
-#: mod/contacts.php:410
-msgid "Contact has been unignored"
+#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687
+#: mod/photos.php:1767 object/Item.php:699
+msgid "This is you"
 msgstr ""
 
-#: mod/contacts.php:422
-msgid "Contact has been archived"
+#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647
+#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389
+#: object/Item.php:701
+msgid "Comment"
 msgstr ""
 
-#: mod/contacts.php:422
-msgid "Contact has been unarchived"
+#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508
+#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284
+#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156
+#: mod/message.php:340 mod/message.php:523 mod/mood.php:139
+#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599
+#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770
+#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684
+#: object/Item.php:702 view/theme/duepuntozero/config.php:64
+#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70
+#: view/theme/vier/config.php:113
+msgid "Submit"
 msgstr ""
 
-#: mod/contacts.php:447
-msgid "Drop contact"
+#: mod/content.php:730 object/Item.php:703
+msgid "Bold"
 msgstr ""
 
-#: mod/contacts.php:450 mod/contacts.php:809
-msgid "Do you really want to delete this contact?"
+#: mod/content.php:731 object/Item.php:704
+msgid "Italic"
 msgstr ""
 
-#: mod/contacts.php:469
-msgid "Contact has been removed."
+#: mod/content.php:732 object/Item.php:705
+msgid "Underline"
 msgstr ""
 
-#: mod/contacts.php:506
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/content.php:733 object/Item.php:706
+msgid "Quote"
 msgstr ""
 
-#: mod/contacts.php:510
-#, php-format
-msgid "You are sharing with %s"
+#: mod/content.php:734 object/Item.php:707
+msgid "Code"
 msgstr ""
 
-#: mod/contacts.php:515
-#, php-format
-msgid "%s is sharing with you"
+#: mod/content.php:735 object/Item.php:708
+msgid "Image"
 msgstr ""
 
-#: mod/contacts.php:535
-msgid "Private communications are not available for this contact."
+#: mod/content.php:736 object/Item.php:709
+msgid "Link"
 msgstr ""
 
-#: mod/contacts.php:538 mod/admin.php:978
-msgid "Never"
+#: mod/content.php:737 object/Item.php:710
+msgid "Video"
 msgstr ""
 
-#: mod/contacts.php:542
-msgid "(Update was successful)"
+#: mod/content.php:747 mod/settings.php:744 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
 msgstr ""
 
-#: mod/contacts.php:542
-msgid "(Update was not successful)"
+#: mod/content.php:773 object/Item.php:238
+msgid "add star"
 msgstr ""
 
-#: mod/contacts.php:544 mod/contacts.php:972
-msgid "Suggest friends"
+#: mod/content.php:774 object/Item.php:239
+msgid "remove star"
 msgstr ""
 
-#: mod/contacts.php:548
-#, php-format
-msgid "Network type: %s"
+#: mod/content.php:775 object/Item.php:240
+msgid "toggle star status"
 msgstr ""
 
-#: mod/contacts.php:561
-msgid "Communications lost with this contact!"
+#: mod/content.php:778 object/Item.php:243
+msgid "starred"
 msgstr ""
 
-#: mod/contacts.php:564
-msgid "Fetch further information for feeds"
+#: mod/content.php:779 mod/content.php:801 object/Item.php:260
+msgid "add tag"
 msgstr ""
 
-#: mod/contacts.php:565 mod/admin.php:987
-msgid "Disabled"
+#: mod/content.php:790 object/Item.php:248
+msgid "ignore thread"
 msgstr ""
 
-#: mod/contacts.php:565
-msgid "Fetch information"
+#: mod/content.php:791 object/Item.php:249
+msgid "unignore thread"
 msgstr ""
 
-#: mod/contacts.php:565
-msgid "Fetch information and keywords"
+#: mod/content.php:792 object/Item.php:250
+msgid "toggle ignore status"
 msgstr ""
 
-#: mod/contacts.php:583
-msgid "Contact"
+#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253
+msgid "ignored"
 msgstr ""
 
-#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
-#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
-#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
-#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
-#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
-#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
-#: mod/install.php:242 mod/install.php:282 object/Item.php:705
-#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
-#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
-msgid "Submit"
+#: mod/content.php:806 object/Item.php:141
+msgid "save to folder"
 msgstr ""
 
-#: mod/contacts.php:586
-msgid "Profile Visibility"
+#: mod/content.php:854 object/Item.php:212
+msgid "I will attend"
 msgstr ""
 
-#: mod/contacts.php:587
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: mod/content.php:854 object/Item.php:212
+msgid "I will not attend"
 msgstr ""
 
-#: mod/contacts.php:588
-msgid "Contact Information / Notes"
+#: mod/content.php:854 object/Item.php:212
+msgid "I might attend"
 msgstr ""
 
-#: mod/contacts.php:589
-msgid "Edit contact notes"
+#: mod/content.php:918 object/Item.php:355
+msgid "to"
 msgstr ""
 
-#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
-#: mod/viewcontacts.php:102
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: mod/content.php:919 object/Item.php:357
+msgid "Wall-to-Wall"
 msgstr ""
 
-#: mod/contacts.php:595
-msgid "Block/Unblock contact"
+#: mod/content.php:920 object/Item.php:358
+msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: mod/contacts.php:596
-msgid "Ignore contact"
+#: mod/credits.php:19
+msgid "Credits"
 msgstr ""
 
-#: mod/contacts.php:597
-msgid "Repair URL settings"
+#: mod/credits.php:20
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
 msgstr ""
 
-#: mod/contacts.php:598
-msgid "View conversations"
+#: mod/crepair.php:92
+msgid "Contact settings applied."
 msgstr ""
 
-#: mod/contacts.php:604
-msgid "Last update:"
+#: mod/crepair.php:94
+msgid "Contact update failed."
 msgstr ""
 
-#: mod/contacts.php:606
-msgid "Update public posts"
+#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22
+#: mod/fsuggest.php:94
+msgid "Contact not found."
 msgstr ""
 
-#: mod/contacts.php:608 mod/contacts.php:982
-msgid "Update now"
+#: mod/crepair.php:125
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1510
-msgid "Unblock"
+#: mod/crepair.php:126
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1509
-msgid "Block"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "No mirroring"
 msgstr ""
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-msgid "Unignore"
+#: mod/crepair.php:139
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:263
-msgid "Ignore"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: mod/contacts.php:618
-msgid "Currently blocked"
+#: mod/crepair.php:155
+msgid "Return to contact editor"
 msgstr ""
 
-#: mod/contacts.php:619
-msgid "Currently ignored"
+#: mod/crepair.php:157
+msgid "Refetch contact data"
 msgstr ""
 
-#: mod/contacts.php:620
-msgid "Currently archived"
+#: mod/crepair.php:161
+msgid "Remote Self"
 msgstr ""
 
-#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
-msgid "Hide this contact from others"
+#: mod/crepair.php:164
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: mod/contacts.php:621
+#: mod/crepair.php:166
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: mod/contacts.php:622
-msgid "Notification for new posts"
+#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509
+#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684
+#: mod/settings.php:710
+msgid "Name"
 msgstr ""
 
-#: mod/contacts.php:622
-msgid "Send a notification of every new post of this contact"
+#: mod/crepair.php:171
+msgid "Account Nickname"
 msgstr ""
 
-#: mod/contacts.php:625
-msgid "Blacklisted keywords"
+#: mod/crepair.php:172
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: mod/contacts.php:625
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+#: mod/crepair.php:173
+msgid "Account URL"
 msgstr ""
 
-#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
-msgid "Profile URL"
+#: mod/crepair.php:174
+msgid "Friend Request URL"
 msgstr ""
 
-#: mod/contacts.php:643
-msgid "Actions"
+#: mod/crepair.php:175
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: mod/contacts.php:646
-msgid "Contact Settings"
+#: mod/crepair.php:176
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: mod/contacts.php:692
-msgid "Suggestions"
+#: mod/crepair.php:177
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: mod/contacts.php:695
-msgid "Suggest potential friends"
+#: mod/crepair.php:178
+msgid "New photo from this URL"
 msgstr ""
 
-#: mod/contacts.php:700 mod/group.php:212
-msgid "All Contacts"
+#: mod/delegate.php:103
+msgid "No potential page delegates located."
 msgstr ""
 
-#: mod/contacts.php:703
-msgid "Show all contacts"
+#: mod/delegate.php:134
+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/contacts.php:708
-msgid "Unblocked"
+#: mod/delegate.php:135
+msgid "Existing Page Managers"
 msgstr ""
 
-#: mod/contacts.php:711
-msgid "Only show unblocked contacts"
+#: mod/delegate.php:137
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: mod/contacts.php:717
-msgid "Blocked"
+#: mod/delegate.php:139
+msgid "Potential Delegates"
 msgstr ""
 
-#: mod/contacts.php:720
-msgid "Only show blocked contacts"
+#: mod/delegate.php:141 mod/tagrm.php:97
+msgid "Remove"
 msgstr ""
 
-#: mod/contacts.php:726
-msgid "Ignored"
+#: mod/delegate.php:142
+msgid "Add"
 msgstr ""
 
-#: mod/contacts.php:729
-msgid "Only show ignored contacts"
+#: mod/delegate.php:143
+msgid "No entries."
 msgstr ""
 
-#: mod/contacts.php:735
-msgid "Archived"
+#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139
+#: mod/profiles.php:186 mod/profiles.php:622
+msgid "Profile not found."
 msgstr ""
 
-#: mod/contacts.php:738
-msgid "Only show archived contacts"
+#: mod/dfrn_confirm.php:129
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: mod/contacts.php:744
-msgid "Hidden"
+#: mod/dfrn_confirm.php:246
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: mod/contacts.php:747
-msgid "Only show hidden contacts"
+#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: mod/contacts.php:804
-msgid "Search your contacts"
+#: mod/dfrn_confirm.php:269
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227
-#, php-format
-msgid "Results for: %s"
+#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
+msgid "Remote site reported: "
 msgstr ""
 
-#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
-msgid "Update"
+#: mod/dfrn_confirm.php:283
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Archive"
+#: mod/dfrn_confirm.php:290
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Unarchive"
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: mod/contacts.php:818
-msgid "Batch Actions"
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: mod/contacts.php:864
-msgid "View all contacts"
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: mod/contacts.php:874
-msgid "View all common friends"
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: mod/contacts.php:881
-msgid "Advanced Contact Settings"
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: mod/contacts.php:915
-msgid "Mutual Friendship"
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: mod/contacts.php:919
-msgid "is a fan of yours"
+#: mod/dfrn_confirm.php:638
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: mod/contacts.php:923
-msgid "you are a fan of"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: mod/contacts.php:939 mod/nogroup.php:44
-msgid "Edit contact"
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: mod/contacts.php:993
-msgid "Toggle Blocked status"
+#: mod/dfrn_confirm.php:783
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: mod/contacts.php:1001
-msgid "Toggle Ignored status"
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
+#, php-format
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: mod/contacts.php:1009
-msgid "Toggle Archive status"
+#: mod/directory.php:195 view/theme/vier/theme.php:201
+msgid "Global Directory"
 msgstr ""
 
-#: mod/contacts.php:1017
-msgid "Delete contact"
+#: mod/directory.php:197
+msgid "Find on this site"
 msgstr ""
 
-#: mod/content.php:119 mod/network.php:475
-msgid "No such group"
+#: mod/directory.php:199
+msgid "Results for:"
 msgstr ""
 
-#: mod/content.php:130 mod/group.php:213 mod/network.php:502
-msgid "Group is empty"
+#: mod/directory.php:201
+msgid "Site Directory"
 msgstr ""
 
-#: mod/content.php:135 mod/network.php:506
-#, php-format
-msgid "Group: %s"
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/content.php:325 object/Item.php:96
-msgid "This entry was edited"
+#: mod/dirfind.php:39
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/content.php:621 object/Item.php:417
+#: mod/dirfind.php:50
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Forum Search - %s"
+msgstr ""
 
-#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117
-msgid "Private Message"
+#: mod/dirfind.php:247 mod/match.php:112
+msgid "No matches"
 msgstr ""
 
-#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274
-msgid "I like this (toggle)"
+#: mod/display.php:480
+msgid "Item has been removed."
 msgstr ""
 
-#: mod/content.php:702 object/Item.php:274
-msgid "like"
+#: mod/editpost.php:19 mod/editpost.php:29
+msgid "Item not found"
 msgstr ""
 
-#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275
-msgid "I don't like this (toggle)"
+#: mod/editpost.php:34
+msgid "Edit post"
 msgstr ""
 
-#: mod/content.php:703 object/Item.php:275
-msgid "dislike"
+#: mod/events.php:96 mod/events.php:98
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:278
-msgid "Share this"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:278
-msgid "share"
+#: mod/events.php:379
+msgid "Create New Event"
 msgstr ""
 
-#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685
-#: mod/photos.php:1765 object/Item.php:702
-msgid "This is you"
+#: mod/events.php:484
+msgid "Event details"
 msgstr ""
 
-#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645
-#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392
-#: object/Item.php:704
-msgid "Comment"
+#: mod/events.php:485
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/content.php:729 object/Item.php:706
-msgid "Bold"
+#: mod/events.php:486 mod/events.php:487
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/content.php:730 object/Item.php:707
-msgid "Italic"
+#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712
+msgid "Required"
 msgstr ""
 
-#: mod/content.php:731 object/Item.php:708
-msgid "Underline"
+#: mod/events.php:488 mod/events.php:504
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/content.php:732 object/Item.php:709
-msgid "Quote"
+#: mod/events.php:490 mod/events.php:491
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/content.php:733 object/Item.php:710
-msgid "Code"
+#: mod/events.php:492 mod/events.php:505
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/content.php:734 object/Item.php:711
-msgid "Image"
+#: mod/events.php:494
+msgid "Description:"
 msgstr ""
 
-#: mod/content.php:735 object/Item.php:712
-msgid "Link"
+#: mod/events.php:498 mod/events.php:500
+msgid "Title:"
 msgstr ""
 
-#: mod/content.php:736 object/Item.php:713
-msgid "Video"
+#: mod/events.php:501 mod/events.php:502
+msgid "Share this event"
 msgstr ""
 
-#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
+#: mod/events.php:531
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/content.php:772 object/Item.php:238
-msgid "add star"
+#: mod/events.php:533
+msgid "Event removed"
 msgstr ""
 
-#: mod/content.php:773 object/Item.php:239
-msgid "remove star"
+#: mod/fbrowser.php:134
+msgid "Files"
 msgstr ""
 
-#: mod/content.php:774 object/Item.php:240
-msgid "toggle star status"
+#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56
+#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301
+msgid "Not Found"
 msgstr ""
 
-#: mod/content.php:777 object/Item.php:243
-msgid "starred"
+#: mod/filer.php:31
+msgid "- select -"
 msgstr ""
 
-#: mod/content.php:778 mod/content.php:800 object/Item.php:263
-msgid "add tag"
+#: mod/follow.php:21 mod/dfrn_request.php:893
+msgid "Submit Request"
 msgstr ""
 
-#: mod/content.php:789 object/Item.php:251
-msgid "ignore thread"
+#: mod/follow.php:32
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/content.php:790 object/Item.php:252
-msgid "unignore thread"
+#: mod/follow.php:41
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/content.php:791 object/Item.php:253
-msgid "toggle ignore status"
+#: mod/follow.php:48
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
-msgid "ignored"
+#: mod/follow.php:55
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/content.php:805 object/Item.php:141
-msgid "save to folder"
+#: mod/follow.php:114 mod/dfrn_request.php:879
+msgid "Please answer the following:"
 msgstr ""
 
-#: mod/content.php:853 object/Item.php:212
-msgid "I will attend"
+#: mod/follow.php:115 mod/dfrn_request.php:880
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: mod/content.php:853 object/Item.php:212
-msgid "I will not attend"
+#: mod/follow.php:116 mod/dfrn_request.php:884
+msgid "Add a personal note:"
 msgstr ""
 
-#: mod/content.php:853 object/Item.php:212
-msgid "I might attend"
+#: mod/follow.php:122 mod/dfrn_request.php:890
+msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/content.php:917 object/Item.php:358
-msgid "to"
+#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635
+msgid "Profile URL"
 msgstr ""
 
-#: mod/content.php:918 object/Item.php:360
-msgid "Wall-to-Wall"
+#: mod/follow.php:188
+msgid "Contact added"
 msgstr ""
 
-#: mod/content.php:919 object/Item.php:361
-msgid "via Wall-To-Wall:"
+#: mod/friendica.php:69
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/credits.php:16
-msgid "Credits"
+#: mod/friendica.php:70
+msgid "running at web location"
 msgstr ""
 
-#: mod/credits.php:17
+#: mod/friendica.php:74
 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!"
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact settings applied."
+#: mod/friendica.php:78
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/crepair.php:91
-msgid "Contact update failed."
+#: mod/friendica.php:78
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
-#: mod/dfrn_confirm.php:126
-msgid "Contact not found."
+#: mod/friendica.php:81
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: mod/crepair.php:122
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: mod/friendica.php:95
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: mod/crepair.php:123
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: mod/friendica.php:109
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: mod/crepair.php:136 mod/crepair.php:138
-msgid "No mirroring"
+#: mod/friendica.php:114
+msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: mod/crepair.php:136
-msgid "Mirror as forwarded posting"
+#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299
+msgid "Reason for the block"
 msgstr ""
 
-#: mod/crepair.php:136 mod/crepair.php:138
-msgid "Mirror as my own posting"
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: mod/crepair.php:152
-msgid "Return to contact editor"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
 msgstr ""
 
-#: mod/crepair.php:154
-msgid "Refetch contact data"
+#: mod/fsuggest.php:101
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: mod/crepair.php:158
-msgid "Remote Self"
+#: mod/group.php:30
+msgid "Group created."
 msgstr ""
 
-#: mod/crepair.php:161
-msgid "Mirror postings from this contact"
+#: mod/group.php:36
+msgid "Could not create group."
 msgstr ""
 
-#: mod/crepair.php:163
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: mod/group.php:50 mod/group.php:155
+msgid "Group not found."
 msgstr ""
 
-#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
-#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
-msgid "Name"
+#: mod/group.php:64
+msgid "Group name changed."
 msgstr ""
 
-#: mod/crepair.php:168
-msgid "Account Nickname"
+#: mod/group.php:77 mod/profperm.php:22 index.php:409
+msgid "Permission denied"
 msgstr ""
 
-#: mod/crepair.php:169
-msgid "@Tagname - overrides Name/Nickname"
+#: mod/group.php:94
+msgid "Save Group"
 msgstr ""
 
-#: mod/crepair.php:170
-msgid "Account URL"
+#: mod/group.php:99
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: mod/crepair.php:171
-msgid "Friend Request URL"
+#: mod/group.php:124
+msgid "Group removed."
 msgstr ""
 
-#: mod/crepair.php:172
-msgid "Friend Confirm URL"
+#: mod/group.php:126
+msgid "Unable to remove group."
 msgstr ""
 
-#: mod/crepair.php:173
-msgid "Notification Endpoint URL"
+#: mod/group.php:190
+msgid "Delete Group"
 msgstr ""
 
-#: mod/crepair.php:174
-msgid "Poll/Feed URL"
+#: mod/group.php:196
+msgid "Group Editor"
 msgstr ""
 
-#: mod/crepair.php:175
-msgid "New photo from this URL"
+#: mod/group.php:201
+msgid "Edit Group Name"
 msgstr ""
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
+#: mod/group.php:211
+msgid "Members"
 msgstr ""
 
-#: mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: mod/group.php:213 mod/contacts.php:703
+msgid "All Contacts"
 msgstr ""
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
+#: mod/group.php:227
+msgid "Remove Contact"
 msgstr ""
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
+#: mod/group.php:251
+msgid "Add Contact"
 msgstr ""
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
+#: mod/group.php:263 mod/profperm.php:109
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: mod/delegate.php:139 mod/tagrm.php:95
-msgid "Remove"
+#: mod/hcard.php:13
+msgid "No profile"
 msgstr ""
 
-#: mod/delegate.php:140
-msgid "Add"
+#: mod/help.php:44
+msgid "Help:"
 msgstr ""
 
-#: mod/delegate.php:141
-msgid "No entries."
+#: mod/help.php:59 index.php:304
+msgid "Page not found."
 msgstr ""
 
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
+#: mod/home.php:41
 #, php-format
-msgid "%1$s welcomes %2$s"
+msgid "Welcome to %s"
 msgstr ""
 
-#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36
-#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979
-#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198
-#: mod/webfinger.php:8
-msgid "Public access denied."
+#: mod/install.php:108
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/directory.php:199 view/theme/vier/theme.php:199
-msgid "Global Directory"
+#: mod/install.php:114
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/directory.php:201
-msgid "Find on this site"
+#: mod/install.php:118
+msgid "Could not create table."
 msgstr ""
 
-#: mod/directory.php:203
-msgid "Results for:"
+#: mod/install.php:124
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/directory.php:205
-msgid "Site Directory"
+#: mod/install.php:129
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/directory.php:212
-msgid "No entries (some entries may be hidden)."
+#: mod/install.php:130 mod/install.php:202 mod/install.php:549
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155
-msgid "Access to this profile has been restricted."
+#: mod/install.php:142
+msgid "Database already in use."
 msgstr ""
 
-#: mod/display.php:479
-msgid "Item has been removed."
+#: mod/install.php:199
+msgid "System check"
 msgstr ""
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
+#: mod/install.php:204
+msgid "Check again"
 msgstr ""
 
-#: mod/editpost.php:32
-msgid "Edit post"
+#: mod/install.php:223
+msgid "Database connection"
 msgstr ""
 
-#: mod/fbrowser.php:132
-msgid "Files"
+#: mod/install.php:224
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53
-#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298
-msgid "Not Found"
+#: mod/install.php:225
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/filer.php:30
-msgid "- select -"
+#: mod/install.php:226
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/fsuggest.php:64
-msgid "Friend suggestion sent."
+#: mod/install.php:230
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/fsuggest.php:98
-msgid "Suggest Friends"
+#: mod/install.php:231
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/fsuggest.php:100
-#, php-format
-msgid "Suggest a friend for %s"
+#: mod/install.php:232
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/hcard.php:11
-msgid "No profile"
+#: mod/install.php:232
+msgid "For security reasons the password must not be empty"
 msgstr ""
 
-#: mod/help.php:41
-msgid "Help:"
+#: mod/install.php:233
+msgid "Database Name"
 msgstr ""
 
-#: mod/help.php:56 index.php:301
-msgid "Page not found."
+#: mod/install.php:234 mod/install.php:275
+msgid "Site administrator email address"
 msgstr ""
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
+#: mod/install.php:234 mod/install.php:275
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/invite.php:28
-msgid "Total invitation limit exceeded."
+#: mod/install.php:238 mod/install.php:278
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/invite.php:51
-#, php-format
-msgid "%s : Not a valid email address."
+#: mod/install.php:265
+msgid "Site settings"
 msgstr ""
 
-#: mod/invite.php:76
-msgid "Please join us on Friendica"
+#: mod/install.php:279
+msgid "System Language:"
 msgstr ""
 
-#: mod/invite.php:87
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: mod/install.php:279
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/invite.php:91
-#, php-format
-msgid "%s : Message delivery failed."
+#: mod/install.php:319
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/invite.php:95
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/invite.php:114
-msgid "You have no more invitations available"
+#: mod/install.php:320
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a href='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"poller'>'Setup the poller'</a>"
 msgstr ""
 
-#: mod/invite.php:122
-#, 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."
+#: mod/install.php:324
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/invite.php:124
-#, php-format
+#: mod/install.php:324
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/invite.php:125
-#, 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."
+#: mod/install.php:329
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/invite.php:128
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: mod/install.php:338
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/invite.php:134
-msgid "Send invitations"
+#: mod/install.php:339
+msgid "Found PHP version: "
 msgstr ""
 
-#: mod/invite.php:135
+#: mod/install.php:341
+msgid "PHP cli binary"
+msgstr ""
+
+#: mod/install.php:352
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr ""
+
+#: mod/install.php:353
+msgid "This is required for message delivery to work."
+msgstr ""
+
+#: mod/install.php:355
+msgid "PHP register_argc_argv"
+msgstr ""
+
+#: mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr ""
+
+#: mod/install.php:379
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
+msgstr ""
+
+#: mod/install.php:381
+msgid "Generate encryption keys"
+msgstr ""
+
+#: mod/install.php:388
+msgid "libCurl PHP module"
+msgstr ""
+
+#: mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr ""
+
+#: mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr ""
+
+#: mod/install.php:391
+msgid "PDO or MySQLi PHP module"
+msgstr ""
+
+#: mod/install.php:392
+msgid "mb_string PHP module"
+msgstr ""
+
+#: mod/install.php:393
+msgid "XML PHP module"
+msgstr ""
+
+#: mod/install.php:394
+msgid "iconv module"
+msgstr ""
+
+#: mod/install.php:398 mod/install.php:400
+msgid "Apache mod_rewrite module"
+msgstr ""
+
+#: mod/install.php:398
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr ""
+
+#: mod/install.php:406
+msgid "Error: libCURL PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:410
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr ""
+
+#: mod/install.php:414
+msgid "Error: openssl PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:418
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:422
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
+
+#: mod/install.php:426
+msgid "Error: mb_string PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:430
+msgid "Error: iconv PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:440
+msgid "Error, XML PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:452
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
+msgstr ""
+
+#: mod/install.php:453
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr ""
+
+#: mod/install.php:454
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr ""
+
+#: mod/install.php:455
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
+msgstr ""
+
+#: mod/install.php:458
+msgid ".htconfig.php is writable"
+msgstr ""
+
+#: mod/install.php:468
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr ""
+
+#: mod/install.php:469
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr ""
+
+#: mod/install.php:470
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
+msgstr ""
+
+#: mod/install.php:471
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr ""
+
+#: mod/install.php:474
+msgid "view/smarty3 is writable"
+msgstr ""
+
+#: mod/install.php:490
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
+
+#: mod/install.php:492
+msgid "Url rewrite is working"
+msgstr ""
+
+#: mod/install.php:511
+msgid "ImageMagick PHP extension is not installed"
+msgstr ""
+
+#: mod/install.php:513
+msgid "ImageMagick PHP extension is installed"
+msgstr ""
+
+#: mod/install.php:515
+msgid "ImageMagick supports GIF"
+msgstr ""
+
+#: mod/install.php:522
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr ""
+
+#: mod/install.php:547
+msgid "<h1>What next</h1>"
+msgstr ""
+
+#: mod/install.php:548
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+msgstr ""
+
+#: mod/invite.php:30
+msgid "Total invitation limit exceeded."
+msgstr ""
+
+#: mod/invite.php:53
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr ""
+
+#: mod/invite.php:78
+msgid "Please join us on Friendica"
+msgstr ""
+
+#: mod/invite.php:89
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr ""
+
+#: mod/invite.php:93
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr ""
+
+#: mod/invite.php:97
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/invite.php:116
+msgid "You have no more invitations available"
+msgstr ""
+
+#: mod/invite.php:124
+#, 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 ""
+
+#: mod/invite.php:126
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr ""
+
+#: mod/invite.php:127
+#, 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/invite.php:130
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
+msgstr ""
+
+#: mod/invite.php:136
+msgid "Send invitations"
+msgstr ""
+
+#: mod/invite.php:137
 msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332
-#: mod/message.php:515
+#: mod/invite.php:138 mod/message.php:334 mod/message.php:517
+#: mod/wallmessage.php:137
 msgid "Your message:"
 msgstr ""
 
-#: mod/invite.php:137
+#: mod/invite.php:139
 msgid ""
 "You are cordially invited to join me and other close friends on Friendica - "
 "and help us to create a better social web."
 msgstr ""
 
-#: mod/invite.php:139
+#: mod/invite.php:141
 msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: mod/invite.php:139
+#: mod/invite.php:141
 msgid ""
 "Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: mod/invite.php:141
+#: mod/invite.php:143
 msgid ""
 "For more information about the Friendica project and why we feel it is "
 "important, please visit http://friendica.com"
 msgstr ""
 
-#: mod/localtime.php:24
+#: mod/localtime.php:25
 msgid "Time Conversion"
 msgstr ""
 
-#: mod/localtime.php:26
+#: mod/localtime.php:27
 msgid ""
 "Friendica provides this service for sharing events with other networks and "
 "friends in unknown timezones."
 msgstr ""
 
-#: mod/localtime.php:30
+#: mod/localtime.php:31
 #, php-format
 msgid "UTC time: %s"
 msgstr ""
 
-#: mod/localtime.php:33
+#: mod/localtime.php:34
 #, php-format
 msgid "Current timezone: %s"
 msgstr ""
 
-#: mod/localtime.php:36
+#: mod/localtime.php:37
 #, php-format
 msgid "Converted localtime: %s"
 msgstr ""
 
-#: mod/localtime.php:41
+#: mod/localtime.php:42
 msgid "Please select your timezone:"
 msgstr ""
 
-#: mod/lockview.php:32 mod/lockview.php:40
+#: mod/lockview.php:33 mod/lockview.php:41
 msgid "Remote privacy information not available."
 msgstr ""
 
-#: mod/lockview.php:49
+#: mod/lockview.php:50
 msgid "Visible to:"
 msgstr ""
 
-#: mod/lostpass.php:19
+#: mod/lostpass.php:21
 msgid "No valid account found."
 msgstr ""
 
-#: mod/lostpass.php:35
+#: mod/lostpass.php:37
 msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/lostpass.php:41
+#: mod/lostpass.php:43
 #, php-format
 msgid ""
 "\n"
@@ -4112,7 +4481,7 @@ msgid ""
 "\t\tissued this request."
 msgstr ""
 
-#: mod/lostpass.php:52
+#: mod/lostpass.php:54
 #, php-format
 msgid ""
 "\n"
@@ -4130,44 +4499,44 @@ msgid ""
 "\t\tLogin Name:\t%3$s"
 msgstr ""
 
-#: mod/lostpass.php:71
+#: mod/lostpass.php:73
 #, php-format
 msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/lostpass.php:91
+#: mod/lostpass.php:93
 msgid ""
 "Request could not be verified. (You may have previously submitted it.) "
 "Password reset failed."
 msgstr ""
 
-#: mod/lostpass.php:110 boot.php:1882
+#: mod/lostpass.php:112 boot.php:877
 msgid "Password Reset"
 msgstr ""
 
-#: mod/lostpass.php:111
+#: mod/lostpass.php:113
 msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/lostpass.php:112
+#: mod/lostpass.php:114
 msgid "Your new password is"
 msgstr ""
 
-#: mod/lostpass.php:113
+#: mod/lostpass.php:115
 msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: mod/lostpass.php:114
+#: mod/lostpass.php:116
 msgid "click here to login"
 msgstr ""
 
-#: mod/lostpass.php:115
+#: mod/lostpass.php:117
 msgid ""
 "Your password may be changed from the <em>Settings</em> page after "
 "successful login."
 msgstr ""
 
-#: mod/lostpass.php:125
+#: mod/lostpass.php:127
 #, php-format
 msgid ""
 "\n"
@@ -4179,7 +4548,7 @@ msgid ""
 "\t\t\t"
 msgstr ""
 
-#: mod/lostpass.php:131
+#: mod/lostpass.php:133
 #, php-format
 msgid ""
 "\n"
@@ -4194,58 +4563,240 @@ msgid ""
 "\t\t\t"
 msgstr ""
 
-#: mod/lostpass.php:147
+#: mod/lostpass.php:149
 #, php-format
 msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/lostpass.php:159
+#: mod/lostpass.php:161
 msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/lostpass.php:160
+#: mod/lostpass.php:162
 msgid ""
 "Enter your email address and submit to have your password reset. Then check "
 "your email for further instructions."
 msgstr ""
 
-#: mod/lostpass.php:161 boot.php:1870
+#: mod/lostpass.php:163 boot.php:865
 msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/lostpass.php:162
+#: mod/lostpass.php:164
 msgid "Reset"
 msgstr ""
 
-#: mod/maintenance.php:20
+#: mod/maintenance.php:21
 msgid "System down for maintenance"
 msgstr ""
 
-#: mod/match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
+#: mod/manage.php:152
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: mod/match.php:88
-msgid "is interested in:"
+#: mod/manage.php:153
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: mod/match.php:102
-msgid "Profile Match"
+#: mod/manage.php:154
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: mod/match.php:109 mod/dirfind.php:245
-msgid "No matches"
+#: mod/match.php:38
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: mod/mood.php:134
-msgid "Mood"
+#: mod/match.php:91
+msgid "is interested in:"
 msgstr ""
 
+#: mod/match.php:105
+msgid "Profile Match"
+msgstr ""
+
+#: mod/message.php:62 mod/wallmessage.php:52
+msgid "No recipient selected."
+msgstr ""
+
+#: mod/message.php:66
+msgid "Unable to locate contact information."
+msgstr ""
+
+#: mod/message.php:69 mod/wallmessage.php:58
+msgid "Message could not be sent."
+msgstr ""
+
+#: mod/message.php:72 mod/wallmessage.php:61
+msgid "Message collection failure."
+msgstr ""
+
+#: mod/message.php:75 mod/wallmessage.php:64
+msgid "Message sent."
+msgstr ""
+
+#: mod/message.php:206
+msgid "Do you really want to delete this message?"
+msgstr ""
+
+#: mod/message.php:226
+msgid "Message deleted."
+msgstr ""
+
+#: mod/message.php:257
+msgid "Conversation removed."
+msgstr ""
+
+#: mod/message.php:324 mod/wallmessage.php:128
+msgid "Send Private Message"
+msgstr ""
+
+#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130
+msgid "To:"
+msgstr ""
+
+#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131
+msgid "Subject:"
+msgstr ""
+
+#: mod/message.php:366
+msgid "No messages."
+msgstr ""
+
+#: mod/message.php:405
+msgid "Message not available."
+msgstr ""
+
+#: mod/message.php:479
+msgid "Delete message"
+msgstr ""
+
+#: mod/message.php:505 mod/message.php:593
+msgid "Delete conversation"
+msgstr ""
+
+#: mod/message.php:507
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
+
+#: mod/message.php:511
+msgid "Send Reply"
+msgstr ""
+
+#: mod/message.php:563
+#, php-format
+msgid "Unknown sender - %s"
+msgstr ""
+
+#: mod/message.php:565
+#, php-format
+msgid "You and %s"
+msgstr ""
+
+#: mod/message.php:567
+#, php-format
+msgid "%s and You"
+msgstr ""
+
+#: mod/message.php:596
+msgid "D, d M Y - g:i A"
+msgstr ""
+
+#: mod/message.php:599
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
 #: mod/mood.php:135
+msgid "Mood"
+msgstr ""
+
+#: mod/mood.php:136
 msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: mod/newmember.php:6
+#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808
+#, php-format
+msgid "Results for: %s"
+msgstr ""
+
+#: mod/network.php:200 mod/search.php:28
+msgid "Remove term"
+msgstr ""
+
+#: mod/network.php:407
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non "
+"public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/network.php:410
+msgid "Messages in this group won't be send to these receivers."
+msgstr ""
+
+#: mod/network.php:538
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr ""
+
+#: mod/network.php:543
+msgid "Invalid contact."
+msgstr ""
+
+#: mod/network.php:816
+msgid "Commented Order"
+msgstr ""
+
+#: mod/network.php:819
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: mod/network.php:824
+msgid "Posted Order"
+msgstr ""
+
+#: mod/network.php:827
+msgid "Sort by Post Date"
+msgstr ""
+
+#: mod/network.php:838
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: mod/network.php:846
+msgid "New"
+msgstr ""
+
+#: mod/network.php:849
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: mod/network.php:857
+msgid "Shared Links"
+msgstr ""
+
+#: mod/network.php:860
+msgid "Interesting Links"
+msgstr ""
+
+#: mod/network.php:868
+msgid "Starred"
+msgstr ""
+
+#: mod/network.php:871
+msgid "Favourite Posts"
+msgstr ""
+
+#: mod/newmember.php:7
 msgid "Welcome to Friendica"
 msgstr ""
 
@@ -4253,7 +4804,7 @@ msgstr ""
 msgid "New Member Checklist"
 msgstr ""
 
-#: mod/newmember.php:12
+#: mod/newmember.php:10
 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 "
@@ -4261,33 +4812,33 @@ msgid ""
 "registration and then will quietly disappear."
 msgstr ""
 
-#: mod/newmember.php:14
+#: mod/newmember.php:11
 msgid "Getting Started"
 msgstr ""
 
-#: mod/newmember.php:18
+#: mod/newmember.php:13
 msgid "Friendica Walk-Through"
 msgstr ""
 
-#: mod/newmember.php:18
+#: mod/newmember.php:13
 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 ""
 
-#: mod/newmember.php:26
+#: mod/newmember.php:17
 msgid "Go to Your Settings"
 msgstr ""
 
-#: mod/newmember.php:26
+#: mod/newmember.php:17
 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 ""
 
-#: mod/newmember.php:28
+#: mod/newmember.php:18
 msgid ""
 "Review the other settings, particularly the privacy settings. An unpublished "
 "directory listing is like having an unlisted phone number. In general, you "
@@ -4295,81 +4846,81 @@ msgid ""
 "potential friends know exactly how to find you."
 msgstr ""
 
-#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700
+#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703
 msgid "Upload Profile Photo"
 msgstr ""
 
-#: mod/newmember.php:36
+#: mod/newmember.php:22
 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 ""
 
-#: mod/newmember.php:38
+#: mod/newmember.php:23
 msgid "Edit Your Profile"
 msgstr ""
 
-#: mod/newmember.php:38
+#: mod/newmember.php:23
 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 ""
 
-#: mod/newmember.php:40
+#: mod/newmember.php:24
 msgid "Profile Keywords"
 msgstr ""
 
-#: mod/newmember.php:40
+#: mod/newmember.php:24
 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 ""
 
-#: mod/newmember.php:44
+#: mod/newmember.php:26
 msgid "Connecting"
 msgstr ""
 
-#: mod/newmember.php:51
+#: mod/newmember.php:32
 msgid "Importing Emails"
 msgstr ""
 
-#: mod/newmember.php:51
+#: mod/newmember.php:32
 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 ""
 
-#: mod/newmember.php:53
+#: mod/newmember.php:35
 msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: mod/newmember.php:53
+#: mod/newmember.php:35
 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 ""
 
-#: mod/newmember.php:55
+#: mod/newmember.php:36
 msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: mod/newmember.php:55
+#: mod/newmember.php:36
 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 ""
 
-#: mod/newmember.php:57
+#: mod/newmember.php:37
 msgid "Finding New People"
 msgstr ""
 
-#: mod/newmember.php:57
+#: mod/newmember.php:37
 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 "
@@ -4378,4418 +4929,3829 @@ msgid ""
 "hours."
 msgstr ""
 
-#: mod/newmember.php:65
+#: mod/newmember.php:41
 msgid "Group Your Contacts"
 msgstr ""
 
-#: mod/newmember.php:65
+#: mod/newmember.php:41
 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 ""
 
-#: mod/newmember.php:68
+#: mod/newmember.php:44
 msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: mod/newmember.php:68
+#: mod/newmember.php:44
 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 ""
 
-#: mod/newmember.php:73
+#: mod/newmember.php:48
 msgid "Getting Help"
 msgstr ""
 
-#: mod/newmember.php:77
+#: mod/newmember.php:50
 msgid "Go to the Help Section"
 msgstr ""
 
-#: mod/newmember.php:77
+#: mod/newmember.php:50
 msgid ""
 "Our <strong>help</strong> pages may be consulted for detail on other program "
 "features and resources."
 msgstr ""
 
-#: mod/nogroup.php:65
-msgid "Contacts who are not members of a group"
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597
+#: mod/contacts.php:941
+#, php-format
+msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: mod/notify.php:65
-msgid "No more system notifications."
+#: mod/nogroup.php:46 mod/contacts.php:942
+msgid "Edit contact"
 msgstr ""
 
-#: mod/notify.php:69 mod/notifications.php:111
-msgid "System Notifications"
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
 msgstr ""
 
-#: mod/oexchange.php:21
-msgid "Post successful."
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
+#: mod/notifications.php:46 mod/notifications.php:182
+#: mod/notifications.php:229
+msgid "Discard"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
+#: mod/notifications.php:62 mod/notifications.php:181
+#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817
+#: mod/contacts.php:1002
+msgid "Ignore"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:31
-msgid "Couldn't fetch information for contact."
+#: mod/notifications.php:107
+msgid "Network Notifications"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch friends for contact."
+#: mod/notifications.php:113 mod/notify.php:72
+msgid "System Notifications"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
-msgid "Done"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:68
-msgid "success"
+#: mod/notifications.php:125
+msgid "Home Notifications"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:70
-msgid "failed"
+#: mod/notifications.php:154
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
-msgid "Keep this window open until done."
+#: mod/notifications.php:154
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: mod/p.php:9
-msgid "Not Extended"
+#: mod/notifications.php:166 mod/notifications.php:236
+msgid "Notification type: "
 msgstr ""
 
-#: mod/poke.php:196
-msgid "Poke/Prod"
+#: mod/notifications.php:169
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: mod/poke.php:197
-msgid "poke, prod or do other things to somebody"
+#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624
+msgid "Hide this contact from others"
 msgstr ""
 
-#: mod/poke.php:198
-msgid "Recipient"
+#: mod/notifications.php:175 mod/notifications.php:254
+msgid "Post a new friend activity"
 msgstr ""
 
-#: mod/poke.php:199
-msgid "Choose what you wish to do to recipient"
+#: mod/notifications.php:175 mod/notifications.php:254
+msgid "if applicable"
 msgstr ""
 
-#: mod/poke.php:202
-msgid "Make this post private"
+#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512
+msgid "Approve"
 msgstr ""
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
+#: mod/notifications.php:197
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:323
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: mod/notifications.php:198
+msgid "yes"
 msgstr ""
 
-#: mod/profile_photo.php:127
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: mod/notifications.php:198
+msgid "no"
 msgstr ""
 
-#: mod/profile_photo.php:137
-msgid "Unable to process image"
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
 msgstr ""
 
-#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181
+#: mod/notifications.php:200 mod/notifications.php:205
 #, php-format
-msgid "Image exceeds size limit of %s"
-msgstr ""
-
-#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218
-msgid "Unable to process image."
+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 ""
 
-#: mod/profile_photo.php:254
-msgid "Upload File:"
+#: mod/notifications.php:201
+#, 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 ""
 
-#: mod/profile_photo.php:255
-msgid "Select a profile:"
+#: mod/notifications.php:206
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
 msgstr ""
 
-#: mod/profile_photo.php:257
-msgid "Upload"
+#: mod/notifications.php:217
+msgid "Friend"
 msgstr ""
 
-#: mod/profile_photo.php:260
-msgid "or"
+#: mod/notifications.php:218
+msgid "Sharer"
 msgstr ""
 
-#: mod/profile_photo.php:260
-msgid "skip this step"
+#: mod/notifications.php:218
+msgid "Subscriber"
 msgstr ""
 
-#: mod/profile_photo.php:260
-msgid "select a photo from your photo albums"
+#: mod/notifications.php:274
+msgid "No introductions."
 msgstr ""
 
-#: mod/profile_photo.php:274
-msgid "Crop Image"
+#: mod/notifications.php:315
+msgid "Show unread"
 msgstr ""
 
-#: mod/profile_photo.php:275
-msgid "Please adjust the image cropping for optimum viewing."
+#: mod/notifications.php:315
+msgid "Show all"
 msgstr ""
 
-#: mod/profile_photo.php:277
-msgid "Done Editing"
+#: mod/notifications.php:321
+#, php-format
+msgid "No more %s notifications."
 msgstr ""
 
-#: mod/profile_photo.php:313
-msgid "Image uploaded successfully."
+#: mod/notify.php:68
+msgid "No more system notifications."
 msgstr ""
 
-#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257
-msgid "Image upload failed."
+#: mod/oexchange.php:24
+msgid "Post successful."
 msgstr ""
 
-#: mod/profperm.php:20 mod/group.php:76 index.php:406
-msgid "Permission denied"
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: mod/profperm.php:26 mod/profperm.php:57
-msgid "Invalid profile identifier."
+#: mod/openid.php:60
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: mod/profperm.php:103
-msgid "Profile Visibility Editor"
+#: mod/ostatus_subscribe.php:16
+msgid "Subscribing to OStatus contacts"
 msgstr ""
 
-#: mod/profperm.php:107 mod/group.php:262
-msgid "Click on a contact to add or remove."
+#: mod/ostatus_subscribe.php:27
+msgid "No contact provided."
 msgstr ""
 
-#: mod/profperm.php:116
-msgid "Visible To"
+#: mod/ostatus_subscribe.php:33
+msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: mod/profperm.php:132
-msgid "All Contacts (with secure profile access)"
+#: mod/ostatus_subscribe.php:42
+msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: mod/regmod.php:58
-msgid "Account approved."
+#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46
+msgid "Done"
 msgstr ""
 
-#: mod/regmod.php:95
-#, php-format
-msgid "Registration revoked for %s"
+#: mod/ostatus_subscribe.php:70
+msgid "success"
 msgstr ""
 
-#: mod/regmod.php:107
-msgid "Please login."
+#: mod/ostatus_subscribe.php:72
+msgid "failed"
 msgstr ""
 
-#: mod/removeme.php:52 mod/removeme.php:55
-msgid "Remove My Account"
+#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52
+msgid "Keep this window open until done."
 msgstr ""
 
-#: mod/removeme.php:53
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: mod/p.php:12
+msgid "Not Extended"
 msgstr ""
 
-#: mod/removeme.php:54
-msgid "Please enter your password for verification:"
+#: mod/photos.php:96 mod/photos.php:1902
+msgid "Recent Photos"
 msgstr ""
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
+#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904
+msgid "Upload New Photos"
 msgstr ""
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
+#: mod/photos.php:114 mod/settings.php:38
+msgid "everybody"
 msgstr ""
 
-#: mod/subthread.php:104
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: mod/photos.php:178
+msgid "Contact information unavailable"
 msgstr ""
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: mod/photos.php:199
+msgid "Album not found."
 msgstr ""
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274
+msgid "Delete Album"
 msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
+#: mod/photos.php:242
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: mod/tagrm.php:43
-msgid "Tag removed"
+#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600
+msgid "Delete Photo"
 msgstr ""
 
-#: mod/tagrm.php:82
-msgid "Remove Item Tag"
+#: mod/photos.php:334
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: mod/tagrm.php:84
-msgid "Select a tag to remove: "
+#: mod/photos.php:715
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: mod/uimport.php:51 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: mod/photos.php:715
+msgid "a photo"
 msgstr ""
 
-#: mod/uimport.php:66 mod/register.php:295
-msgid "Import"
+#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155
+#, php-format
+msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: mod/uimport.php:68
-msgid "Move account"
+#: mod/photos.php:823
+msgid "Image file is empty."
 msgstr ""
 
-#: mod/uimport.php:69
-msgid "You can import an account from another Friendica server."
+#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164
+msgid "Unable to process image."
 msgstr ""
 
-#: mod/uimport.php:70
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also "
-"to inform your friends that you moved here."
+#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314
+msgid "Image upload failed."
 msgstr ""
 
-#: mod/uimport.php:71
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
+#: mod/photos.php:990
+msgid "No photos selected"
 msgstr ""
 
-#: mod/uimport.php:72
-msgid "Account file"
+#: mod/photos.php:1093 mod/videos.php:311
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: mod/uimport.php:72
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: mod/photos.php:1153
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
+#: mod/photos.php:1190
+msgid "Upload Photos"
 msgstr ""
 
-#: mod/viewcontacts.php:75
-msgid "No contacts."
+#: mod/photos.php:1194 mod/photos.php:1269
+msgid "New album name: "
 msgstr ""
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
+#: mod/photos.php:1195
+msgid "or existing album name: "
 msgstr ""
 
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
-#: mod/wall_upload.php:150 mod/wall_upload.php:153
-msgid "Invalid request."
+#: mod/photos.php:1196
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308
+msgid "Show to Groups"
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
+msgid "Show to Contacts"
 msgstr ""
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
+#: mod/photos.php:1209
+msgid "Private Photo"
 msgstr ""
 
-#: mod/wall_attach.php:158 mod/wall_attach.php:174
-msgid "File upload failed."
+#: mod/photos.php:1210
+msgid "Public Photo"
 msgstr ""
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:106
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/photos.php:1280
+msgid "Edit Album"
 msgstr ""
 
-#: mod/wallmessage.php:50 mod/message.php:60
-msgid "No recipient selected."
+#: mod/photos.php:1285
+msgid "Show Newest First"
 msgstr ""
 
-#: mod/wallmessage.php:53
-msgid "Unable to check your home location."
+#: mod/photos.php:1287
+msgid "Show Oldest First"
 msgstr ""
 
-#: mod/wallmessage.php:56 mod/message.php:67
-msgid "Message could not be sent."
+#: mod/photos.php:1316 mod/photos.php:1887
+msgid "View Photo"
 msgstr ""
 
-#: mod/wallmessage.php:59 mod/message.php:70
-msgid "Message collection failure."
+#: mod/photos.php:1361
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: mod/wallmessage.php:62 mod/message.php:73
-msgid "Message sent."
+#: mod/photos.php:1363
+msgid "Photo not available"
 msgstr ""
 
-#: mod/wallmessage.php:80 mod/wallmessage.php:89
-msgid "No recipient."
+#: mod/photos.php:1424
+msgid "View photo"
 msgstr ""
 
-#: mod/wallmessage.php:126 mod/message.php:322
-msgid "Send Private Message"
+#: mod/photos.php:1424
+msgid "Edit photo"
 msgstr ""
 
-#: mod/wallmessage.php:127
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+#: mod/photos.php:1425
+msgid "Use as profile photo"
 msgstr ""
 
-#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510
-msgid "To:"
+#: mod/photos.php:1450
+msgid "View Full Size"
 msgstr ""
 
-#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512
-msgid "Subject:"
+#: mod/photos.php:1540
+msgid "Tags: "
 msgstr ""
 
-#: mod/babel.php:16
-msgid "Source (bbcode) text:"
+#: mod/photos.php:1543
+msgid "[Remove any tag]"
 msgstr ""
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: mod/photos.php:1586
+msgid "New album name"
 msgstr ""
 
-#: mod/babel.php:31
-msgid "Source input: "
+#: mod/photos.php:1587
+msgid "Caption"
 msgstr ""
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: mod/photos.php:1588
+msgid "Add a Tag"
 msgstr ""
 
-#: mod/babel.php:39
-msgid "bb2html: "
+#: mod/photos.php:1588
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
+#: mod/photos.php:1589
+msgid "Do not rotate"
 msgstr ""
 
-#: mod/babel.php:47
-msgid "bb2md: "
+#: mod/photos.php:1590
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
+#: mod/photos.php:1591
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
+#: mod/photos.php:1606
+msgid "Private photo"
 msgstr ""
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
+#: mod/photos.php:1607
+msgid "Public photo"
 msgstr ""
 
-#: mod/babel.php:65
-msgid "Source input (Diaspora format): "
+#: mod/photos.php:1816
+msgid "Map"
 msgstr ""
 
-#: mod/babel.php:69
-msgid "diaspora2bb: "
+#: mod/photos.php:1893 mod/videos.php:395
+msgid "View Album"
 msgstr ""
 
-#: mod/cal.php:271 mod/events.php:375
-msgid "View"
+#: mod/ping.php:273
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/cal.php:272 mod/events.php:377
-msgid "Previous"
+#: mod/ping.php:288
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
-msgid "Next"
+#: mod/ping.php:303
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/cal.php:282 mod/events.php:387
-msgid "list"
+#: mod/poke.php:197
+msgid "Poke/Prod"
 msgstr ""
 
-#: mod/cal.php:292
-msgid "User not found"
+#: mod/poke.php:198
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: mod/cal.php:308
-msgid "This calendar format is not supported"
+#: mod/poke.php:199
+msgid "Recipient"
 msgstr ""
 
-#: mod/cal.php:310
-msgid "No exportable data found"
+#: mod/poke.php:200
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: mod/cal.php:325
-msgid "calendar"
+#: mod/poke.php:203
+msgid "Make this post private"
 msgstr ""
 
-#: mod/community.php:23
-msgid "Not available."
+#: mod/profile.php:176
+msgid "Tips for New Members"
 msgstr ""
 
-#: mod/community.php:50 mod/search.php:219
-msgid "No results."
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
 msgstr ""
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
-#: mod/profiles.php:182 mod/profiles.php:619
-msgid "Profile not found."
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+#: mod/profperm.php:118
+msgid "Visible To"
 msgstr ""
 
-#: mod/dfrn_confirm.php:244
-msgid "Response from remote site was not understood."
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
-msgid "Unexpected response from remote site: "
+#: mod/register.php:95
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/dfrn_confirm.php:267
-msgid "Confirmation completed successfully."
+#: mod/register.php:100
+#, 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 ""
 
-#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
-msgid "Remote site reported: "
+#: mod/register.php:107
+msgid "Registration successful."
 msgstr ""
 
-#: mod/dfrn_confirm.php:281
-msgid "Temporary failure. Please wait and try again."
+#: mod/register.php:113
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/dfrn_confirm.php:288
-msgid "Introduction failed or was revoked."
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/dfrn_confirm.php:418
-msgid "Unable to set contact photo."
+#: mod/register.php:200 mod/uimport.php:53
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: mod/dfrn_confirm.php:559
-#, php-format
-msgid "No user record found for '%s' "
+#: mod/register.php:228
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/dfrn_confirm.php:569
-msgid "Our site encryption key is apparently messed up."
+#: mod/register.php:229
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: mod/dfrn_confirm.php:580
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: mod/register.php:230
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/dfrn_confirm.php:602
-msgid "Contact record was not found for you on our site."
+#: mod/register.php:244
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/dfrn_confirm.php:616
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: mod/register.php:269
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/dfrn_confirm.php:636
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+#: mod/register.php:269
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/dfrn_confirm.php:647
-msgid "Unable to set your contact credentials on our system."
+#: mod/register.php:270
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/dfrn_confirm.php:709
-msgid "Unable to update your contact profile details on our system"
+#: mod/register.php:271
+msgid "Your invitation ID: "
 msgstr ""
 
-#: mod/dfrn_confirm.php:781
-#, php-format
-msgid "%1$s has joined %2$s"
+#: mod/register.php:274 mod/admin.php:1062
+msgid "Registration"
 msgstr ""
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
+#: mod/register.php:282
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/register.php:283
+msgid "Your Email Address: "
 msgstr ""
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/register.php:285 mod/settings.php:1279
+msgid "New Password:"
 msgstr ""
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
+#: mod/register.php:285
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/register.php:286 mod/settings.php:1280
+msgid "Confirm:"
+msgstr ""
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
+#: mod/register.php:287
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@$sitename</"
+"strong>'."
 msgstr ""
 
-#: mod/dfrn_request.php:225
-msgid "Unrecoverable protocol error."
+#: mod/register.php:288
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/dfrn_request.php:253
-msgid "Profile unavailable."
+#: mod/register.php:297 mod/uimport.php:68
+msgid "Import"
 msgstr ""
 
-#: mod/dfrn_request.php:280
-#, php-format
-msgid "%s has received too many connection requests today."
+#: mod/register.php:298
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/dfrn_request.php:281
-msgid "Spam protection measures have been invoked."
+#: mod/removeme.php:54 mod/removeme.php:57
+msgid "Remove My Account"
 msgstr ""
 
-#: mod/dfrn_request.php:282
-msgid "Friends are advised to please try again in 24 hours."
+#: mod/removeme.php:55
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: mod/dfrn_request.php:344
-msgid "Invalid locator"
+#: mod/removeme.php:56
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: mod/dfrn_request.php:353
-msgid "Invalid email address."
+#: mod/repair_ostatus.php:16
+msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: mod/dfrn_request.php:378
-msgid "This account has not been configured for email. Request failed."
+#: mod/repair_ostatus.php:32
+msgid "Error"
 msgstr ""
 
-#: mod/dfrn_request.php:481
-msgid "You have already introduced yourself here."
+#: mod/search.php:103
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: mod/dfrn_request.php:485
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: mod/search.php:127
+msgid "Too Many Requests"
 msgstr ""
 
-#: mod/dfrn_request.php:506
-msgid "Invalid profile URL."
+#: mod/search.php:128
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
+#: mod/search.php:228
+#, php-format
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
+#: mod/suggest.php:29
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: mod/dfrn_request.php:687
+#: mod/suggest.php:73
 msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
+#: mod/suggest.php:86 mod/suggest.php:106
+msgid "Ignore/Hide"
 msgstr ""
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
+#: mod/tagrm.php:45
+msgid "Tag removed"
 msgstr ""
 
-#: mod/dfrn_request.php:716
-#, php-format
-msgid "Welcome home %s."
+#: mod/tagrm.php:84
+msgid "Remove Item Tag"
 msgstr ""
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: mod/tagrm.php:86
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: mod/dfrn_request.php:848
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: mod/uexport.php:38
+msgid "Export account"
 msgstr ""
 
-#: mod/dfrn_request.php:872
-#, php-format
+#: mod/uexport.php:38
 msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
-"\">follow this link to find a public Friendica site and join us today</a>."
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
 msgstr ""
 
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
+#: mod/uexport.php:39
+msgid "Export all"
 msgstr ""
 
-#: mod/dfrn_request.php:878
+#: mod/uexport.php:39
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
 msgstr ""
 
-#: mod/dfrn_request.php:879 mod/follow.php:112
-msgid "Please answer the following:"
+#: mod/uexport.php:46 mod/settings.php:97
+msgid "Export personal data"
 msgstr ""
 
-#: mod/dfrn_request.php:880 mod/follow.php:113
-#, php-format
-msgid "Does %s know you?"
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: mod/dfrn_request.php:884 mod/follow.php:114
-msgid "Add a personal note:"
+#: mod/videos.php:126
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
+#: mod/videos.php:131
+msgid "Delete Video"
 msgstr ""
 
-#: mod/dfrn_request.php:889
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: mod/videos.php:210
+msgid "No videos selected"
 msgstr ""
 
-#: mod/dfrn_request.php:890 mod/follow.php:120
-msgid "Your Identity Address:"
+#: mod/videos.php:404
+msgid "Recent Videos"
 msgstr ""
 
-#: mod/dfrn_request.php:893 mod/follow.php:19
-msgid "Submit Request"
+#: mod/videos.php:406
+msgid "Upload New Videos"
 msgstr ""
 
-#: mod/dirfind.php:37
-#, php-format
-msgid "People Search - %s"
+#: mod/viewcontacts.php:78
+msgid "No contacts."
 msgstr ""
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "Forum Search - %s"
+#: mod/viewsrc.php:8
+msgid "Access denied."
 msgstr ""
 
-#: mod/events.php:93 mod/events.php:95
-msgid "Event can not end before it has started."
+#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
+#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
+#: mod/wall_upload.php:150 mod/wall_upload.php:153
+msgid "Invalid request."
 msgstr ""
 
-#: mod/events.php:102 mod/events.php:104
-msgid "Event title and start time are required."
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: mod/events.php:376
-msgid "Create New Event"
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: mod/events.php:481
-msgid "Event details"
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: mod/events.php:482
-msgid "Starting date and Title are required."
+#: mod/wall_attach.php:160 mod/wall_attach.php:176
+msgid "File upload failed."
 msgstr ""
 
-#: mod/events.php:483 mod/events.php:484
-msgid "Event Starts:"
+#: mod/wallmessage.php:44 mod/wallmessage.php:108
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
-msgid "Required"
+#: mod/wallmessage.php:55
+msgid "Unable to check your home location."
 msgstr ""
 
-#: mod/events.php:485 mod/events.php:501
-msgid "Finish date/time is not known or not relevant"
+#: mod/wallmessage.php:82 mod/wallmessage.php:91
+msgid "No recipient."
 msgstr ""
 
-#: mod/events.php:487 mod/events.php:488
-msgid "Event Finishes:"
+#: mod/wallmessage.php:129
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: mod/events.php:489 mod/events.php:502
-msgid "Adjust for viewer timezone"
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
 
-#: mod/events.php:491
-msgid "Description:"
+#: mod/dfrn_request.php:103
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: mod/events.php:495 mod/events.php:497
-msgid "Title:"
+#: mod/dfrn_request.php:126 mod/dfrn_request.php:528
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: mod/events.php:498 mod/events.php:499
-msgid "Share this event"
+#: mod/dfrn_request.php:131 mod/dfrn_request.php:533
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: mod/events.php:528
-msgid "Failed to remove event"
+#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: mod/events.php:530
-msgid "Event removed"
-msgstr ""
+#: mod/dfrn_request.php:138 mod/dfrn_request.php:540
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/follow.php:30
-msgid "You already added this contact."
+#: mod/dfrn_request.php:182
+msgid "Introduction complete."
 msgstr ""
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/dfrn_request.php:227
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/dfrn_request.php:255
+msgid "Profile unavailable."
 msgstr ""
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/dfrn_request.php:282
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: mod/follow.php:186
-msgid "Contact added"
+#: mod/dfrn_request.php:283
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: mod/friendica.php:68
-msgid "This is Friendica, version"
+#: mod/dfrn_request.php:284
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: mod/friendica.php:69
-msgid "running at web location"
+#: mod/dfrn_request.php:346
+msgid "Invalid locator"
 msgstr ""
 
-#: mod/friendica.php:73
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+#: mod/dfrn_request.php:355
+msgid "Invalid email address."
 msgstr ""
 
-#: mod/friendica.php:77
-msgid "Bug reports and issues: please visit"
+#: mod/dfrn_request.php:380
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: mod/friendica.php:77
-msgid "the bugtracker at github"
+#: mod/dfrn_request.php:483
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: mod/friendica.php:80
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: mod/dfrn_request.php:487
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: mod/friendica.php:94
-msgid "Installed plugins/addons/apps:"
+#: mod/dfrn_request.php:508
+msgid "Invalid profile URL."
 msgstr ""
 
-#: mod/friendica.php:108
-msgid "No installed plugins/addons/apps"
+#: mod/dfrn_request.php:593 mod/contacts.php:221
+msgid "Failed to update contact record."
 msgstr ""
 
-#: mod/friendica.php:113
-msgid "On this server the following remote servers are blocked."
+#: mod/dfrn_request.php:614
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
-msgid "Reason for the block"
+#: mod/dfrn_request.php:656
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: mod/group.php:29
-msgid "Group created."
+#: mod/dfrn_request.php:677
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: mod/group.php:35
-msgid "Could not create group."
+#: mod/dfrn_request.php:687
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: mod/group.php:49 mod/group.php:154
-msgid "Group not found."
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
+msgid "Confirm"
 msgstr ""
 
-#: mod/group.php:63
-msgid "Group name changed."
+#: mod/dfrn_request.php:713
+msgid "Hide this contact"
 msgstr ""
 
-#: mod/group.php:93
-msgid "Save Group"
+#: mod/dfrn_request.php:716
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: mod/group.php:98
-msgid "Create a group of contacts/friends."
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/group.php:123
-msgid "Group removed."
+#: mod/dfrn_request.php:848
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: mod/group.php:125
-msgid "Unable to remove group."
+#: mod/dfrn_request.php:872
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
+"\">follow this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: mod/group.php:189
-msgid "Delete Group"
+#: mod/dfrn_request.php:877
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: mod/group.php:195
-msgid "Group Editor"
+#: mod/dfrn_request.php:878
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: mod/group.php:200
-msgid "Edit Group Name"
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: mod/group.php:210
-msgid "Members"
+#: mod/dfrn_request.php:889
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: mod/group.php:226
-msgid "Remove Contact"
+#: mod/item.php:118
+msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/group.php:250
-msgid "Add Contact"
+#: mod/item.php:345
+msgid "Empty post discarded."
 msgstr ""
 
-#: mod/manage.php:151
-msgid "Manage Identities and/or Pages"
+#: mod/item.php:904
+msgid "System error. Post not saved."
 msgstr ""
 
-#: mod/manage.php:152
+#: mod/item.php:995
+#, php-format
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/manage.php:153
-msgid "Select an identity to manage: "
+#: mod/item.php:997
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/message.php:64
-msgid "Unable to locate contact information."
+#: mod/item.php:998
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: mod/message.php:204
-msgid "Do you really want to delete this message?"
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: mod/message.php:224
-msgid "Message deleted."
+#: mod/regmod.php:60
+msgid "Account approved."
 msgstr ""
 
-#: mod/message.php:255
-msgid "Conversation removed."
+#: mod/regmod.php:88
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: mod/message.php:364
-msgid "No messages."
+#: mod/regmod.php:100
+msgid "Please login."
 msgstr ""
 
-#: mod/message.php:403
-msgid "Message not available."
+#: mod/uimport.php:70
+msgid "Move account"
 msgstr ""
 
-#: mod/message.php:477
-msgid "Delete message"
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
+#: mod/uimport.php:72
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
-#: mod/message.php:505
+#: mod/uimport.php:73
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
 msgstr ""
 
-#: mod/message.php:509
-msgid "Send Reply"
+#: mod/uimport.php:74
+msgid "Account file"
 msgstr ""
 
-#: mod/message.php:561
-#, php-format
-msgid "Unknown sender - %s"
+#: mod/uimport.php:74
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: mod/message.php:563
-#, php-format
-msgid "You and %s"
+#: mod/admin.php:97
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/message.php:565
-#, php-format
-msgid "%s and You"
+#: mod/admin.php:166 mod/admin.php:1060
+msgid "Site"
 msgstr ""
 
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
+#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520
+msgid "Users"
 msgstr ""
 
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:197 mod/search.php:25
-msgid "Remove term"
+#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76
+msgid "Plugins"
 msgstr ""
 
-#: mod/network.php:404
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non "
-"public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:407
-msgid "Messages in this group won't be send to these receivers."
+#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948
+msgid "Themes"
 msgstr ""
 
-#: mod/network.php:535
-msgid "Private messages to this person are at risk of public disclosure."
+#: mod/admin.php:170 mod/settings.php:54
+msgid "Additional features"
 msgstr ""
 
-#: mod/network.php:540
-msgid "Invalid contact."
+#: mod/admin.php:171
+msgid "DB updates"
 msgstr ""
 
-#: mod/network.php:813
-msgid "Commented Order"
+#: mod/admin.php:172 mod/admin.php:513
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/network.php:816
-msgid "Sort by Comment Date"
+#: mod/admin.php:173 mod/admin.php:289
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/network.php:821
-msgid "Posted Order"
+#: mod/admin.php:174 mod/admin.php:479
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/network.php:824
-msgid "Sort by Post Date"
+#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022
+msgid "Logs"
 msgstr ""
 
-#: mod/network.php:835
-msgid "Posts that mention or involve you"
+#: mod/admin.php:189 mod/admin.php:2090
+msgid "View Logs"
 msgstr ""
 
-#: mod/network.php:843
-msgid "New"
+#: mod/admin.php:190
+msgid "probe address"
 msgstr ""
 
-#: mod/network.php:846
-msgid "Activity Stream - by date"
+#: mod/admin.php:191
+msgid "check webfinger"
 msgstr ""
 
-#: mod/network.php:854
-msgid "Shared Links"
+#: mod/admin.php:198
+msgid "Plugin Features"
 msgstr ""
 
-#: mod/network.php:857
-msgid "Interesting Links"
+#: mod/admin.php:200
+msgid "diagnostics"
 msgstr ""
 
-#: mod/network.php:865
-msgid "Starred"
+#: mod/admin.php:201
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/network.php:868
-msgid "Favourite Posts"
+#: mod/admin.php:280
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
+#: mod/admin.php:281 mod/admin.php:294
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: mod/admin.php:282
+msgid "Delete domain"
 msgstr ""
 
-#: mod/photos.php:94 mod/photos.php:1900
-msgid "Recent Photos"
+#: mod/admin.php:282
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
-msgid "Upload New Photos"
+#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592
+#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684
+#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089
+msgid "Administration"
 msgstr ""
 
-#: mod/photos.php:112 mod/settings.php:36
-msgid "everybody"
+#: mod/admin.php:290
+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/photos.php:176
-msgid "Contact information unavailable"
+#: mod/admin.php:291
+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/photos.php:197
-msgid "Album not found."
+#: mod/admin.php:292
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
-msgid "Delete Album"
+#: mod/admin.php:293
+msgid "Server Domain"
 msgstr ""
 
-#: mod/photos.php:240
-msgid "Do you really want to delete this photo album and all its photos?"
+#: mod/admin.php:293
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 msgstr ""
 
-#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
-msgid "Delete Photo"
+#: mod/admin.php:294
+msgid "Block reason"
 msgstr ""
 
-#: mod/photos.php:332
-msgid "Do you really want to delete this photo?"
+#: mod/admin.php:295
+msgid "Add Entry"
 msgstr ""
 
-#: mod/photos.php:713
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: mod/admin.php:296
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/photos.php:713
-msgid "a photo"
+#: mod/admin.php:297
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/photos.php:821
-msgid "Image file is empty."
+#: mod/admin.php:300
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/photos.php:988
-msgid "No photos selected"
+#: mod/admin.php:303
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/photos.php:1091 mod/videos.php:309
-msgid "Access to this item is restricted."
+#: mod/admin.php:328
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/photos.php:1151
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: mod/admin.php:344
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/photos.php:1188
-msgid "Upload Photos"
+#: mod/admin.php:409
+msgid "unknown"
 msgstr ""
 
-#: mod/photos.php:1192 mod/photos.php:1267
-msgid "New album name: "
+#: mod/admin.php:472
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: mod/photos.php:1193
-msgid "or existing album name: "
+#: mod/admin.php:473
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/photos.php:1194
-msgid "Do not show a status post for this upload"
+#: mod/admin.php:485
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr ""
 
-#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
-msgid "Show to Groups"
+#: mod/admin.php:515
+msgid "ID"
 msgstr ""
 
-#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
-msgid "Show to Contacts"
+#: mod/admin.php:516
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/photos.php:1207
-msgid "Private Photo"
+#: mod/admin.php:517
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/photos.php:1208
-msgid "Public Photo"
+#: mod/admin.php:519
+msgid "Created"
 msgstr ""
 
-#: mod/photos.php:1278
-msgid "Edit Album"
+#: mod/admin.php:520
+msgid "Last Tried"
 msgstr ""
 
-#: mod/photos.php:1283
-msgid "Show Newest First"
+#: mod/admin.php:521
+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/photos.php:1285
-msgid "Show Oldest First"
+#: mod/admin.php:546
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php include/"
+"dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/photos.php:1314 mod/photos.php:1885
-msgid "View Photo"
+#: mod/admin.php:555
+msgid ""
+"The database update failed. Please run \"php include/dbstructure.php update"
+"\" from the command line and have a look at the errors that might appear."
 msgstr ""
 
-#: mod/photos.php:1359
-msgid "Permission denied. Access to this item may be restricted."
+#: mod/admin.php:560 mod/admin.php:1453
+msgid "Normal Account"
 msgstr ""
 
-#: mod/photos.php:1361
-msgid "Photo not available"
+#: mod/admin.php:561 mod/admin.php:1454
+msgid "Soapbox Account"
 msgstr ""
 
-#: mod/photos.php:1422
-msgid "View photo"
+#: mod/admin.php:562 mod/admin.php:1455
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: mod/photos.php:1422
-msgid "Edit photo"
+#: mod/admin.php:563 mod/admin.php:1456
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/photos.php:1423
-msgid "Use as profile photo"
+#: mod/admin.php:564
+msgid "Blog Account"
 msgstr ""
 
-#: mod/photos.php:1448
-msgid "View Full Size"
+#: mod/admin.php:565
+msgid "Private Forum"
 msgstr ""
 
-#: mod/photos.php:1538
-msgid "Tags: "
+#: mod/admin.php:587
+msgid "Message queues"
 msgstr ""
 
-#: mod/photos.php:1541
-msgid "[Remove any tag]"
+#: mod/admin.php:593
+msgid "Summary"
 msgstr ""
 
-#: mod/photos.php:1584
-msgid "New album name"
+#: mod/admin.php:595
+msgid "Registered users"
 msgstr ""
 
-#: mod/photos.php:1585
-msgid "Caption"
+#: mod/admin.php:597
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/photos.php:1586
-msgid "Add a Tag"
+#: mod/admin.php:598
+msgid "Version"
 msgstr ""
 
-#: mod/photos.php:1586
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/admin.php:603
+msgid "Active plugins"
 msgstr ""
 
-#: mod/photos.php:1587
-msgid "Do not rotate"
+#: mod/admin.php:628
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/photos.php:1588
-msgid "Rotate CW (right)"
+#: mod/admin.php:920
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/photos.php:1589
-msgid "Rotate CCW (left)"
+#: mod/admin.php:948 mod/settings.php:944
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/photos.php:1604
-msgid "Private photo"
+#: mod/admin.php:977
+msgid "No community page"
 msgstr ""
 
-#: mod/photos.php:1605
-msgid "Public photo"
+#: mod/admin.php:978
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/photos.php:1814
-msgid "Map"
+#: mod/admin.php:979
+msgid "Global community page"
 msgstr ""
 
-#: mod/photos.php:1891 mod/videos.php:393
-msgid "View Album"
+#: mod/admin.php:984 mod/contacts.php:541
+msgid "Never"
 msgstr ""
 
-#: mod/probe.php:10 mod/webfinger.php:9
-msgid "Only logged in users are permitted to perform a probing."
+#: mod/admin.php:985
+msgid "At post arrival"
 msgstr ""
 
-#: mod/profile.php:175
-msgid "Tips for New Members"
+#: mod/admin.php:993 mod/contacts.php:568
+msgid "Disabled"
 msgstr ""
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
+#: mod/admin.php:995
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/profiles.php:54 mod/profiles.php:90
-msgid "Profile-"
+#: mod/admin.php:996
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/profiles.php:73 mod/profiles.php:118
-msgid "New profile created."
+#: mod/admin.php:1000
+msgid "One month"
 msgstr ""
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
+#: mod/admin.php:1001
+msgid "Three months"
 msgstr ""
 
-#: mod/profiles.php:192
-msgid "Profile Name is required."
+#: mod/admin.php:1002
+msgid "Half a year"
 msgstr ""
 
-#: mod/profiles.php:332
-msgid "Marital Status"
+#: mod/admin.php:1003
+msgid "One year"
 msgstr ""
 
-#: mod/profiles.php:336
-msgid "Romantic Partner"
+#: mod/admin.php:1008
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/profiles.php:348
-msgid "Work/Employment"
+#: mod/admin.php:1031
+msgid "Closed"
 msgstr ""
 
-#: mod/profiles.php:351
-msgid "Religion"
+#: mod/admin.php:1032
+msgid "Requires approval"
 msgstr ""
 
-#: mod/profiles.php:355
-msgid "Political Views"
+#: mod/admin.php:1033
+msgid "Open"
 msgstr ""
 
-#: mod/profiles.php:359
-msgid "Gender"
+#: mod/admin.php:1037
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/profiles.php:363
-msgid "Sexual Preference"
+#: mod/admin.php:1038
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/profiles.php:367
-msgid "XMPP"
+#: mod/admin.php:1039
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/profiles.php:371
-msgid "Homepage"
+#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023
+#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793
+#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006
+#: mod/settings.php:1272
+msgid "Save Settings"
 msgstr ""
 
-#: mod/profiles.php:375 mod/profiles.php:695
-msgid "Interests"
+#: mod/admin.php:1063
+msgid "File upload"
 msgstr ""
 
-#: mod/profiles.php:379
-msgid "Address"
+#: mod/admin.php:1064
+msgid "Policies"
 msgstr ""
 
-#: mod/profiles.php:386 mod/profiles.php:691
-msgid "Location"
+#: mod/admin.php:1066
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/profiles.php:471
-msgid "Profile updated."
+#: mod/admin.php:1067
+msgid "Performance"
 msgstr ""
 
-#: mod/profiles.php:564
-msgid " and "
+#: mod/admin.php:1068
+msgid "Worker"
 msgstr ""
 
-#: mod/profiles.php:573
-msgid "public profile"
+#: mod/admin.php:1069
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/admin.php:1072
+msgid "Site name"
 msgstr ""
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/admin.php:1073
+msgid "Host name"
 msgstr ""
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/admin.php:1074
+msgid "Sender Email"
 msgstr ""
 
-#: mod/profiles.php:637
-msgid "Hide contacts and friends:"
+#: mod/admin.php:1074
+msgid ""
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/profiles.php:642
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/admin.php:1075
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/profiles.php:667
-msgid "Show more profile fields:"
+#: mod/admin.php:1076
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/profiles.php:679
-msgid "Profile Actions"
+#: mod/admin.php:1076
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/profiles.php:680
-msgid "Edit Profile Details"
+#: mod/admin.php:1077
+msgid "Touch icon"
 msgstr ""
 
-#: mod/profiles.php:682
-msgid "Change Profile Photo"
+#: mod/admin.php:1077
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/profiles.php:683
-msgid "View this profile"
+#: mod/admin.php:1078
+msgid "Additional Info"
 msgstr ""
 
-#: mod/profiles.php:685
-msgid "Create a new profile using these settings"
+#: mod/admin.php:1078
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
 msgstr ""
 
-#: mod/profiles.php:686
-msgid "Clone this profile"
+#: mod/admin.php:1079
+msgid "System language"
 msgstr ""
 
-#: mod/profiles.php:687
-msgid "Delete this profile"
+#: mod/admin.php:1080
+msgid "System theme"
 msgstr ""
 
-#: mod/profiles.php:689
-msgid "Basic information"
+#: mod/admin.php:1080
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/profiles.php:690
-msgid "Profile picture"
+#: mod/admin.php:1081
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/profiles.php:692
-msgid "Preferences"
+#: mod/admin.php:1081
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/profiles.php:693
-msgid "Status information"
+#: mod/admin.php:1082
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/profiles.php:694
-msgid "Additional information"
+#: mod/admin.php:1082
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/profiles.php:697
-msgid "Relation"
+#: mod/admin.php:1083
+msgid "Force SSL"
 msgstr ""
 
-#: mod/profiles.php:701
-msgid "Your Gender:"
+#: mod/admin.php:1083
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/profiles.php:702
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/admin.php:1084
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/profiles.php:704
-msgid "Example: fishing photography software"
+#: mod/admin.php:1084
+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:709
-msgid "Profile Name:"
+#: mod/admin.php:1085
+msgid "Single user instance"
 msgstr ""
 
-#: mod/profiles.php:711
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: mod/admin.php:1085
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/profiles.php:712
-msgid "Your Full Name:"
+#: mod/admin.php:1086
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/profiles.php:713
-msgid "Title/Description:"
+#: mod/admin.php:1086
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/profiles.php:716
-msgid "Street Address:"
+#: mod/admin.php:1087
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/profiles.php:717
-msgid "Locality/City:"
+#: mod/admin.php:1087
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/profiles.php:718
-msgid "Region/State:"
+#: mod/admin.php:1088
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/profiles.php:719
-msgid "Postal/Zip Code:"
+#: mod/admin.php:1088
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Country:"
+#: mod/admin.php:1090
+msgid "Register policy"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Who: (if applicable)"
+#: mod/admin.php:1091
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:1091
+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/profiles.php:725
-msgid "Since [date]:"
+#: mod/admin.php:1092
+msgid "Register text"
 msgstr ""
 
-#: mod/profiles.php:727
-msgid "Tell us about yourself..."
+#: mod/admin.php:1092
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/profiles.php:728
-msgid "XMPP (Jabber) address:"
+#: mod/admin.php:1093
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/profiles.php:728
+#: mod/admin.php:1093
 msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/profiles.php:729
-msgid "Homepage URL:"
+#: mod/admin.php:1094
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "Religious Views:"
+#: mod/admin.php:1094
+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:733
-msgid "Public Keywords:"
+#: mod/admin.php:1095
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/profiles.php:733
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/admin.php:1095
+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:734
-msgid "Private Keywords:"
+#: mod/admin.php:1096
+msgid "Block public"
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/admin.php:1096
+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:737
-msgid "Musical interests"
+#: mod/admin.php:1097
+msgid "Force publish"
 msgstr ""
 
-#: mod/profiles.php:738
-msgid "Books, literature"
+#: mod/admin.php:1097
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/profiles.php:739
-msgid "Television"
+#: mod/admin.php:1098
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/profiles.php:740
-msgid "Film/dance/culture/entertainment"
+#: mod/admin.php:1098
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "Hobbies/Interests"
+#: mod/admin.php:1099
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/profiles.php:742
-msgid "Love/romance"
+#: mod/admin.php:1099
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: mod/profiles.php:743
-msgid "Work/employment"
+#: mod/admin.php:1100
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/profiles.php:744
-msgid "School/education"
+#: mod/admin.php:1100
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/profiles.php:745
-msgid "Contact information and Social Networks"
+#: mod/admin.php:1101
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/profiles.php:786
-msgid "Edit/Manage Profiles"
+#: mod/admin.php:1101
+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/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: mod/admin.php:1102
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/register.php:98
-#, php-format
+#: mod/admin.php:1102
 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."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/register.php:105
-msgid "Registration successful."
+#: mod/admin.php:1103
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
+#: mod/admin.php:1103
+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/register.php:160
-msgid "Your registration is pending approval by the site owner."
+#: mod/admin.php:1104
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/register.php:226
+#: mod/admin.php:1104
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+"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/register.php:227
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+#: mod/admin.php:1105
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
+#: mod/admin.php:1105
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
+#: mod/admin.php:1106
+msgid "OpenID support"
 msgstr ""
 
-#: mod/register.php:267
-msgid "Note for the admin"
+#: mod/admin.php:1106
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/admin.php:1107
+msgid "Fullname check"
 msgstr ""
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
+#: mod/admin.php:1107
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
+#: mod/admin.php:1108
+msgid "Community Page Style"
 msgstr ""
 
-#: mod/register.php:272 mod/admin.php:1056
-msgid "Registration"
+#: mod/admin.php:1108
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
 msgstr ""
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/admin.php:1109
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/register.php:281
-msgid "Your Email Address: "
+#: mod/admin.php:1109
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/register.php:283 mod/settings.php:1278
-msgid "New Password:"
+#: mod/admin.php:1110
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
+#: mod/admin.php:1110
+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/register.php:284 mod/settings.php:1279
-msgid "Confirm:"
+#: mod/admin.php:1111
+msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: mod/register.php:285
+#: mod/admin.php:1111
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@$sitename</"
-"strong>'."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
 msgstr ""
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
+#: mod/admin.php:1112
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
+#: mod/admin.php:1112
+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/search.php:100
-msgid "Only logged in users are permitted to perform a search."
+#: mod/admin.php:1113
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/search.php:124
-msgid "Too Many Requests"
+#: mod/admin.php:1115
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
+#: mod/admin.php:1116
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/search.php:225
-#, php-format
-msgid "Items tagged with: %s"
+#: mod/admin.php:1116
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/settings.php:43 mod/admin.php:1490
-msgid "Account"
+#: mod/admin.php:1117
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/settings.php:52 mod/admin.php:169
-msgid "Additional features"
+#: mod/admin.php:1117
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/settings.php:60
-msgid "Display"
+#: mod/admin.php:1118
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:890
-msgid "Social Networks"
+#: mod/admin.php:1118
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you "
+"cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
-msgid "Plugins"
+#: mod/admin.php:1119
+msgid "Proxy user"
 msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
+#: mod/admin.php:1120
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/settings.php:95 mod/uexport.php:45
-msgid "Export personal data"
+#: mod/admin.php:1121
+msgid "Network timeout"
 msgstr ""
 
-#: mod/settings.php:102
-msgid "Remove account"
+#: mod/admin.php:1121
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/settings.php:157
-msgid "Missing some important data!"
+#: mod/admin.php:1122
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/settings.php:271
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:1122
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/settings.php:276
-msgid "Email settings updated."
+#: mod/admin.php:1123
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/settings.php:291
-msgid "Features updated"
+#: mod/admin.php:1123
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/settings.php:361
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:1124
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/settings.php:380
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/admin.php:1124
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
 msgstr ""
 
-#: mod/settings.php:388
-msgid "Wrong password."
+#: mod/admin.php:1125
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/settings.php:399
-msgid "Password changed."
+#: mod/admin.php:1125
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:401
-msgid "Password update failed. Please try again."
+#: mod/admin.php:1126
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/settings.php:481
-msgid " Please use a shorter name."
+#: mod/admin.php:1126
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/settings.php:483
-msgid " Name too short."
+#: mod/admin.php:1128
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/settings.php:492
-msgid "Wrong Password"
+#: mod/admin.php:1128
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/settings.php:497
-msgid " Not valid email."
+#: mod/admin.php:1129
+msgid "Days between requery"
 msgstr ""
 
-#: mod/settings.php:503
-msgid " Cannot change to that email."
+#: mod/admin.php:1129
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/settings.php:559
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/admin.php:1130
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/settings.php:563
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/admin.php:1130
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
 msgstr ""
 
-#: mod/settings.php:603
-msgid "Settings updated."
+#: mod/admin.php:1131
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
-msgid "Add application"
+#: mod/admin.php:1131
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
-#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
-#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
-#: mod/admin.php:2170
-msgid "Save Settings"
+#: mod/admin.php:1132
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Consumer Key"
+#: mod/admin.php:1132
+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:685 mod/settings.php:711
-msgid "Consumer Secret"
-msgstr ""
-
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Redirect"
-msgstr ""
-
-#: mod/settings.php:687 mod/settings.php:713
-msgid "Icon url"
+#: mod/admin.php:1134
+msgid "Publish server information"
 msgstr ""
 
-#: mod/settings.php:698
-msgid "You can't edit this application."
+#: mod/admin.php:1134
+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:741
-msgid "Connected Apps"
+#: mod/admin.php:1136
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/settings.php:745
-msgid "Client key starts with"
+#: mod/admin.php:1136
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/settings.php:746
-msgid "No name"
+#: mod/admin.php:1137
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/settings.php:747
-msgid "Remove authorization"
+#: mod/admin.php:1137
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/settings.php:759
-msgid "No Plugin settings configured"
+#: mod/admin.php:1138
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/settings.php:768
-msgid "Plugin Settings"
+#: mod/admin.php:1138
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
-msgid "Off"
+#: mod/admin.php:1139
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
-msgid "On"
+#: mod/admin.php:1139
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/settings.php:790
-msgid "Additional Features"
+#: mod/admin.php:1140
+msgid "Temp path"
 msgstr ""
 
-#: mod/settings.php:800 mod/settings.php:804
-msgid "General Social Media Settings"
+#: mod/admin.php:1140
+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:810
-msgid "Disable intelligent shortening"
+#: mod/admin.php:1141
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/settings.php:812
+#: mod/admin.php:1141
 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."
+"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:818
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:1142
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/settings.php:820
+#: mod/admin.php:1142
 msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
-msgstr ""
-
-#: mod/settings.php:826
-msgid "Default group for OStatus contacts"
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: mod/settings.php:834
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:1143
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/settings.php:836
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
+#: mod/admin.php:1143
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/settings.php:839
-msgid "Repair OStatus subscriptions"
+#: mod/admin.php:1145
+msgid "New base url"
 msgstr ""
 
-#: mod/settings.php:848 mod/settings.php:849
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/admin.php:1145
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts "
+"of all users."
 msgstr ""
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "enabled"
+#: mod/admin.php:1147
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "disabled"
+#: mod/admin.php:1147
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/settings.php:849
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:1149
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/settings.php:883
-msgid "Email access is disabled on this site."
+#: mod/admin.php:1149
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/settings.php:895
-msgid "Email/Mailbox Setup"
+#: mod/admin.php:1150
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/settings.php:896
+#: mod/admin.php:1150
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
 msgstr ""
 
-#: mod/settings.php:897
-msgid "Last successful email check:"
+#: mod/admin.php:1151
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/settings.php:899
-msgid "IMAP server name:"
+#: mod/admin.php:1151
+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:900
-msgid "IMAP port:"
+#: mod/admin.php:1152
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/settings.php:901
-msgid "Security:"
+#: mod/admin.php:1152
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs "
+"on your server. The worker background process needs to be activated for this."
 msgstr ""
 
-#: mod/settings.php:901 mod/settings.php:906
-msgid "None"
+#: mod/admin.php:1182
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/settings.php:902
-msgid "Email login name:"
+#: mod/admin.php:1190
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:903
-msgid "Email password:"
+#: mod/admin.php:1193
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:904
-msgid "Reply-to address:"
+#: mod/admin.php:1207
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:905
-msgid "Send public posts to all email contacts:"
+#: mod/admin.php:1210
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:906
-msgid "Action after import:"
+#: mod/admin.php:1213
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/settings.php:906
-msgid "Move to folder"
+#: mod/admin.php:1216
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/settings.php:907
-msgid "Move to folder:"
+#: mod/admin.php:1236
+msgid "No failed updates."
 msgstr ""
 
-#: mod/settings.php:943 mod/admin.php:942
-msgid "No special theme for mobile devices"
+#: mod/admin.php:1237
+msgid "Check database structure"
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Display Settings"
+#: mod/admin.php:1242
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/settings.php:1009 mod/settings.php:1032
-msgid "Display Theme:"
+#: mod/admin.php:1243
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/settings.php:1010
-msgid "Mobile Theme:"
+#: mod/admin.php:1244
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/settings.php:1011
-msgid "Suppress warning of insecure networks"
+#: mod/admin.php:1245
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/settings.php:1011
+#: mod/admin.php:1279
+#, php-format
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"\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:1012
-msgid "Update browser every xx seconds"
+#: mod/admin.php:1282
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default "
+"profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr ""
+#: mod/admin.php:1326
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1013
-msgid "Number of items to display per page:"
-msgstr ""
+#: mod/admin.php:1333
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1013 mod/settings.php:1014
-msgid "Maximum of 100 items"
+#: mod/admin.php:1380
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:1388
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Don't show emoticons"
+#: mod/admin.php:1388
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Calendar"
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Register date"
 msgstr ""
 
-#: mod/settings.php:1017
-msgid "Beginning of week:"
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Last login"
 msgstr ""
 
-#: mod/settings.php:1018
-msgid "Don't show notices"
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Last item"
 msgstr ""
 
-#: mod/settings.php:1019
-msgid "Infinite scroll"
+#: mod/admin.php:1496 mod/settings.php:45
+msgid "Account"
 msgstr ""
 
-#: mod/settings.php:1020
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1505
+msgid "Add User"
 msgstr ""
 
-#: mod/settings.php:1021
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1506
+msgid "select all"
 msgstr ""
 
-#: mod/settings.php:1021
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+#: mod/admin.php:1507
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/settings.php:1023
-msgid "General Theme Settings"
+#: mod/admin.php:1508
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/settings.php:1024
-msgid "Custom Theme Settings"
+#: mod/admin.php:1509
+msgid "Request date"
 msgstr ""
 
-#: mod/settings.php:1025
-msgid "Content Settings"
+#: mod/admin.php:1510
+msgid "No registrations."
 msgstr ""
 
-#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
-#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
-#: view/theme/vier/config.php:114
-msgid "Theme settings"
+#: mod/admin.php:1511
+msgid "Note from the user"
 msgstr ""
 
-#: mod/settings.php:1110
-msgid "Account Types"
+#: mod/admin.php:1513
+msgid "Deny"
 msgstr ""
 
-#: mod/settings.php:1111
-msgid "Personal Page Subtypes"
+#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816
+#: mod/contacts.php:994
+msgid "Block"
 msgstr ""
 
-#: mod/settings.php:1112
-msgid "Community Forum Subtypes"
+#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816
+#: mod/contacts.php:994
+msgid "Unblock"
 msgstr ""
 
-#: mod/settings.php:1119
-msgid "Personal Page"
+#: mod/admin.php:1517
+msgid "Site admin"
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "This account is a regular personal profile"
+#: mod/admin.php:1518
+msgid "Account expired"
 msgstr ""
 
-#: mod/settings.php:1123
-msgid "Organisation Page"
+#: mod/admin.php:1521
+msgid "New User"
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "This account is a profile for an organisation"
+#: mod/admin.php:1522
+msgid "Deleted since"
 msgstr ""
 
-#: mod/settings.php:1127
-msgid "News Page"
+#: mod/admin.php:1527
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "This account is a news account/reflector"
+#: mod/admin.php:1528
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/settings.php:1131
-msgid "Community Forum"
+#: mod/admin.php:1538
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/settings.php:1132
-msgid ""
-"This account is a community forum where people can discuss with each other"
+#: mod/admin.php:1539
+msgid "Nickname"
 msgstr ""
 
-#: mod/settings.php:1135
-msgid "Normal Account Page"
+#: mod/admin.php:1539
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "This account is a normal personal profile"
+#: mod/admin.php:1540
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/settings.php:1139
-msgid "Soapbox Page"
+#: mod/admin.php:1583
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/settings.php:1140
-msgid "Automatically approve all connection/friend requests as read-only fans"
+#: mod/admin.php:1587
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: mod/settings.php:1143
-msgid "Public Forum"
+#: mod/admin.php:1598 mod/admin.php:1850
+msgid "Disable"
 msgstr ""
 
-#: mod/settings.php:1144
-msgid "Automatically approve all contact requests"
+#: mod/admin.php:1600 mod/admin.php:1852
+msgid "Enable"
 msgstr ""
 
-#: mod/settings.php:1147
-msgid "Automatic Friend Page"
+#: mod/admin.php:1623 mod/admin.php:1899
+msgid "Toggle"
 msgstr ""
 
-#: mod/settings.php:1148
-msgid "Automatically approve all connection/friend requests as friends"
+#: mod/admin.php:1631 mod/admin.php:1908
+msgid "Author: "
 msgstr ""
 
-#: mod/settings.php:1151
-msgid "Private Forum [Experimental]"
+#: mod/admin.php:1632 mod/admin.php:1909
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/settings.php:1152
-msgid "Private forum - approved members only"
+#: mod/admin.php:1687
+msgid "Reload active plugins"
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "OpenID:"
+#: mod/admin.php:1692
+#, php-format
+msgid ""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:1811
+msgid "No themes found."
 msgstr ""
 
-#: mod/settings.php:1171
-msgid "Publish your default profile in your local site directory?"
+#: mod/admin.php:1890
+msgid "Screenshot"
 msgstr ""
 
-#: mod/settings.php:1171
-msgid "Your profile may be visible in public."
+#: mod/admin.php:1950
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/settings.php:1177
-msgid "Publish your default profile in the global social directory?"
+#: mod/admin.php:1955
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/settings.php:1184
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/admin.php:1956
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/settings.php:1188
-msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
+#: mod/admin.php:1957
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/settings.php:1193
-msgid "Allow friends to post to your profile page?"
+#: mod/admin.php:1981
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/settings.php:1198
-msgid "Allow friends to tag your posts?"
+#: mod/admin.php:2013
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/settings.php:1203
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/admin.php:2015
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/settings.php:1208
-msgid "Permit unknown people to send you private mail?"
+#: mod/admin.php:2024
+msgid "Clear"
 msgstr ""
 
-#: mod/settings.php:1216
-msgid "Profile is <strong>not published</strong>."
+#: mod/admin.php:2029
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/settings.php:1224
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+#: mod/admin.php:2030
+msgid "Log file"
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "Automatically expire posts after this many days:"
+#: mod/admin.php:2030
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/admin.php:2031
+msgid "Log level"
 msgstr ""
 
-#: mod/settings.php:1232
-msgid "Advanced expiration settings"
+#: mod/admin.php:2034
+msgid "PHP logging"
 msgstr ""
 
-#: mod/settings.php:1233
-msgid "Advanced Expiration"
+#: mod/admin.php:2035
+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/settings.php:1234
-msgid "Expire posts:"
+#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783
+msgid "Off"
 msgstr ""
 
-#: mod/settings.php:1235
-msgid "Expire personal notes:"
+#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783
+msgid "On"
 msgstr ""
 
-#: mod/settings.php:1236
-msgid "Expire starred posts:"
+#: mod/admin.php:2166
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/settings.php:1237
-msgid "Expire photos:"
+#: mod/admin.php:2174
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/settings.php:1238
-msgid "Only expire posts by others:"
+#: mod/contacts.php:137
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/contacts.php:172 mod/contacts.php:381
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/settings.php:1269
-msgid "Account Settings"
+#: mod/contacts.php:186
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/settings.php:1277
-msgid "Password Settings"
+#: mod/contacts.php:219
+msgid "Contact updated."
 msgstr ""
 
-#: mod/settings.php:1279
-msgid "Leave password fields blank unless changing"
+#: mod/contacts.php:402
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/settings.php:1280
-msgid "Current Password:"
+#: mod/contacts.php:402
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/settings.php:1280 mod/settings.php:1281
-msgid "Your current password to confirm the changes"
+#: mod/contacts.php:413
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/settings.php:1281
-msgid "Password:"
+#: mod/contacts.php:413
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/settings.php:1285
-msgid "Basic Settings"
+#: mod/contacts.php:425
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/settings.php:1287
-msgid "Email Address:"
+#: mod/contacts.php:425
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/settings.php:1288
-msgid "Your Timezone:"
+#: mod/contacts.php:450
+msgid "Drop contact"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid "Your Language:"
+#: mod/contacts.php:453 mod/contacts.php:812
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+#: mod/contacts.php:472
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/settings.php:1290
-msgid "Default Post Location:"
+#: mod/contacts.php:509
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/settings.php:1291
-msgid "Use Browser Location:"
+#: mod/contacts.php:513
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/settings.php:1294
-msgid "Security and Privacy Settings"
+#: mod/contacts.php:518
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/settings.php:1296
-msgid "Maximum Friend Requests/Day:"
+#: mod/contacts.php:538
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/settings.php:1296 mod/settings.php:1326
-msgid "(to prevent spam abuse)"
+#: mod/contacts.php:545
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/settings.php:1297
-msgid "Default Post Permissions"
+#: mod/contacts.php:545
+msgid "(Update was not successful)"
 msgstr ""
 
-#: mod/settings.php:1298
-msgid "(click to open/close)"
+#: mod/contacts.php:547 mod/contacts.php:975
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/settings.php:1309
-msgid "Default Private Post"
+#: mod/contacts.php:551
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/settings.php:1310
-msgid "Default Public Post"
+#: mod/contacts.php:564
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/settings.php:1314
-msgid "Default Permissions for New Posts"
+#: mod/contacts.php:567
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/settings.php:1326
-msgid "Maximum private messages per day from unknown people:"
+#: mod/contacts.php:568
+msgid "Fetch information"
 msgstr ""
 
-#: mod/settings.php:1329
-msgid "Notification Settings"
+#: mod/contacts.php:568
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/settings.php:1330
-msgid "By default post a status message when:"
+#: mod/contacts.php:586
+msgid "Contact"
 msgstr ""
 
-#: mod/settings.php:1331
-msgid "accepting a friend request"
+#: mod/contacts.php:589
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/settings.php:1332
-msgid "joining a forum/community"
+#: mod/contacts.php:590
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/settings.php:1333
-msgid "making an <em>interesting</em> profile change"
+#: mod/contacts.php:591
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/settings.php:1334
-msgid "Send a notification email when:"
+#: mod/contacts.php:592
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/settings.php:1335
-msgid "You receive an introduction"
+#: mod/contacts.php:598
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/settings.php:1336
-msgid "Your introductions are confirmed"
+#: mod/contacts.php:599
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Someone writes on your profile wall"
+#: mod/contacts.php:600
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/settings.php:1338
-msgid "Someone writes a followup comment"
+#: mod/contacts.php:601
+msgid "View conversations"
 msgstr ""
 
-#: mod/settings.php:1339
-msgid "You receive a private message"
+#: mod/contacts.php:607
+msgid "Last update:"
 msgstr ""
 
-#: mod/settings.php:1340
-msgid "You receive a friend suggestion"
+#: mod/contacts.php:609
+msgid "Update public posts"
 msgstr ""
 
-#: mod/settings.php:1341
-msgid "You are tagged in a post"
+#: mod/contacts.php:611 mod/contacts.php:985
+msgid "Update now"
 msgstr ""
 
-#: mod/settings.php:1342
-msgid "You are poked/prodded/etc. in a post"
+#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002
+msgid "Unignore"
 msgstr ""
 
-#: mod/settings.php:1344
-msgid "Activate desktop notifications"
+#: mod/contacts.php:621
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/settings.php:1344
-msgid "Show desktop popup on new notifications"
+#: mod/contacts.php:622
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/settings.php:1346
-msgid "Text-only notification emails"
+#: mod/contacts.php:623
+msgid "Currently archived"
 msgstr ""
 
-#: mod/settings.php:1348
-msgid "Send text only notification emails, without the html part"
+#: mod/contacts.php:624
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/settings.php:1350
-msgid "Advanced Account/Page Type Settings"
+#: mod/contacts.php:625
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/settings.php:1351
-msgid "Change the behaviour of this account for special situations"
+#: mod/contacts.php:625
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/settings.php:1354
-msgid "Relocate"
+#: mod/contacts.php:628
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/settings.php:1355
+#: mod/contacts.php:628
 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/settings.php:1356
-msgid "Resend relocate message to contacts"
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/uexport.php:37
-msgid "Export account"
+#: mod/contacts.php:646
+msgid "Actions"
 msgstr ""
 
-#: mod/uexport.php:37
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: mod/contacts.php:649
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/uexport.php:38
-msgid "Export all"
+#: mod/contacts.php:695
+msgid "Suggestions"
 msgstr ""
 
-#: mod/uexport.php:38
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: mod/contacts.php:698
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/videos.php:124
-msgid "Do you really want to delete this video?"
+#: mod/contacts.php:706
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/videos.php:129
-msgid "Delete Video"
+#: mod/contacts.php:711
+msgid "Unblocked"
 msgstr ""
 
-#: mod/videos.php:208
-msgid "No videos selected"
+#: mod/contacts.php:714
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/videos.php:402
-msgid "Recent Videos"
+#: mod/contacts.php:720
+msgid "Blocked"
 msgstr ""
 
-#: mod/videos.php:404
-msgid "Upload New Videos"
+#: mod/contacts.php:723
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/install.php:106
-msgid "Friendica Communications Server - Setup"
+#: mod/contacts.php:729
+msgid "Ignored"
 msgstr ""
 
-#: mod/install.php:112
-msgid "Could not connect to database."
+#: mod/contacts.php:732
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/install.php:116
-msgid "Could not create table."
+#: mod/contacts.php:738
+msgid "Archived"
 msgstr ""
 
-#: mod/install.php:122
-msgid "Your Friendica site database has been installed."
+#: mod/contacts.php:741
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/install.php:127
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: mod/contacts.php:747
+msgid "Hidden"
 msgstr ""
 
-#: mod/install.php:128 mod/install.php:200 mod/install.php:547
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/contacts.php:750
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/install.php:140
-msgid "Database already in use."
+#: mod/contacts.php:807
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/install.php:197
-msgid "System check"
+#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708
+msgid "Update"
 msgstr ""
 
-#: mod/install.php:202
-msgid "Check again"
+#: mod/contacts.php:818 mod/contacts.php:1010
+msgid "Archive"
 msgstr ""
 
-#: mod/install.php:221
-msgid "Database connection"
+#: mod/contacts.php:818 mod/contacts.php:1010
+msgid "Unarchive"
 msgstr ""
 
-#: mod/install.php:222
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/contacts.php:821
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/install.php:223
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/contacts.php:867
+msgid "View all contacts"
 msgstr ""
 
-#: mod/install.php:224
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: mod/contacts.php:877
+msgid "View all common friends"
 msgstr ""
 
-#: mod/install.php:228
-msgid "Database Server Name"
+#: mod/contacts.php:884
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/install.php:229
-msgid "Database Login Name"
+#: mod/contacts.php:918
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/install.php:230
-msgid "Database Login Password"
+#: mod/contacts.php:922
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/install.php:230
-msgid "For security reasons the password must not be empty"
+#: mod/contacts.php:926
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/install.php:231
-msgid "Database Name"
+#: mod/contacts.php:996
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/install.php:232 mod/install.php:273
-msgid "Site administrator email address"
+#: mod/contacts.php:1004
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/install.php:232 mod/install.php:273
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/contacts.php:1012
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/install.php:236 mod/install.php:276
-msgid "Please select a default timezone for your website"
+#: mod/contacts.php:1020
+msgid "Delete contact"
 msgstr ""
 
-#: mod/install.php:263
-msgid "Site settings"
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: mod/install.php:277
-msgid "System Language:"
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:322
+#, php-format
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: mod/install.php:277
+#: mod/profile_photo.php:127
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: mod/install.php:317
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/profile_photo.php:136
+msgid "Unable to process image"
 msgstr ""
 
-#: mod/install.php:318
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a href='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"poller'>'Setup the poller'</a>"
+#: mod/profile_photo.php:253
+msgid "Upload File:"
 msgstr ""
 
-#: mod/install.php:322
-msgid "PHP executable path"
+#: mod/profile_photo.php:254
+msgid "Select a profile:"
 msgstr ""
 
-#: mod/install.php:322
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/profile_photo.php:256
+msgid "Upload"
 msgstr ""
 
-#: mod/install.php:327
-msgid "Command line PHP"
+#: mod/profile_photo.php:259
+msgid "or"
 msgstr ""
 
-#: mod/install.php:336
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/profile_photo.php:259
+msgid "skip this step"
 msgstr ""
 
-#: mod/install.php:337
-msgid "Found PHP version: "
+#: mod/profile_photo.php:259
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: mod/install.php:339
-msgid "PHP cli binary"
+#: mod/profile_photo.php:273
+msgid "Crop Image"
 msgstr ""
 
-#: mod/install.php:350
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/profile_photo.php:274
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: mod/install.php:351
-msgid "This is required for message delivery to work."
+#: mod/profile_photo.php:276
+msgid "Done Editing"
 msgstr ""
 
-#: mod/install.php:353
-msgid "PHP register_argc_argv"
+#: mod/profile_photo.php:312
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/install.php:376
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/profiles.php:42
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/install.php:377
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: mod/profiles.php:58 mod/profiles.php:94
+msgid "Profile-"
 msgstr ""
 
-#: mod/install.php:379
-msgid "Generate encryption keys"
+#: mod/profiles.php:77 mod/profiles.php:122
+msgid "New profile created."
 msgstr ""
 
-#: mod/install.php:386
-msgid "libCurl PHP module"
+#: mod/profiles.php:100
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/install.php:387
-msgid "GD graphics PHP module"
+#: mod/profiles.php:196
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/install.php:388
-msgid "OpenSSL PHP module"
+#: mod/profiles.php:336
+msgid "Marital Status"
 msgstr ""
 
-#: mod/install.php:389
-msgid "PDO or MySQLi PHP module"
+#: mod/profiles.php:340
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/install.php:390
-msgid "mb_string PHP module"
+#: mod/profiles.php:352
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/install.php:391
-msgid "XML PHP module"
+#: mod/profiles.php:355
+msgid "Religion"
 msgstr ""
 
-#: mod/install.php:392
-msgid "iconv module"
+#: mod/profiles.php:359
+msgid "Political Views"
 msgstr ""
 
-#: mod/install.php:396 mod/install.php:398
-msgid "Apache mod_rewrite module"
+#: mod/profiles.php:363
+msgid "Gender"
 msgstr ""
 
-#: mod/install.php:396
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/profiles.php:367
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/install.php:404
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/profiles.php:371
+msgid "XMPP"
 msgstr ""
 
-#: mod/install.php:408
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: mod/profiles.php:375
+msgid "Homepage"
 msgstr ""
 
-#: mod/install.php:412
-msgid "Error: openssl PHP module required but not installed."
+#: mod/profiles.php:379 mod/profiles.php:698
+msgid "Interests"
 msgstr ""
 
-#: mod/install.php:416
-msgid "Error: PDO or MySQLi PHP module required but not installed."
+#: mod/profiles.php:383
+msgid "Address"
 msgstr ""
 
-#: mod/install.php:420
-msgid "Error: The MySQL driver for PDO is not installed."
+#: mod/profiles.php:390 mod/profiles.php:694
+msgid "Location"
 msgstr ""
 
-#: mod/install.php:424
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/profiles.php:475
+msgid "Profile updated."
 msgstr ""
 
-#: mod/install.php:428
-msgid "Error: iconv PHP module required but not installed."
+#: mod/profiles.php:567
+msgid " and "
 msgstr ""
 
-#: mod/install.php:438
-msgid "Error, XML PHP module required but not installed."
+#: mod/profiles.php:576
+msgid "public profile"
 msgstr ""
 
-#: mod/install.php:450
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/install.php:451
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/install.php:452
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
+#: mod/profiles.php:582
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/install.php:453
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: mod/profiles.php:640
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/install.php:456
-msgid ".htconfig.php is writable"
+#: mod/profiles.php:645
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/install.php:466
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: mod/profiles.php:670
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/install.php:467
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
+#: mod/profiles.php:682
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/install.php:468
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: mod/profiles.php:683
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/install.php:469
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
+#: mod/profiles.php:685
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/install.php:472
-msgid "view/smarty3 is writable"
+#: mod/profiles.php:686
+msgid "View this profile"
 msgstr ""
 
-#: mod/install.php:488
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: mod/profiles.php:688
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/install.php:490
-msgid "Url rewrite is working"
+#: mod/profiles.php:689
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/install.php:509
-msgid "ImageMagick PHP extension is not installed"
+#: mod/profiles.php:690
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/install.php:511
-msgid "ImageMagick PHP extension is installed"
+#: mod/profiles.php:692
+msgid "Basic information"
 msgstr ""
 
-#: mod/install.php:513
-msgid "ImageMagick supports GIF"
+#: mod/profiles.php:693
+msgid "Profile picture"
 msgstr ""
 
-#: mod/install.php:520
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: mod/profiles.php:695
+msgid "Preferences"
 msgstr ""
 
-#: mod/install.php:545
-msgid "<h1>What next</h1>"
+#: mod/profiles.php:696
+msgid "Status information"
 msgstr ""
 
-#: mod/install.php:546
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: mod/profiles.php:697
+msgid "Additional information"
 msgstr ""
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
+#: mod/profiles.php:700
+msgid "Relation"
 msgstr ""
 
-#: mod/item.php:344
-msgid "Empty post discarded."
+#: mod/profiles.php:704
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/item.php:904
-msgid "System error. Post not saved."
+#: mod/profiles.php:705
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/item.php:995
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+#: mod/profiles.php:707
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/item.php:997
-#, php-format
-msgid "You may visit them online at %s"
+#: mod/profiles.php:712
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/item.php:998
+#: mod/profiles.php:714
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/item.php:1002
-#, php-format
-msgid "%s posted an update."
+#: mod/profiles.php:715
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
+#: mod/profiles.php:716
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:227
-msgid "Discard"
+#: mod/profiles.php:719
+msgid "Street Address:"
 msgstr ""
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
+#: mod/profiles.php:720
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
+#: mod/profiles.php:721
+msgid "Region/State:"
 msgstr ""
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
+#: mod/profiles.php:722
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
+#: mod/profiles.php:723
+msgid "Country:"
 msgstr ""
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
+#: mod/profiles.php:727
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/notifications.php:164 mod/notifications.php:234
-msgid "Notification type: "
+#: mod/profiles.php:727
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
+#: mod/profiles.php:728
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "Post a new friend activity"
+#: mod/profiles.php:730
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "if applicable"
+#: mod/profiles.php:731
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
-msgid "Approve"
+#: mod/profiles.php:731
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
+#: mod/profiles.php:732
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "yes"
+#: mod/profiles.php:735
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "no"
+#: mod/profiles.php:736
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/notifications.php:197 mod/notifications.php:202
-msgid "Shall your connection be bidirectional or not?"
+#: mod/profiles.php:736
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/notifications.php:198 mod/notifications.php:203
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
+#: mod/profiles.php:737
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/notifications.php:199
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+#: mod/profiles.php:737
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/notifications.php:204
-#, php-format
-msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
+#: mod/profiles.php:740
+msgid "Musical interests"
 msgstr ""
 
-#: mod/notifications.php:215
-msgid "Friend"
+#: mod/profiles.php:741
+msgid "Books, literature"
 msgstr ""
 
-#: mod/notifications.php:216
-msgid "Sharer"
+#: mod/profiles.php:742
+msgid "Television"
 msgstr ""
 
-#: mod/notifications.php:216
-msgid "Subscriber"
+#: mod/profiles.php:743
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/notifications.php:272
-msgid "No introductions."
+#: mod/profiles.php:744
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/notifications.php:313
-msgid "Show unread"
+#: mod/profiles.php:745
+msgid "Love/romance"
 msgstr ""
 
-#: mod/notifications.php:313
-msgid "Show all"
+#: mod/profiles.php:746
+msgid "Work/employment"
 msgstr ""
 
-#: mod/notifications.php:319
-#, php-format
-msgid "No more %s notifications."
+#: mod/profiles.php:747
+msgid "School/education"
 msgstr ""
 
-#: mod/ping.php:270
-msgid "{0} wants to be your friend"
+#: mod/profiles.php:748
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/ping.php:285
-msgid "{0} sent you a message"
+#: mod/profiles.php:789
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/ping.php:300
-msgid "{0} requested registration"
+#: mod/settings.php:62
+msgid "Display"
 msgstr ""
 
-#: mod/admin.php:96
-msgid "Theme settings updated."
+#: mod/settings.php:69 mod/settings.php:891
+msgid "Social Networks"
 msgstr ""
 
-#: mod/admin.php:165 mod/admin.php:1054
-msgid "Site"
+#: mod/settings.php:90
+msgid "Connected apps"
 msgstr ""
 
-#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
-msgid "Users"
+#: mod/settings.php:104
+msgid "Remove account"
 msgstr ""
 
-#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
-msgid "Themes"
+#: mod/settings.php:159
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/admin.php:170
-msgid "DB updates"
+#: mod/settings.php:273
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/admin.php:171 mod/admin.php:512
-msgid "Inspect Queue"
+#: mod/settings.php:278
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/admin.php:172 mod/admin.php:288
-msgid "Server Blocklist"
+#: mod/settings.php:293
+msgid "Features updated"
 msgstr ""
 
-#: mod/admin.php:173 mod/admin.php:478
-msgid "Federation Statistics"
+#: mod/settings.php:363
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
-msgid "Logs"
+#: mod/settings.php:382
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:188 mod/admin.php:2084
-msgid "View Logs"
+#: mod/settings.php:390
+msgid "Wrong password."
 msgstr ""
 
-#: mod/admin.php:189
-msgid "probe address"
+#: mod/settings.php:401
+msgid "Password changed."
 msgstr ""
 
-#: mod/admin.php:190
-msgid "check webfinger"
+#: mod/settings.php:403
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/admin.php:197
-msgid "Plugin Features"
+#: mod/settings.php:483
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/admin.php:199
-msgid "diagnostics"
+#: mod/settings.php:485
+msgid " Name too short."
 msgstr ""
 
-#: mod/admin.php:200
-msgid "User registrations waiting for confirmation"
+#: mod/settings.php:494
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/admin.php:279
-msgid "The blocked domain"
+#: mod/settings.php:499
+msgid " Not valid email."
 msgstr ""
 
-#: mod/admin.php:280 mod/admin.php:293
-msgid "The reason why you blocked this domain."
+#: mod/settings.php:505
+msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:281
-msgid "Delete domain"
+#: mod/settings.php:561
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/admin.php:281
-msgid "Check to delete this entry from the blocklist"
+#: mod/settings.php:565
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
-#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
-#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
-msgid "Administration"
+#: mod/settings.php:605
+msgid "Settings updated."
 msgstr ""
 
-#: mod/admin.php:289
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote server."
+#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743
+msgid "Add application"
 msgstr ""
 
-#: mod/admin.php:290
-msgid ""
-"The list of blocked servers will be made publically available on the /"
-"friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/admin.php:291
-msgid "Add new entry to block list"
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/admin.php:292
-msgid "Server Domain"
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Redirect"
 msgstr ""
 
-#: mod/admin.php:292
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+#: mod/settings.php:688 mod/settings.php:714
+msgid "Icon url"
 msgstr ""
 
-#: mod/admin.php:293
-msgid "Block reason"
+#: mod/settings.php:699
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/admin.php:294
-msgid "Add Entry"
+#: mod/settings.php:742
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/admin.php:295
-msgid "Save changes to the blocklist"
+#: mod/settings.php:746
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/admin.php:296
-msgid "Current Entries in the Blocklist"
+#: mod/settings.php:747
+msgid "No name"
 msgstr ""
 
-#: mod/admin.php:299
-msgid "Delete entry from blocklist"
+#: mod/settings.php:748
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/admin.php:302
-msgid "Delete entry from blocklist?"
+#: mod/settings.php:760
+msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/admin.php:327
-msgid "Server added to blocklist."
+#: mod/settings.php:769
+msgid "Plugin Settings"
 msgstr ""
 
-#: mod/admin.php:343
-msgid "Site blocklist updated."
+#: mod/settings.php:791
+msgid "Additional Features"
 msgstr ""
 
-#: mod/admin.php:408
-msgid "unknown"
+#: mod/settings.php:801 mod/settings.php:805
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/admin.php:471
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
+#: mod/settings.php:811
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/admin.php:472
+#: mod/settings.php:813
 msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+"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:484
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+#: mod/settings.php:819
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:514
-msgid "ID"
+#: mod/settings.php:821
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
 msgstr ""
 
-#: mod/admin.php:515
-msgid "Recipient Name"
+#: mod/settings.php:827
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:516
-msgid "Recipient Profile"
+#: mod/settings.php:835
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/admin.php:518
-msgid "Created"
+#: mod/settings.php:837
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
 msgstr ""
 
-#: mod/admin.php:519
-msgid "Last Tried"
+#: mod/settings.php:840
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/admin.php:520
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
+#: mod/settings.php:849 mod/settings.php:850
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/admin.php:545
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php include/"
-"dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
+#: mod/settings.php:849 mod/settings.php:850
+msgid "enabled"
 msgstr ""
 
-#: mod/admin.php:550
-msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
+#: mod/settings.php:849 mod/settings.php:850
+msgid "disabled"
 msgstr ""
 
-#: mod/admin.php:554 mod/admin.php:1447
-msgid "Normal Account"
+#: mod/settings.php:850
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/admin.php:555 mod/admin.php:1448
-msgid "Soapbox Account"
+#: mod/settings.php:884
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:556 mod/admin.php:1449
-msgid "Community/Celebrity Account"
+#: mod/settings.php:896
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/admin.php:557 mod/admin.php:1450
-msgid "Automatic Friend Account"
+#: mod/settings.php:897
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/admin.php:558
-msgid "Blog Account"
+#: mod/settings.php:898
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/admin.php:559
-msgid "Private Forum"
+#: mod/settings.php:900
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/admin.php:581
-msgid "Message queues"
+#: mod/settings.php:901
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/admin.php:587
-msgid "Summary"
+#: mod/settings.php:902
+msgid "Security:"
 msgstr ""
 
-#: mod/admin.php:589
-msgid "Registered users"
+#: mod/settings.php:902 mod/settings.php:907
+msgid "None"
 msgstr ""
 
-#: mod/admin.php:591
-msgid "Pending registrations"
+#: mod/settings.php:903
+msgid "Email login name:"
 msgstr ""
 
-#: mod/admin.php:592
-msgid "Version"
+#: mod/settings.php:904
+msgid "Email password:"
 msgstr ""
 
-#: mod/admin.php:597
-msgid "Active plugins"
+#: mod/settings.php:905
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/admin.php:622
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/settings.php:906
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/admin.php:914
-msgid "Site settings updated."
+#: mod/settings.php:907
+msgid "Action after import:"
 msgstr ""
 
-#: mod/admin.php:971
-msgid "No community page"
+#: mod/settings.php:907
+msgid "Move to folder"
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Public postings from users of this site"
+#: mod/settings.php:908
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/admin.php:973
-msgid "Global community page"
+#: mod/settings.php:1004
+msgid "Display Settings"
 msgstr ""
 
-#: mod/admin.php:979
-msgid "At post arrival"
+#: mod/settings.php:1010 mod/settings.php:1033
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/admin.php:989
-msgid "Users, Global Contacts"
+#: mod/settings.php:1011
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/admin.php:990
-msgid "Users, Global Contacts/fallback"
+#: mod/settings.php:1012
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "One month"
+#: mod/settings.php:1012
+msgid ""
+"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:995
-msgid "Three months"
+#: mod/settings.php:1013
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/admin.php:996
-msgid "Half a year"
+#: mod/settings.php:1013
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/admin.php:997
-msgid "One year"
+#: mod/settings.php:1014
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/admin.php:1002
-msgid "Multi user instance"
+#: mod/settings.php:1014 mod/settings.php:1015
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/admin.php:1025
-msgid "Closed"
+#: mod/settings.php:1015
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Requires approval"
+#: mod/settings.php:1016
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/admin.php:1027
-msgid "Open"
+#: mod/settings.php:1017
+msgid "Calendar"
 msgstr ""
 
-#: mod/admin.php:1031
-msgid "No SSL policy, links will track page SSL state"
+#: mod/settings.php:1018
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/admin.php:1032
-msgid "Force all links to use SSL"
+#: mod/settings.php:1019
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/admin.php:1033
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/settings.php:1020
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/admin.php:1057
-msgid "File upload"
+#: mod/settings.php:1021
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/admin.php:1058
-msgid "Policies"
+#: mod/settings.php:1022
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/admin.php:1060
-msgid "Auto Discovered Contact Directory"
+#: mod/settings.php:1022
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/admin.php:1061
-msgid "Performance"
+#: mod/settings.php:1024
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/admin.php:1062
-msgid "Worker"
+#: mod/settings.php:1025
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/admin.php:1063
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/settings.php:1026
+msgid "Content Settings"
 msgstr ""
 
-#: mod/admin.php:1066
-msgid "Site name"
+#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66
+#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72
+#: view/theme/vier/config.php:115
+msgid "Theme settings"
 msgstr ""
 
-#: mod/admin.php:1067
-msgid "Host name"
+#: mod/settings.php:1111
+msgid "Account Types"
 msgstr ""
 
-#: mod/admin.php:1068
-msgid "Sender Email"
+#: mod/settings.php:1112
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/admin.php:1068
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/settings.php:1113
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/admin.php:1069
-msgid "Banner/Logo"
+#: mod/settings.php:1120
+msgid "Personal Page"
 msgstr ""
 
-#: mod/admin.php:1070
-msgid "Shortcut icon"
+#: mod/settings.php:1121
+msgid "This account is a regular personal profile"
 msgstr ""
 
-#: mod/admin.php:1070
-msgid "Link to an icon that will be used for browsers."
+#: mod/settings.php:1124
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/admin.php:1071
-msgid "Touch icon"
+#: mod/settings.php:1125
+msgid "This account is a profile for an organisation"
 msgstr ""
 
-#: mod/admin.php:1071
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/settings.php:1128
+msgid "News Page"
 msgstr ""
 
-#: mod/admin.php:1072
-msgid "Additional Info"
+#: mod/settings.php:1129
+msgid "This account is a news account/reflector"
 msgstr ""
 
-#: mod/admin.php:1072
-#, php-format
+#: mod/settings.php:1132
+msgid "Community Forum"
+msgstr ""
+
+#: mod/settings.php:1133
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+"This account is a community forum where people can discuss with each other"
 msgstr ""
 
-#: mod/admin.php:1073
-msgid "System language"
+#: mod/settings.php:1136
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/admin.php:1074
-msgid "System theme"
+#: mod/settings.php:1137
+msgid "This account is a normal personal profile"
 msgstr ""
 
-#: mod/admin.php:1074
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/settings.php:1140
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/admin.php:1075
-msgid "Mobile system theme"
+#: mod/settings.php:1141
+msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: mod/admin.php:1075
-msgid "Theme for mobile devices"
+#: mod/settings.php:1144
+msgid "Public Forum"
 msgstr ""
 
-#: mod/admin.php:1076
-msgid "SSL link policy"
+#: mod/settings.php:1145
+msgid "Automatically approve all contact requests"
 msgstr ""
 
-#: mod/admin.php:1076
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/settings.php:1148
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/admin.php:1077
-msgid "Force SSL"
+#: mod/settings.php:1149
+msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: mod/admin.php:1077
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/settings.php:1152
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/admin.php:1078
-msgid "Hide help entry from navigation menu"
+#: mod/settings.php:1153
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: mod/admin.php:1078
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr ""
-
-#: mod/admin.php:1079
-msgid "Single user instance"
-msgstr ""
-
-#: mod/admin.php:1079
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr ""
-
-#: mod/admin.php:1080
-msgid "Maximum image size"
-msgstr ""
-
-#: mod/admin.php:1080
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: mod/admin.php:1081
-msgid "Maximum image length"
-msgstr ""
-
-#: mod/admin.php:1081
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr ""
-
-#: mod/admin.php:1082
-msgid "JPEG image quality"
-msgstr ""
-
-#: mod/admin.php:1082
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr ""
-
-#: mod/admin.php:1084
-msgid "Register policy"
-msgstr ""
-
-#: mod/admin.php:1085
-msgid "Maximum Daily Registrations"
-msgstr ""
-
-#: mod/admin.php:1085
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user "
-"registrations to accept per day.  If register is set to closed, this setting "
-"has no effect."
-msgstr ""
-
-#: mod/admin.php:1086
-msgid "Register text"
-msgstr ""
-
-#: mod/admin.php:1086
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
-
-#: mod/admin.php:1087
-msgid "Accounts abandoned after x days"
-msgstr ""
-
-#: mod/admin.php:1087
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
-
-#: mod/admin.php:1088
-msgid "Allowed friend domains"
-msgstr ""
-
-#: mod/admin.php:1088
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr ""
-
-#: mod/admin.php:1089
-msgid "Allowed email domains"
-msgstr ""
-
-#: mod/admin.php:1089
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr ""
-
-#: mod/admin.php:1090
-msgid "Block public"
-msgstr ""
-
-#: mod/admin.php:1090
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr ""
-
-#: mod/admin.php:1091
-msgid "Force publish"
-msgstr ""
-
-#: mod/admin.php:1091
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
-
-#: mod/admin.php:1092
-msgid "Global directory URL"
-msgstr ""
-
-#: mod/admin.php:1092
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr ""
-
-#: mod/admin.php:1093
-msgid "Allow threaded items"
-msgstr ""
-
-#: mod/admin.php:1093
-msgid "Allow infinite level threading for items on this site."
-msgstr ""
-
-#: mod/admin.php:1094
-msgid "Private posts by default for new users"
-msgstr ""
-
-#: mod/admin.php:1094
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
-
-#: mod/admin.php:1095
-msgid "Don't include post content in email notifications"
-msgstr ""
-
-#: mod/admin.php:1095
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr ""
-
-#: mod/admin.php:1096
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr ""
-
-#: mod/admin.php:1096
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr ""
-
-#: mod/admin.php:1097
-msgid "Don't embed private images in posts"
-msgstr ""
-
-#: mod/admin.php:1097
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a while."
-msgstr ""
-
-#: mod/admin.php:1098
-msgid "Allow Users to set remote_self"
-msgstr ""
-
-#: mod/admin.php:1098
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr ""
-
-#: mod/admin.php:1099
-msgid "Block multiple registrations"
-msgstr ""
-
-#: mod/admin.php:1099
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
-
-#: mod/admin.php:1100
-msgid "OpenID support"
-msgstr ""
-
-#: mod/admin.php:1100
-msgid "OpenID support for registration and logins."
-msgstr ""
-
-#: mod/admin.php:1101
-msgid "Fullname check"
-msgstr ""
-
-#: mod/admin.php:1101
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr ""
-
-#: mod/admin.php:1102
-msgid "Community Page Style"
-msgstr ""
-
-#: mod/admin.php:1102
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
-
-#: mod/admin.php:1103
-msgid "Posts per user on community page"
-msgstr ""
-
-#: mod/admin.php:1103
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
-
-#: mod/admin.php:1104
-msgid "Enable OStatus support"
-msgstr ""
-
-#: mod/admin.php:1104
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr ""
-
-#: mod/admin.php:1105
-msgid "OStatus conversation completion interval"
-msgstr ""
-
-#: mod/admin.php:1105
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr ""
-
-#: mod/admin.php:1106
-msgid "Only import OStatus threads from our contacts"
-msgstr ""
-
-#: mod/admin.php:1106
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option "
-"we only store threads that are started by a contact that is known on our "
-"system."
-msgstr ""
-
-#: mod/admin.php:1107
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr ""
-
-#: mod/admin.php:1109
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
-msgstr ""
-
-#: mod/admin.php:1110
-msgid "Enable Diaspora support"
-msgstr ""
-
-#: mod/admin.php:1110
-msgid "Provide built-in Diaspora network compatibility."
-msgstr ""
-
-#: mod/admin.php:1111
-msgid "Only allow Friendica contacts"
-msgstr ""
-
-#: mod/admin.php:1111
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr ""
-
-#: mod/admin.php:1112
-msgid "Verify SSL"
-msgstr ""
-
-#: mod/admin.php:1112
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
-msgstr ""
-
-#: mod/admin.php:1113
-msgid "Proxy user"
-msgstr ""
-
-#: mod/admin.php:1114
-msgid "Proxy URL"
-msgstr ""
-
-#: mod/admin.php:1115
-msgid "Network timeout"
-msgstr ""
-
-#: mod/admin.php:1115
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
-
-#: mod/admin.php:1116
-msgid "Maximum Load Average"
-msgstr ""
-
-#: mod/admin.php:1116
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
-
-#: mod/admin.php:1117
-msgid "Maximum Load Average (Frontend)"
-msgstr ""
-
-#: mod/admin.php:1117
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr ""
-
-#: mod/admin.php:1118
-msgid "Minimal Memory"
-msgstr ""
-
-#: mod/admin.php:1118
-msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
-
-#: mod/admin.php:1119
-msgid "Maximum table size for optimization"
-msgstr ""
-
-#: mod/admin.php:1119
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr ""
-
-#: mod/admin.php:1120
-msgid "Minimum level of fragmentation"
-msgstr ""
-
-#: mod/admin.php:1120
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
-
-#: mod/admin.php:1122
-msgid "Periodical check of global contacts"
-msgstr ""
-
-#: mod/admin.php:1122
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr ""
-
-#: mod/admin.php:1123
-msgid "Days between requery"
-msgstr ""
-
-#: mod/admin.php:1123
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
-
-#: mod/admin.php:1124
-msgid "Discover contacts from other servers"
-msgstr ""
-
-#: mod/admin.php:1124
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr ""
-
-#: mod/admin.php:1125
-msgid "Timeframe for fetching global contacts"
-msgstr ""
-
-#: mod/admin.php:1125
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr ""
-
-#: mod/admin.php:1126
-msgid "Search the local directory"
-msgstr ""
-
-#: mod/admin.php:1126
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr ""
-
-#: mod/admin.php:1128
-msgid "Publish server information"
-msgstr ""
-
-#: mod/admin.php:1128
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr ""
-
-#: mod/admin.php:1130
-msgid "Suppress Tags"
-msgstr ""
-
-#: mod/admin.php:1130
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
-
-#: mod/admin.php:1131
-msgid "Path to item cache"
-msgstr ""
-
-#: mod/admin.php:1131
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
-
-#: mod/admin.php:1132
-msgid "Cache duration in seconds"
-msgstr ""
-
-#: mod/admin.php:1132
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day). To disable the item cache, set the value to -1."
-msgstr ""
-
-#: mod/admin.php:1133
-msgid "Maximum numbers of comments per post"
-msgstr ""
-
-#: mod/admin.php:1133
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
-
-#: mod/admin.php:1134
-msgid "Temp path"
-msgstr ""
-
-#: mod/admin.php:1134
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr ""
-
-#: mod/admin.php:1135
-msgid "Base path to installation"
-msgstr ""
-
-#: mod/admin.php:1135
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the "
-"correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr ""
-
-#: mod/admin.php:1136
-msgid "Disable picture proxy"
-msgstr ""
-
-#: mod/admin.php:1136
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
-msgstr ""
-
-#: mod/admin.php:1137
-msgid "Only search in tags"
-msgstr ""
-
-#: mod/admin.php:1137
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
-
-#: mod/admin.php:1139
-msgid "New base url"
-msgstr ""
-
-#: mod/admin.php:1139
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts "
-"of all users."
-msgstr ""
-
-#: mod/admin.php:1141
-msgid "RINO Encryption"
-msgstr ""
-
-#: mod/admin.php:1141
-msgid "Encryption layer between nodes."
-msgstr ""
-
-#: mod/admin.php:1143
-msgid "Maximum number of parallel workers"
-msgstr ""
-
-#: mod/admin.php:1143
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
-
-#: mod/admin.php:1144
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
-
-#: mod/admin.php:1144
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr ""
-
-#: mod/admin.php:1145
-msgid "Enable fastlane"
-msgstr ""
-
-#: mod/admin.php:1145
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
-msgstr ""
-
-#: mod/admin.php:1146
-msgid "Enable frontend worker"
-msgstr ""
-
-#: mod/admin.php:1146
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs "
-"on your server. The worker background process needs to be activated for this."
-msgstr ""
-
-#: mod/admin.php:1176
-msgid "Update has been marked successful"
-msgstr ""
-
-#: mod/admin.php:1184
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr ""
-
-#: mod/admin.php:1187
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr ""
-
-#: mod/admin.php:1201
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
-
-#: mod/admin.php:1204
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr ""
-
-#: mod/admin.php:1207
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
-
-#: mod/admin.php:1210
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
-
-#: mod/admin.php:1230
-msgid "No failed updates."
-msgstr ""
-
-#: mod/admin.php:1231
-msgid "Check database structure"
+#: mod/settings.php:1164
+msgid "OpenID:"
 msgstr ""
 
-#: mod/admin.php:1236
-msgid "Failed Updates"
+#: mod/settings.php:1164
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/admin.php:1237
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/settings.php:1172
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/admin.php:1238
-msgid "Mark success (if update was manually applied)"
+#: mod/settings.php:1172
+msgid "Your profile may be visible in public."
 msgstr ""
 
-#: mod/admin.php:1239
-msgid "Attempt to execute this update step automatically"
+#: mod/settings.php:1178
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/admin.php:1273
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+#: mod/settings.php:1185
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/admin.php:1276
-#, php-format
+#: mod/settings.php:1189
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default "
-"profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
-
-#: mod/admin.php:1320
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1327
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1374
-#, php-format
-msgid "User '%s' deleted"
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
 msgstr ""
 
-#: mod/admin.php:1382
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/settings.php:1194
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/admin.php:1382
-#, php-format
-msgid "User '%s' blocked"
+#: mod/settings.php:1199
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Register date"
+#: mod/settings.php:1204
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Last login"
+#: mod/settings.php:1209
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Last item"
+#: mod/settings.php:1217
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/admin.php:1499
-msgid "Add User"
+#: mod/settings.php:1225
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/admin.php:1500
-msgid "select all"
+#: mod/settings.php:1232
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/admin.php:1501
-msgid "User registrations waiting for confirm"
+#: mod/settings.php:1232
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/admin.php:1502
-msgid "User waiting for permanent deletion"
+#: mod/settings.php:1233
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/admin.php:1503
-msgid "Request date"
+#: mod/settings.php:1234
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/admin.php:1504
-msgid "No registrations."
+#: mod/settings.php:1235
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/admin.php:1505
-msgid "Note from the user"
+#: mod/settings.php:1236
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/admin.php:1507
-msgid "Deny"
+#: mod/settings.php:1237
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/admin.php:1511
-msgid "Site admin"
+#: mod/settings.php:1238
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/admin.php:1512
-msgid "Account expired"
+#: mod/settings.php:1239
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/admin.php:1515
-msgid "New User"
+#: mod/settings.php:1270
+msgid "Account Settings"
 msgstr ""
 
-#: mod/admin.php:1516
-msgid "Deleted since"
+#: mod/settings.php:1278
+msgid "Password Settings"
 msgstr ""
 
-#: mod/admin.php:1521
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/settings.php:1280
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/admin.php:1522
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/settings.php:1281
+msgid "Current Password:"
 msgstr ""
 
-#: mod/admin.php:1532
-msgid "Name of the new user."
+#: mod/settings.php:1281 mod/settings.php:1282
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/admin.php:1533
-msgid "Nickname"
+#: mod/settings.php:1282
+msgid "Password:"
 msgstr ""
 
-#: mod/admin.php:1533
-msgid "Nickname of the new user."
+#: mod/settings.php:1286
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/admin.php:1534
-msgid "Email address of the new user."
+#: mod/settings.php:1288
+msgid "Email Address:"
 msgstr ""
 
-#: mod/admin.php:1577
-#, php-format
-msgid "Plugin %s disabled."
+#: mod/settings.php:1289
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/admin.php:1581
-#, php-format
-msgid "Plugin %s enabled."
+#: mod/settings.php:1290
+msgid "Your Language:"
 msgstr ""
 
-#: mod/admin.php:1592 mod/admin.php:1844
-msgid "Disable"
+#: mod/settings.php:1290
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/admin.php:1594 mod/admin.php:1846
-msgid "Enable"
+#: mod/settings.php:1291
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/admin.php:1617 mod/admin.php:1893
-msgid "Toggle"
+#: mod/settings.php:1292
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/admin.php:1625 mod/admin.php:1902
-msgid "Author: "
+#: mod/settings.php:1295
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/admin.php:1626 mod/admin.php:1903
-msgid "Maintainer: "
+#: mod/settings.php:1297
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/admin.php:1681
-msgid "Reload active plugins"
+#: mod/settings.php:1297 mod/settings.php:1327
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/admin.php:1686
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
+#: mod/settings.php:1298
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/admin.php:1805
-msgid "No themes found."
+#: mod/settings.php:1299
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/admin.php:1884
-msgid "Screenshot"
+#: mod/settings.php:1310
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/admin.php:1944
-msgid "Reload active themes"
+#: mod/settings.php:1311
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/admin.php:1949
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
+#: mod/settings.php:1315
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/admin.php:1950
-msgid "[Experimental]"
+#: mod/settings.php:1327
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/admin.php:1951
-msgid "[Unsupported]"
+#: mod/settings.php:1330
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/admin.php:1975
-msgid "Log settings updated."
+#: mod/settings.php:1331
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/admin.php:2007
-msgid "PHP log currently enabled."
+#: mod/settings.php:1332
+msgid "accepting a friend request"
 msgstr ""
 
-#: mod/admin.php:2009
-msgid "PHP log currently disabled."
+#: mod/settings.php:1333
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/admin.php:2018
-msgid "Clear"
+#: mod/settings.php:1334
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/admin.php:2023
-msgid "Enable Debugging"
+#: mod/settings.php:1335
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/admin.php:2024
-msgid "Log file"
+#: mod/settings.php:1336
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/admin.php:2024
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/settings.php:1337
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/admin.php:2025
-msgid "Log level"
+#: mod/settings.php:1338
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/admin.php:2028
-msgid "PHP logging"
+#: mod/settings.php:1339
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/admin.php:2029
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+#: mod/settings.php:1340
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/admin.php:2160
-#, php-format
-msgid "Lock feature %s"
+#: mod/settings.php:1341
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/admin.php:2168
-msgid "Manage Additional Features"
+#: mod/settings.php:1342
+msgid "You are tagged in a post"
 msgstr ""
 
-#: object/Item.php:359
-msgid "via"
+#: mod/settings.php:1343
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:44
-msgid "greenzero"
+#: mod/settings.php:1345
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:45
-msgid "purplezero"
+#: mod/settings.php:1345
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:46
-msgid "easterbunny"
+#: mod/settings.php:1347
+msgid "Text-only notification emails"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:47
-msgid "darkzero"
+#: mod/settings.php:1349
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:48
-msgid "comix"
+#: mod/settings.php:1351
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:49
-msgid "slackr"
+#: mod/settings.php:1352
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:64
-msgid "Variations"
+#: mod/settings.php:1355
+msgid "Relocate"
 msgstr ""
 
-#: view/theme/frio/config.php:47
-msgid "Default"
+#: mod/settings.php:1356
+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 ""
 
-#: view/theme/frio/config.php:59
-msgid "Note: "
+#: mod/settings.php:1357
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: view/theme/frio/config.php:59
-msgid "Check image permissions if all users are allowed to visit the image"
+#: object/Item.php:356
+msgid "via"
 msgstr ""
 
-#: view/theme/frio/config.php:67
-msgid "Select scheme"
+#: view/theme/duepuntozero/config.php:47
+msgid "greenzero"
 msgstr ""
 
-#: view/theme/frio/config.php:68
-msgid "Navigation bar background color"
+#: view/theme/duepuntozero/config.php:48
+msgid "purplezero"
 msgstr ""
 
-#: view/theme/frio/config.php:69
-msgid "Navigation bar icon color "
+#: view/theme/duepuntozero/config.php:49
+msgid "easterbunny"
 msgstr ""
 
-#: view/theme/frio/config.php:70
-msgid "Link color"
+#: view/theme/duepuntozero/config.php:50
+msgid "darkzero"
 msgstr ""
 
-#: view/theme/frio/config.php:71
-msgid "Set the background color"
+#: view/theme/duepuntozero/config.php:51
+msgid "comix"
 msgstr ""
 
-#: view/theme/frio/config.php:72
-msgid "Content background transparency"
+#: view/theme/duepuntozero/config.php:52
+msgid "slackr"
 msgstr ""
 
-#: view/theme/frio/config.php:73
-msgid "Set the background image"
+#: view/theme/duepuntozero/config.php:67
+msgid "Variations"
 msgstr ""
 
 #: view/theme/frio/php/Image.php:23
@@ -8824,127 +8786,167 @@ msgstr ""
 msgid "Resize to best fit and retain aspect ratio."
 msgstr ""
 
-#: view/theme/frio/theme.php:226
+#: view/theme/frio/config.php:50
+msgid "Default"
+msgstr ""
+
+#: view/theme/frio/config.php:62
+msgid "Note: "
+msgstr ""
+
+#: view/theme/frio/config.php:62
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr ""
+
+#: view/theme/frio/config.php:70
+msgid "Select scheme"
+msgstr ""
+
+#: view/theme/frio/config.php:71
+msgid "Navigation bar background color"
+msgstr ""
+
+#: view/theme/frio/config.php:72
+msgid "Navigation bar icon color "
+msgstr ""
+
+#: view/theme/frio/config.php:73
+msgid "Link color"
+msgstr ""
+
+#: view/theme/frio/config.php:74
+msgid "Set the background color"
+msgstr ""
+
+#: view/theme/frio/config.php:75
+msgid "Content background transparency"
+msgstr ""
+
+#: view/theme/frio/config.php:76
+msgid "Set the background image"
+msgstr ""
+
+#: view/theme/frio/theme.php:228
 msgid "Guest"
 msgstr ""
 
-#: view/theme/frio/theme.php:232
+#: view/theme/frio/theme.php:234
 msgid "Visitor"
 msgstr ""
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Alignment"
 msgstr ""
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Left"
 msgstr ""
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Center"
 msgstr ""
 
-#: view/theme/quattro/config.php:71
+#: view/theme/quattro/config.php:74
 msgid "Color scheme"
 msgstr ""
 
-#: view/theme/quattro/config.php:72
+#: view/theme/quattro/config.php:75
 msgid "Posts font size"
 msgstr ""
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:76
 msgid "Textareas font size"
 msgstr ""
 
-#: view/theme/vier/config.php:69
+#: view/theme/vier/config.php:70
 msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: view/theme/vier/config.php:115
+#: view/theme/vier/config.php:116
 msgid "Set style"
 msgstr ""
 
-#: view/theme/vier/config.php:116
+#: view/theme/vier/config.php:117
 msgid "Community Pages"
 msgstr ""
 
-#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151
 msgid "Community Profiles"
 msgstr ""
 
-#: view/theme/vier/config.php:118
+#: view/theme/vier/config.php:119
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392
 msgid "Connect Services"
 msgstr ""
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199
 msgid "Find Friends"
 msgstr ""
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181
 msgid "Last users"
 msgstr ""
 
-#: view/theme/vier/theme.php:198
+#: view/theme/vier/theme.php:200
 msgid "Local Directory"
 msgstr ""
 
-#: view/theme/vier/theme.php:290
+#: view/theme/vier/theme.php:292
 msgid "Quick Start"
 msgstr ""
 
-#: index.php:433
-msgid "toggle mobile"
-msgstr ""
-
-#: boot.php:999
+#: src/App.php:505
 msgid "Delete this item?"
 msgstr ""
 
-#: boot.php:1001
+#: src/App.php:507
 msgid "show fewer"
 msgstr ""
 
-#: boot.php:1729
+#: index.php:436
+msgid "toggle mobile"
+msgstr ""
+
+#: boot.php:726
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: boot.php:1843
+#: boot.php:838
 msgid "Create a New Account"
 msgstr ""
 
-#: boot.php:1871
+#: boot.php:866
 msgid "Password: "
 msgstr ""
 
-#: boot.php:1872
+#: boot.php:867
 msgid "Remember me"
 msgstr ""
 
-#: boot.php:1875
+#: boot.php:870
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: boot.php:1881
+#: boot.php:876
 msgid "Forgot your password?"
 msgstr ""
 
-#: boot.php:1884
+#: boot.php:879
 msgid "Website Terms of Service"
 msgstr ""
 
-#: boot.php:1885
+#: boot.php:880
 msgid "terms of service"
 msgstr ""
 
-#: boot.php:1887
+#: boot.php:882
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: boot.php:1888
+#: boot.php:883
 msgid "privacy policy"
 msgstr ""
index 2cd3d1d5ef01a8c22ecf9274844a8485035ea8d3..f38e76b21e31df8bb7a08dc45250b6b7730555c9 100644 (file)
@@ -35,8 +35,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-03 07:08+0200\n"
-"PO-Revision-Date: 2017-05-05 05:43+0000\n"
+"POT-Creation-Date: 2017-05-28 11:09+0200\n"
+"PO-Revision-Date: 2017-05-29 05:11+0000\n"
 "Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -45,1837 +45,2003 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
-#: view/theme/vier/theme.php:254
-msgid "Forums"
-msgstr "Foren"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:256
-msgid "External link to forum"
-msgstr "Externer Link zum Forum"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: include/ForumManager.php:119 include/contact_widgets.php:269
-#: include/items.php:2450 mod/content.php:624 object/Item.php:420
-#: view/theme/vier/theme.php:259 boot.php:1000
-msgid "show more"
-msgstr "mehr anzeigen"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "System"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517
-#: view/theme/frio/theme.php:253
-msgid "Network"
-msgstr "Netzwerk"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: include/NotificationsManager.php:167 mod/network.php:832
-#: mod/profiles.php:696
-msgid "Personal"
-msgstr "Persönlich"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161
-msgid "Home"
-msgstr "Pinnwand"
+#: include/contact_selectors.php:56 mod/admin.php:986
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: include/contact_selectors.php:57 mod/admin.php:987
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: include/contact_selectors.php:58 mod/admin.php:988
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: include/NotificationsManager.php:250
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: include/contact_selectors.php:59 mod/admin.php:989
+msgid "Daily"
+msgstr "Täglich"
 
-#: include/NotificationsManager.php:265
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:886
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/NotificationsManager.php:304
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/NotificationsManager.php:334
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540
+msgid "Email"
+msgstr "E-Mail"
 
-#: include/NotificationsManager.php:770
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:888
+#: mod/settings.php:849
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/NotificationsManager.php:803
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/NotificationsManager.php:803
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
-#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
-#: mod/item.php:467
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/delivery.php:427
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: include/delivery.php:439 include/enotify.php:43
-msgid "noreply"
-msgstr "noreply"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/like.php:31 include/like.php:36 include/conversation.php:156
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/like.php:41
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/like.php:46
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: include/like.php:51
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr "GNU social Connector"
 
-#: include/like.php:178 include/conversation.php:141
-#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "photo"
-msgstr "Foto"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "pnut"
 
-#: include/like.php:178 include/conversation.php:136
-#: include/conversation.php:146 include/conversation.php:288
-#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "status"
-msgstr "Status"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/like.php:180 include/conversation.php:133
-#: include/conversation.php:285 include/text.php:1870
-msgid "event"
-msgstr "Event"
+#: include/features.php:65
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: include/message.php:15 include/message.php:169
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: include/features.php:67
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: include/features.php:68
+msgid "Photo Location"
+msgstr "Aufnahmeort"
 
-#: include/nav.php:40 include/text.php:1083
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
-msgid "Logout"
-msgstr "Abmelden"
+#: include/features.php:69
+msgid "Export Public Calendar"
+msgstr "Öffentlichen Kalender exportieren"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
+msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
 
-#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645
-#: mod/contacts.php:841 view/theme/frio/theme.php:246
-msgid "Status"
-msgstr "Status"
+#: include/features.php:74
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: include/features.php:75
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: include/nav.php:82 include/identity.php:622 include/identity.php:744
-#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849
-#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
-msgid "Profile"
-msgstr "Profil"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: include/features.php:76
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31
-#: view/theme/frio/theme.php:248
-msgid "Photos"
-msgstr "Bilder"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: include/nav.php:84 include/identity.php:793 include/identity.php:796
-#: view/theme/frio/theme.php:249
-msgid "Videos"
-msgstr "Videos"
+#: include/features.php:82
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:805
-#: include/identity.php:816 mod/cal.php:270 mod/events.php:374
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-msgid "Events"
-msgstr "Veranstaltungen"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
+msgstr "Zeige Foren"
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-msgid "Your events"
-msgstr "Deine Ereignisse"
-
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/features.php:84
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
-msgid "Login"
-msgstr "Anmeldung"
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/features.php:85
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1844
-msgid "Register"
-msgstr "Registrieren"
+#: include/features.php:86 mod/network.php:209 mod/search.php:37
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/features.php:86
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297
-msgid "Help"
-msgstr "Hilfe"
+#: include/features.php:91
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/features.php:92
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Apps"
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/features.php:93
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: include/nav.php:123 include/text.php:1080 mod/search.php:149
-msgid "Search"
-msgstr "Suche"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/features.php:94
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: include/nav.php:126 include/text.php:1088
-msgid "Full Text"
-msgstr "Volltext"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: include/nav.php:127 include/text.php:1089
-msgid "Tags"
-msgstr "Tags"
+#: include/features.php:99
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:838
-#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
-#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
-msgid "Contacts"
-msgstr "Kontakte"
+#: include/features.php:100
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:32
-msgid "Community"
-msgstr "Gemeinschaft"
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/features.php:101
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: include/nav.php:149 include/identity.php:808 include/identity.php:819
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: include/features.php:102
+msgid "Tagging"
+msgstr "Tagging"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/features.php:103
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Information"
+#: include/features.php:103
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/features.php:104 include/contact_widgets.php:162
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/features.php:105
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/features.php:106
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/features.php:107
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: include/nav.php:171 mod/settings.php:906
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
+msgstr "Erweiterte Profil-Einstellungen"
 
-#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
-msgid "Messages"
-msgstr "Nachrichten"
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Eingang"
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/group.php:243
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: include/group.php:266
+msgid "edit"
+msgstr "bearbeiten"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Verwalten"
+#: include/group.php:287 mod/newmember.php:39
+msgid "Groups"
+msgstr "Gruppen"
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/group.php:289
+msgid "Edit groups"
+msgstr "Gruppen bearbeiten"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegationen"
+#: include/group.php:291
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: include/group.php:292
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
-msgid "Settings"
-msgstr "Einstellungen"
+#: include/group.php:293 mod/group.php:100 mod/group.php:197
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/group.php:295
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: include/nav.php:189 include/identity.php:290
-msgid "Profiles"
-msgstr "Profile"
+#: include/group.php:297 mod/network.php:210
+msgid "add"
+msgstr "hinzufügen"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133
+#: view/theme/vier/theme.php:256
+msgid "Forums"
+msgstr "Foren"
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
+#: include/ForumManager.php:118 view/theme/vier/theme.php:258
+msgid "External link to forum"
+msgstr "Externer Link zum Forum"
 
-#: include/nav.php:197 mod/admin.php:196
-msgid "Admin"
-msgstr "Administration"
+#: include/ForumManager.php:121 include/contact_widgets.php:271
+#: include/items.php:2432 mod/content.php:625 object/Item.php:417
+#: view/theme/vier/theme.php:261 src/App.php:506
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "System"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigation"
+#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518
+#: view/theme/frio/theme.php:255
+msgid "Network"
+msgstr "Netzwerk"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Sitemap"
+#: include/NotificationsManager.php:167 mod/network.php:835
+#: mod/profiles.php:699
+msgid "Personal"
+msgstr "Persönlich"
 
-#: include/plugin.php:530 include/plugin.php:532
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: include/NotificationsManager.php:174 include/nav.php:107
+#: include/nav.php:163
+msgid "Home"
+msgstr "Pinnwand"
 
-#: include/plugin.php:538
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
+#: include/NotificationsManager.php:181 include/nav.php:168
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: include/plugin.php:543
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
+#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: include/NotificationsManager.php:250
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: include/NotificationsManager.php:265
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: include/NotificationsManager.php:291
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: include/NotificationsManager.php:304
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: include/NotificationsManager.php:317
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: include/NotificationsManager.php:334
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: include/NotificationsManager.php:770
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: include/NotificationsManager.php:803
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: include/NotificationsManager.php:803
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: include/acl_selectors.php:360
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: include/acl_selectors.php:361 mod/settings.php:1189
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: include/profile_selectors.php:6 include/conversation.php:1547
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Unentschieden"
-msgstr[1] "Unentschieden"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:109
+msgid "show"
+msgstr "zeigen"
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:109
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: include/acl_selectors.php:375 mod/editpost.php:125
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: include/acl_selectors.php:376 mod/editpost.php:132
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198
+#: mod/photos.php:1595
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: include/acl_selectors.php:379
+msgid "Close"
+msgstr "Schließen"
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: include/auth.php:52
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: include/auth.php:123 include/auth.php:185 mod/openid.php:110
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: include/auth.php:139 include/user.php:75
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: include/auth.php:139 include/user.php:75
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56
+#: include/event.php:459
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62
+#: include/event.php:460
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69
+#: include/event.php:461 include/identity.php:342 mod/directory.php:135
+#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639
+msgid "Location:"
+msgstr "Ort:"
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: include/contact_widgets.php:8
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: include/contact_widgets.php:9
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: include/contact_widgets.php:10
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: include/contact_widgets.php:12 include/identity.php:230
+#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92
+#: mod/suggest.php:103
+msgid "Connect"
+msgstr "Verbinden"
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: include/contact_widgets.php:26
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: include/contact_widgets.php:32
+msgid "Find People"
+msgstr "Leute finden"
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: include/contact_widgets.php:33
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: include/contact_widgets.php:34 include/conversation.php:1018
+#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212
+#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267
-msgid "Friends"
-msgstr "Kontakte"
+#: include/contact_widgets.php:35
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809
+msgid "Find"
+msgstr "Finde"
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: include/contact_widgets.php:37 mod/suggest.php:116
+#: view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: include/contact_widgets.php:39
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: include/contact_widgets.php:40 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: include/contact_widgets.php:127
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: include/contact_widgets.php:130
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: include/contact_widgets.php:165 include/contact_widgets.php:200
+msgid "Everything"
+msgstr "Alles"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: include/contact_widgets.php:197
+msgid "Categories"
+msgstr "Kategorien"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: include/contact_widgets.php:266
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: include/conversation.php:134 include/conversation.php:286
+#: include/like.php:183 include/text.php:1871
+msgid "event"
+msgstr "Event"
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: include/conversation.php:137 include/conversation.php:147
+#: include/conversation.php:289 include/conversation.php:298
+#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89
+#: mod/tagger.php:63
+msgid "status"
+msgstr "Status"
 
-#: include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: include/conversation.php:142 include/conversation.php:294
+#: include/like.php:181 include/text.php:1873 mod/subthread.php:89
+#: mod/tagger.php:63
+msgid "photo"
+msgstr "Foto"
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: include/conversation.php:157 include/like.php:34 include/like.php:39
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: include/conversation.php:160
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: include/conversation.php:163
+#, 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/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: include/conversation.php:166
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: include/conversation.php:199 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: include/conversation.php:240
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: include/conversation.php:261 mod/mood.php:64
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: include/security.php:61
-msgid "Welcome "
-msgstr "Willkommen "
+#: include/conversation.php:308 mod/tagger.php:96
+#, 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/security.php:62
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: include/conversation.php:335
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/security.php:65
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: include/conversation.php:336
+#, 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/security.php:429
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664
+#: mod/profiles.php:344
+msgid "Likes"
+msgstr "Likes"
 
-#: include/uimport.php:91
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664
+#: mod/profiles.php:348
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/uimport.php:97
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: include/conversation.php:616 include/conversation.php:1542
+#: mod/content.php:374 mod/photos.php:1665
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
 
-#: include/uimport.php:113 include/uimport.php:124
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
+
+#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
+
+#: include/conversation.php:748 mod/content.php:454 mod/content.php:760
+#: mod/photos.php:1730 object/Item.php:137
+msgid "Select"
+msgstr "Auswählen"
 
-#: include/uimport.php:117 include/uimport.php:128
+#: include/conversation.php:749 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819
+#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138
+msgid "Delete"
+msgstr "Löschen"
+
+#: include/conversation.php:792 mod/content.php:488 mod/content.php:916
+#: mod/content.php:917 object/Item.php:353 object/Item.php:354
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: include/uimport.php:150
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: include/conversation.php:804 object/Item.php:341
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: include/uimport.php:170
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: include/conversation.php:805 object/Item.php:342
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: include/uimport.php:219
+#: include/conversation.php:812 mod/content.php:498 mod/content.php:929
+#: object/Item.php:367
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: include/uimport.php:289
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+#: include/conversation.php:828 mod/content.php:514
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453
-#: include/conversation.php:1004 include/conversation.php:1020
-#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73
-#: mod/suggest.php:82 mod/dirfind.php:209
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/conversation.php:830 include/conversation.php:1299
+#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116
+#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629
+#: mod/wallmessage.php:142 object/Item.php:392
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: include/Contact.php:409 include/contact_widgets.php:32
-#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610
-#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: include/conversation.php:907
+msgid "remove"
+msgstr "löschen"
+
+#: include/conversation.php:911
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: include/Contact.php:452 include/conversation.php:1003
+#: include/conversation.php:1003
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
+
+#: include/conversation.php:1004 include/Contact.php:432
 msgid "View Status"
 msgstr "Pinnwand anschauen"
 
-#: include/Contact.php:454 include/conversation.php:1005
+#: include/conversation.php:1005 include/conversation.php:1021
+#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433
+#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211
+#: mod/match.php:76 mod/suggest.php:84
+msgid "View Profile"
+msgstr "Profil anschauen"
+
+#: include/conversation.php:1006 include/Contact.php:434
 msgid "View Photos"
 msgstr "Bilder anschauen"
 
-#: include/Contact.php:455 include/conversation.php:1006
+#: include/conversation.php:1007 include/Contact.php:435
 msgid "Network Posts"
 msgstr "Netzwerkbeiträge"
 
-#: include/Contact.php:456 include/conversation.php:1007
+#: include/conversation.php:1008 include/Contact.php:436
 msgid "View Contact"
 msgstr "Kontakt anzeigen"
 
-#: include/Contact.php:457
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
-
-#: include/Contact.php:458 include/conversation.php:1008
+#: include/conversation.php:1009 include/Contact.php:438
 msgid "Send PM"
 msgstr "Private Nachricht senden"
 
-#: include/Contact.php:459 include/conversation.php:1012
+#: include/conversation.php:1013 include/Contact.php:439
 msgid "Poke"
 msgstr "Anstupsen"
 
-#: include/Contact.php:840
-msgid "Organisation"
-msgstr "Organisation"
+#: include/conversation.php:1140
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: include/Contact.php:843
-msgid "News"
-msgstr "Nachrichten"
+#: include/conversation.php:1143
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: include/Contact.php:846
-msgid "Forum"
-msgstr "Forum"
+#: include/conversation.php:1146
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
 
-#: include/acl_selectors.php:353
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: include/conversation.php:1149
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
 
-#: include/acl_selectors.php:358
+#: include/conversation.php:1152
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
 
-#: include/acl_selectors.php:359 mod/settings.php:1188
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: include/conversation.php:1163
+msgid "and"
+msgstr "und"
 
-#: include/acl_selectors.php:365
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: include/conversation.php:1169
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: include/acl_selectors.php:366 view/theme/vier/config.php:108
-msgid "show"
-msgstr "zeigen"
+#: include/conversation.php:1178
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: include/acl_selectors.php:367 view/theme/vier/config.php:108
-msgid "don't show"
-msgstr "nicht zeigen"
+#: include/conversation.php:1179
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: include/acl_selectors.php:373 mod/editpost.php:123
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: include/conversation.php:1182
+#, 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/acl_selectors.php:374 mod/editpost.php:130
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: include/conversation.php:1183
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
 
-#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196
-#: mod/photos.php:1593
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
 
-#: include/acl_selectors.php:377
-msgid "Close"
-msgstr "Schließen"
+#: include/conversation.php:1187
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
 
-#: include/api.php:1089
+#: include/conversation.php:1190
 #, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
 
-#: include/api.php:1110
+#: include/conversation.php:1191
 #, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
 
-#: include/api.php:1131
+#: include/conversation.php:1194
 #, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
 
-#: include/auth.php:51
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: include/conversation.php:1195
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s  nehmen vielleicht teil."
 
-#: include/auth.php:122 include/auth.php:184 mod/openid.php:110
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: include/conversation.php:1224 include/conversation.php:1240
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: include/auth.php:138 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
-
-#: include/auth.php:138 include/user.php:75
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: include/conversation.php:1225 include/conversation.php:1241
+#: mod/message.php:273 mod/message.php:280 mod/message.php:420
+#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: include/conversation.php:1226 include/conversation.php:1242
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54
-#: include/event.php:525
-msgid "Starts:"
-msgstr "Beginnt:"
+#: include/conversation.php:1227 include/conversation.php:1243
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60
-#: include/event.php:526
-msgid "Finishes:"
-msgstr "Endet:"
+#: include/conversation.php:1228 include/conversation.php:1244
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
-#: include/event.php:527 include/identity.php:336 mod/contacts.php:636
-#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
-msgid "Location:"
-msgstr "Ort:"
+#: include/conversation.php:1229 include/conversation.php:1245
+#: mod/filer.php:31
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: include/conversation.php:1230 include/conversation.php:1246
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: include/bbcode.php:497
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/conversation.php:1231
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: include/bbcode.php:1089 include/bbcode.php:1111
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: include/conversation.php:1280
+msgid "Share"
+msgstr "Teilen"
 
-#: include/bbcode.php:1141 include/bbcode.php:1142
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337
+#: mod/message.php:521 mod/wallmessage.php:140
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: include/bbcode.php:1257
-msgid "Invalid source protocol"
-msgstr "Ungültiges Quell-Protokoll"
+#: include/conversation.php:1282 mod/editpost.php:103
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: include/bbcode.php:1267
-msgid "Invalid link protocol"
-msgstr "Ungültiges Link-Protokoll"
+#: include/conversation.php:1283 mod/editpost.php:104
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: include/conversation.php:1284 mod/editpost.php:105
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338
+#: mod/message.php:522 mod/wallmessage.php:141
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: include/conversation.php:1286 mod/editpost.php:107
+msgid "web link"
+msgstr "Weblink"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: include/conversation.php:1287 mod/editpost.php:108
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: include/conversation.php:1288 mod/editpost.php:109
+msgid "video link"
+msgstr "Video-Link"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: include/conversation.php:1289 mod/editpost.php:110
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: include/contact_selectors.php:56 mod/admin.php:980
-msgid "Frequently"
-msgstr "immer wieder"
+#: include/conversation.php:1290 mod/editpost.php:111
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: include/contact_selectors.php:57 mod/admin.php:981
-msgid "Hourly"
-msgstr "Stündlich"
+#: include/conversation.php:1291 mod/editpost.php:112
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: include/contact_selectors.php:58 mod/admin.php:982
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: include/conversation.php:1292 mod/editpost.php:113
+msgid "set location"
+msgstr "Ort setzen"
 
-#: include/contact_selectors.php:59 mod/admin.php:983
-msgid "Daily"
-msgstr "Täglich"
+#: include/conversation.php:1293 mod/editpost.php:114
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: include/conversation.php:1294 mod/editpost.php:115
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: include/conversation.php:1296 mod/editpost.php:129
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:886
-msgid "Friendica"
-msgstr "Friendica"
+#: include/conversation.php:1298 mod/editpost.php:131
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/conversation.php:1300 mod/editpost.php:117
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/conversation.php:1301 mod/editpost.php:146
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
-msgid "Email"
-msgstr "E-Mail"
+#: include/conversation.php:1309 mod/editpost.php:126
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:888
-#: mod/settings.php:848
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137
+#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691
+#: mod/photos.php:1771 object/Item.php:711
+msgid "Preview"
+msgstr "Vorschau"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140
+#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126
+#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339
+#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134
+#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683
+#: mod/settings.php:709
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: include/conversation.php:1324
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/conversation.php:1325
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: include/conversation.php:1326
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144
+msgid "Message"
+msgstr "Nachricht"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/conversation.php:1332 mod/editpost.php:145
+msgid "Browser"
+msgstr "Browser"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/conversation.php:1514
+msgid "View all"
+msgstr "Zeige alle"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/conversation.php:1536
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "mag ich"
+msgstr[1] "Mag ich"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: include/conversation.php:1539
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "mag ich nicht"
+msgstr[1] "Mag ich nicht"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social Connector"
-msgstr "GNU social Connector"
+#: include/conversation.php:1545
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Nicht teilnehmend "
+msgstr[1] "Nicht teilnehmend"
 
-#: include/contact_selectors.php:92
-msgid "pnut"
-msgstr "pnut"
+#: include/conversation.php:1548 include/profile_selectors.php:6
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Unentschieden"
+msgstr[1] "Unentschieden"
 
-#: include/contact_selectors.php:93
-msgid "App.net"
-msgstr "App.net"
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: include/datetime.php:196 include/identity.php:656
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: include/datetime.php:198 mod/profiles.php:724
+msgid "Age: "
+msgstr "Alter: "
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: include/datetime.php:200
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
 
-#: include/contact_widgets.php:10 include/identity.php:224
-#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101
-#: mod/dirfind.php:207
-msgid "Connect"
-msgstr "Verbinden"
+#: include/datetime.php:370
+msgid "never"
+msgstr "nie"
 
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: include/datetime.php:376
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Leute finden"
+#: include/datetime.php:379
+msgid "year"
+msgstr "Jahr"
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: include/datetime.php:379
+msgid "years"
+msgstr "Jahre"
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: include/datetime.php:380 include/event.php:453 mod/cal.php:281
+#: mod/events.php:387
+msgid "month"
+msgstr "Monat"
 
-#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
-msgid "Find"
-msgstr "Finde"
+#: include/datetime.php:380
+msgid "months"
+msgstr "Monate"
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:201
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: include/datetime.php:381 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
+msgid "week"
+msgstr "Woche"
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:200
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: include/datetime.php:381
+msgid "weeks"
+msgstr "Wochen"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: include/datetime.php:382 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
+msgid "day"
+msgstr "Tag"
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: include/datetime.php:382
+msgid "days"
+msgstr "Tage"
 
-#: include/contact_widgets.php:125
-msgid "Networks"
-msgstr "Netzwerke"
+#: include/datetime.php:383
+msgid "hour"
+msgstr "Stunde"
 
-#: include/contact_widgets.php:128
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: include/datetime.php:383
+msgid "hours"
+msgstr "Stunden"
 
-#: include/contact_widgets.php:160 include/features.php:104
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
+#: include/datetime.php:384
+msgid "minute"
+msgstr "Minute"
 
-#: include/contact_widgets.php:163 include/contact_widgets.php:198
-msgid "Everything"
-msgstr "Alles"
+#: include/datetime.php:384
+msgid "minutes"
+msgstr "Minuten"
 
-#: include/contact_widgets.php:195
-msgid "Categories"
-msgstr "Kategorien"
+#: include/datetime.php:385
+msgid "second"
+msgstr "Sekunde"
 
-#: include/contact_widgets.php:264
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+#: include/datetime.php:385
+msgid "seconds"
+msgstr "Sekunden"
 
-#: include/conversation.php:159
+#: include/datetime.php:394
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: include/conversation.php:162
+#: include/datetime.php:620
 #, 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 "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: include/conversation.php:165
+#: include/datetime.php:621 include/dfrn.php:1254
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: include/conversation.php:198 mod/dfrn_confirm.php:478
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: include/delivery.php:428
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: include/delivery.php:440 include/enotify.php:46
+msgid "noreply"
+msgstr "noreply"
 
-#: include/conversation.php:260 mod/mood.php:63
+#: include/dfrn.php:1253
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
 
-#: include/conversation.php:307 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+#: include/event.php:408
+msgid "all-day"
+msgstr "ganztägig"
 
-#: include/conversation.php:334
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: include/event.php:410
+msgid "Sun"
+msgstr "So"
 
-#: include/conversation.php:335
-#, 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/event.php:411
+msgid "Mon"
+msgstr "Mo"
 
-#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
-#: mod/profiles.php:340
-msgid "Likes"
-msgstr "Likes"
+#: include/event.php:412
+msgid "Tue"
+msgstr "Di"
 
-#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
-#: mod/profiles.php:344
-msgid "Dislikes"
-msgstr "Dislikes"
+#: include/event.php:413
+msgid "Wed"
+msgstr "Mi"
 
-#: include/conversation.php:615 include/conversation.php:1541
-#: mod/content.php:373 mod/photos.php:1663
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
+#: include/event.php:414
+msgid "Thu"
+msgstr "Do"
 
-#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
+#: include/event.php:415
+msgid "Fri"
+msgstr "Fr"
 
-#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
+#: include/event.php:416
+msgid "Sat"
+msgstr "Sa"
 
-#: include/conversation.php:747 mod/content.php:453 mod/content.php:759
-#: mod/photos.php:1728 object/Item.php:137
-msgid "Select"
-msgstr "Auswählen"
+#: include/event.php:418 include/text.php:1199 mod/settings.php:982
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
-#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
-#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
-msgid "Delete"
-msgstr "Löschen"
+#: include/event.php:419 include/text.php:1199 mod/settings.php:982
+msgid "Monday"
+msgstr "Montag"
 
-#: include/conversation.php:791 mod/content.php:487 mod/content.php:915
-#: mod/content.php:916 object/Item.php:356 object/Item.php:357
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: include/event.php:420 include/text.php:1199
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/conversation.php:803 object/Item.php:344
-msgid "Categories:"
-msgstr "Kategorien:"
+#: include/event.php:421 include/text.php:1199
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/conversation.php:804 object/Item.php:345
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: include/event.php:422 include/text.php:1199
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: include/conversation.php:811 mod/content.php:497 mod/content.php:928
-#: object/Item.php:370
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: include/event.php:423 include/text.php:1199
+msgid "Friday"
+msgstr "Freitag"
 
-#: include/conversation.php:827 mod/content.php:513
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: include/event.php:424 include/text.php:1199
+msgid "Saturday"
+msgstr "Samstag"
 
-#: include/conversation.php:829 include/conversation.php:1298
-#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
-#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522
-#: mod/photos.php:1627 object/Item.php:395
-msgid "Please wait"
-msgstr "Bitte warten"
+#: include/event.php:426
+msgid "Jan"
+msgstr "Jan"
 
-#: include/conversation.php:906
-msgid "remove"
-msgstr "löschen"
+#: include/event.php:427
+msgid "Feb"
+msgstr "Feb"
 
-#: include/conversation.php:910
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/event.php:428
+msgid "Mar"
+msgstr "März"
 
-#: include/conversation.php:1002
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/event.php:429
+msgid "Apr"
+msgstr "Apr"
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: include/event.php:430 include/event.php:443 include/text.php:1203
+msgid "May"
+msgstr "Mai"
 
-#: include/conversation.php:1142
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: include/event.php:431
+msgid "Jun"
+msgstr "Jun"
 
-#: include/conversation.php:1145
-#, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
+#: include/event.php:432
+msgid "Jul"
+msgstr "Juli"
 
-#: include/conversation.php:1148
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
+#: include/event.php:433
+msgid "Aug"
+msgstr "Aug"
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
+#: include/event.php:434
+msgid "Sept"
+msgstr "Sep"
 
-#: include/conversation.php:1162
-msgid "and"
-msgstr "und"
+#: include/event.php:435
+msgid "Oct"
+msgstr "Okt"
 
-#: include/conversation.php:1168
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: include/event.php:436
+msgid "Nov"
+msgstr "Nov"
 
-#: include/conversation.php:1177
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: include/event.php:437
+msgid "Dec"
+msgstr "Dez"
 
-#: include/conversation.php:1178
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: include/event.php:439 include/text.php:1203
+msgid "January"
+msgstr "Januar"
 
-#: include/conversation.php:1181
-#, 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/event.php:440 include/text.php:1203
+msgid "February"
+msgstr "Februar"
 
-#: include/conversation.php:1182
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
+#: include/event.php:441 include/text.php:1203
+msgid "March"
+msgstr "März"
 
-#: include/conversation.php:1185
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+#: include/event.php:442 include/text.php:1203
+msgid "April"
+msgstr "April"
 
-#: include/conversation.php:1186
-#, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
+#: include/event.php:444 include/text.php:1203
+msgid "June"
+msgstr "Juni"
 
-#: include/conversation.php:1189
-#, 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/event.php:445 include/text.php:1203
+msgid "July"
+msgstr "Juli"
 
-#: include/conversation.php:1190
-#, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
+#: include/event.php:446 include/text.php:1203
+msgid "August"
+msgstr "August"
 
-#: include/conversation.php:1193
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+#: include/event.php:447 include/text.php:1203
+msgid "September"
+msgstr "September"
 
-#: include/conversation.php:1194
-#, php-format
-msgid "%s anttend maybe."
-msgstr "%s  nehmen vielleicht teil."
+#: include/event.php:448 include/text.php:1203
+msgid "October"
+msgstr "Oktober"
 
-#: include/conversation.php:1223 include/conversation.php:1239
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/event.php:449 include/text.php:1203
+msgid "November"
+msgstr "November"
 
-#: include/conversation.php:1224 include/conversation.php:1240
-#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271
-#: mod/message.php:278 mod/message.php:418 mod/message.php:425
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: include/event.php:450 include/text.php:1203
+msgid "December"
+msgstr "Dezember"
 
-#: include/conversation.php:1225 include/conversation.php:1241
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/event.php:452 mod/cal.php:280 mod/events.php:386
+msgid "today"
+msgstr "Heute"
 
-#: include/conversation.php:1226 include/conversation.php:1242
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/event.php:457
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
 
-#: include/conversation.php:1227 include/conversation.php:1243
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/event.php:570
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/conversation.php:1228 include/conversation.php:1244
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: include/event.php:592
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: include/conversation.php:1229 include/conversation.php:1245
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/event.php:593
+msgid "Delete event"
+msgstr "Veranstaltung löschen"
 
-#: include/conversation.php:1230
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/event.php:619 include/text.php:1601 include/text.php:1608
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: include/conversation.php:1279
-msgid "Share"
-msgstr "Teilen"
+#: include/event.php:873
+msgid "Export"
+msgstr "Exportieren"
 
-#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138
-#: mod/message.php:335 mod/message.php:519
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: include/event.php:874
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
 
-#: include/conversation.php:1281 mod/editpost.php:101
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: include/event.php:875
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
 
-#: include/conversation.php:1282 mod/editpost.php:102
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: include/follow.php:84 mod/dfrn_request.php:514
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: include/conversation.php:1283 mod/editpost.php:103
-msgid "attach file"
-msgstr "Datei anhängen"
+#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520
+#: mod/admin.php:280 mod/admin.php:298
+msgid "Blocked domain"
+msgstr "Blockierte Daimain"
 
-#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139
-#: mod/message.php:336 mod/message.php:520
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: include/follow.php:94
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: include/conversation.php:1285 mod/editpost.php:105
-msgid "web link"
-msgstr "Weblink"
+#: include/follow.php:122
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: include/conversation.php:1286 mod/editpost.php:106
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: include/follow.php:123 include/follow.php:137
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: include/conversation.php:1287 mod/editpost.php:107
-msgid "video link"
-msgstr "Video-Link"
+#: include/follow.php:135
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: include/conversation.php:1288 mod/editpost.php:108
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: include/follow.php:140
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: include/conversation.php:1289 mod/editpost.php:109
-msgid "audio link"
-msgstr "Audio-Link"
+#: include/follow.php:143
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: include/conversation.php:1290 mod/editpost.php:110
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: include/follow.php:146
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: include/conversation.php:1291 mod/editpost.php:111
-msgid "set location"
-msgstr "Ort setzen"
+#: include/follow.php:147
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: include/conversation.php:1292 mod/editpost.php:112
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: include/follow.php:153
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: include/conversation.php:1293 mod/editpost.php:113
-msgid "clear location"
-msgstr "Ort löschen"
+#: include/follow.php:158
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: include/conversation.php:1295 mod/editpost.php:127
-msgid "Set title"
-msgstr "Titel setzen"
+#: include/follow.php:259
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: include/conversation.php:1297 mod/editpost.php:129
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: include/like.php:44
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/conversation.php:1299 mod/editpost.php:115
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: include/like.php:49
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/conversation.php:1300 mod/editpost.php:144
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: include/like.php:54
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/conversation.php:1308 mod/editpost.php:124
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42
+#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125
+#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841
+#: mod/photos.php:1855
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135
-#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689
-#: mod/photos.php:1769 object/Item.php:714
-msgid "Preview"
-msgstr "Vorschau"
+#: include/security.php:63
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
-#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
-#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
-#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
-#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682
-#: mod/settings.php:708 mod/videos.php:132
-msgid "Cancel"
-msgstr "Abbrechen"
+#: include/security.php:64
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/conversation.php:1323
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: include/security.php:67
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/conversation.php:1324
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: include/security.php:431
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: include/conversation.php:1325
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: include/text.php:308
+msgid "newer"
+msgstr "neuer"
 
-#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142
-msgid "Message"
-msgstr "Nachricht"
+#: include/text.php:309
+msgid "older"
+msgstr "älter"
 
-#: include/conversation.php:1331 mod/editpost.php:143
-msgid "Browser"
-msgstr "Browser"
+#: include/text.php:314
+msgid "first"
+msgstr "erste"
 
-#: include/conversation.php:1513
-msgid "View all"
-msgstr "Zeige alle"
+#: include/text.php:315
+msgid "prev"
+msgstr "vorige"
 
-#: include/conversation.php:1535
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "mag ich"
-msgstr[1] "Mag ich"
+#: include/text.php:349
+msgid "next"
+msgstr "nächste"
 
-#: include/conversation.php:1538
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "mag ich nicht"
-msgstr[1] "Mag ich nicht"
+#: include/text.php:350
+msgid "last"
+msgstr "letzte"
 
-#: include/conversation.php:1544
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Nicht teilnehmend "
-msgstr[1] "Nicht teilnehmend"
+#: include/text.php:404
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
 
-#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: include/text.php:405
+msgid "The end"
+msgstr "Das Ende"
 
-#: include/datetime.php:196 include/identity.php:644
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: include/text.php:956
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: include/datetime.php:198 mod/profiles.php:721
-msgid "Age: "
-msgstr "Alter: "
+#: include/text.php:981
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: include/datetime.php:200
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
+#: include/text.php:994
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: include/datetime.php:370
-msgid "never"
-msgstr "nie"
+#: include/text.php:1081 include/nav.php:125 mod/search.php:152
+msgid "Search"
+msgstr "Suche"
 
-#: include/datetime.php:376
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32
+#: mod/notes.php:64
+msgid "Save"
+msgstr "Speichern"
 
-#: include/datetime.php:379
-msgid "year"
-msgstr "Jahr"
+#: include/text.php:1084 include/nav.php:42
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/datetime.php:379
-msgid "years"
-msgstr "Jahre"
+#: include/text.php:1089 include/nav.php:128
+msgid "Full Text"
+msgstr "Volltext"
 
-#: include/datetime.php:380 include/event.php:519 mod/cal.php:279
-#: mod/events.php:384
-msgid "month"
-msgstr "Monat"
+#: include/text.php:1090 include/nav.php:129
+msgid "Tags"
+msgstr "Tags"
 
-#: include/datetime.php:380
-msgid "months"
-msgstr "Monate"
+#: include/text.php:1091 include/nav.php:130 include/nav.php:194
+#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124
+#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: include/datetime.php:381 include/event.php:520 mod/cal.php:280
-#: mod/events.php:385
-msgid "week"
-msgstr "Woche"
+#: include/text.php:1145
+msgid "poke"
+msgstr "anstupsen"
 
-#: include/datetime.php:381
-msgid "weeks"
-msgstr "Wochen"
+#: include/text.php:1145
+msgid "poked"
+msgstr "stupste"
 
-#: include/datetime.php:382 include/event.php:521 mod/cal.php:281
-#: mod/events.php:386
-msgid "day"
-msgstr "Tag"
+#: include/text.php:1146
+msgid "ping"
+msgstr "anpingen"
 
-#: include/datetime.php:382
-msgid "days"
-msgstr "Tage"
+#: include/text.php:1146
+msgid "pinged"
+msgstr "pingte"
 
-#: include/datetime.php:383
-msgid "hour"
-msgstr "Stunde"
+#: include/text.php:1147
+msgid "prod"
+msgstr "knuffen"
 
-#: include/datetime.php:383
-msgid "hours"
-msgstr "Stunden"
+#: include/text.php:1147
+msgid "prodded"
+msgstr "knuffte"
 
-#: include/datetime.php:384
-msgid "minute"
-msgstr "Minute"
+#: include/text.php:1148
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: include/datetime.php:384
-msgid "minutes"
-msgstr "Minuten"
+#: include/text.php:1148
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: include/datetime.php:385
-msgid "second"
-msgstr "Sekunde"
+#: include/text.php:1149
+msgid "finger"
+msgstr "befummeln"
 
-#: include/datetime.php:385
-msgid "seconds"
-msgstr "Sekunden"
+#: include/text.php:1149
+msgid "fingered"
+msgstr "befummelte"
 
-#: include/datetime.php:394
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: include/text.php:1150
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: include/datetime.php:620
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: include/text.php:1150
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: include/datetime.php:621 include/dfrn.php:1252
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: include/text.php:1164
+msgid "happy"
+msgstr "glücklich"
+
+#: include/text.php:1165
+msgid "sad"
+msgstr "traurig"
+
+#: include/text.php:1166
+msgid "mellow"
+msgstr "sanft"
+
+#: include/text.php:1167
+msgid "tired"
+msgstr "müde"
+
+#: include/text.php:1168
+msgid "perky"
+msgstr "frech"
+
+#: include/text.php:1169
+msgid "angry"
+msgstr "sauer"
+
+#: include/text.php:1170
+msgid "stupified"
+msgstr "verblüfft"
+
+#: include/text.php:1171
+msgid "puzzled"
+msgstr "verwirrt"
+
+#: include/text.php:1172
+msgid "interested"
+msgstr "interessiert"
+
+#: include/text.php:1173
+msgid "bitter"
+msgstr "verbittert"
+
+#: include/text.php:1174
+msgid "cheerful"
+msgstr "fröhlich"
+
+#: include/text.php:1175
+msgid "alive"
+msgstr "lebendig"
+
+#: include/text.php:1176
+msgid "annoyed"
+msgstr "verärgert"
+
+#: include/text.php:1177
+msgid "anxious"
+msgstr "unruhig"
+
+#: include/text.php:1178
+msgid "cranky"
+msgstr "schrullig"
+
+#: include/text.php:1179
+msgid "disturbed"
+msgstr "verstört"
+
+#: include/text.php:1180
+msgid "frustrated"
+msgstr "frustriert"
+
+#: include/text.php:1181
+msgid "motivated"
+msgstr "motiviert"
+
+#: include/text.php:1182
+msgid "relaxed"
+msgstr "entspannt"
+
+#: include/text.php:1183
+msgid "surprised"
+msgstr "überrascht"
+
+#: include/text.php:1393 mod/videos.php:388
+msgid "View Video"
+msgstr "Video ansehen"
+
+#: include/text.php:1425
+msgid "bytes"
+msgstr "Byte"
+
+#: include/text.php:1457 include/text.php:1469
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
+
+#: include/text.php:1595
+msgid "View on separate page"
+msgstr "Auf separater Seite ansehen"
+
+#: include/text.php:1596
+msgid "view on separate page"
+msgstr "auf separater Seite ansehen"
+
+#: include/text.php:1875
+msgid "activity"
+msgstr "Aktivität"
+
+#: include/text.php:1877 mod/content.php:624 object/Item.php:416
+#: object/Item.php:428
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
+
+#: include/text.php:1878
+msgid "post"
+msgstr "Beitrag"
+
+#: include/text.php:2046
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
+
+#: include/Contact.php:437
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
+
+#: include/Contact.php:819
+msgid "Organisation"
+msgstr "Organisation"
+
+#: include/Contact.php:822
+msgid "News"
+msgstr "Nachrichten"
+
+#: include/Contact.php:825
+msgid "Forum"
+msgstr "Forum"
 
-#: include/dba_pdo.php:72 include/dba.php:47
+#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179
+msgid "Image/photo"
+msgstr "Bild/Foto"
+
+#: include/bbcode.php:536
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+
+#: include/bbcode.php:1135 include/bbcode.php:1157
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
+
+#: include/bbcode.php:1187 include/bbcode.php:1188
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
+
+#: include/bbcode.php:1303
+msgid "Invalid source protocol"
+msgstr "Ungültiges Quell-Protokoll"
 
-#: include/enotify.php:24
+#: include/bbcode.php:1313
+msgid "Invalid link protocol"
+msgstr "Ungültiges Link-Protokoll"
+
+#: include/enotify.php:27
 msgid "Friendica Notification"
 msgstr "Friendica-Benachrichtigung"
 
-#: include/enotify.php:27
+#: include/enotify.php:30
 msgid "Thank You,"
 msgstr "Danke,"
 
-#: include/enotify.php:30
+#: include/enotify.php:33
 #, php-format
 msgid "%s Administrator"
 msgstr "der Administrator von %s"
 
-#: include/enotify.php:32
+#: include/enotify.php:35
 #, php-format
 msgid "%1$s, %2$s Administrator"
 msgstr "%1$s, %2$s Administrator"
 
-#: include/enotify.php:70
+#: include/enotify.php:73
 #, php-format
 msgid "%s <!item_type!>"
 msgstr "%s <!item_type!>"
 
-#: include/enotify.php:83
+#: include/enotify.php:86
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: include/enotify.php:85
+#: include/enotify.php:88
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
 
-#: include/enotify.php:86
+#: include/enotify.php:89
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr "%1$s schickte Dir %2$s."
 
-#: include/enotify.php:86
+#: include/enotify.php:89
 msgid "a private message"
 msgstr "eine private Nachricht"
 
-#: include/enotify.php:88
+#: include/enotify.php:91
 #, 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/enotify.php:134
+#: include/enotify.php:137
 #, 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/enotify.php:141
+#: include/enotify.php:144
 #, 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/enotify.php:149
+#: include/enotify.php:152
 #, 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/enotify.php:159
+#: include/enotify.php:162
 #, 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/enotify.php:161
+#: include/enotify.php:164
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195
+#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241
 #, 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/enotify.php:171
+#: include/enotify.php:174
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/enotify.php:173
+#: include/enotify.php:176
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: include/enotify.php:174
+#: include/enotify.php:177
 #, 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/enotify.php:185
+#: include/enotify.php:188
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/enotify.php:187
+#: include/enotify.php:190
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/enotify.php:188
+#: include/enotify.php:191
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/enotify.php:199
+#: include/enotify.php:202
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/enotify.php:201
+#: include/enotify.php:204
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/enotify.php:202
+#: include/enotify.php:205
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/enotify.php:213
+#: include/enotify.php:216
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/enotify.php:215
+#: include/enotify.php:218
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/enotify.php:216
+#: include/enotify.php:219
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/enotify.php:231
+#: include/enotify.php:234
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/enotify.php:233
+#: include/enotify.php:236
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/enotify.php:234
+#: include/enotify.php:237
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/enotify.php:245
+#: include/enotify.php:248
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/enotify.php:247
+#: include/enotify.php:250
 #, 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/enotify.php:248
+#: include/enotify.php:251
 #, 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/enotify.php:252 include/enotify.php:295
+#: include/enotify.php:255 include/enotify.php:298
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/enotify.php:254
+#: include/enotify.php:257
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/enotify.php:262
+#: include/enotify.php:265
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/enotify.php:264 include/enotify.php:265
+#: include/enotify.php:267 include/enotify.php:268
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/enotify.php:271
+#: include/enotify.php:274
 msgid "[Friendica:Notify] You have a new follower"
 msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/enotify.php:273 include/enotify.php:274
+#: include/enotify.php:276 include/enotify.php:277
 #, 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/enotify.php:285
+#: include/enotify.php:288
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/enotify.php:287
+#: include/enotify.php:290
 #, 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:288
+#: include/enotify.php:291
 #, 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:293
+#: include/enotify.php:296
 msgid "Name:"
 msgstr "Name:"
 
-#: include/enotify.php:294
+#: include/enotify.php:297
 msgid "Photo:"
 msgstr "Foto:"
 
-#: include/enotify.php:297
+#: include/enotify.php:300
 #, 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:305 include/enotify.php:319
+#: include/enotify.php:308 include/enotify.php:322
 msgid "[Friendica:Notify] Connection accepted"
 msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: include/enotify.php:307 include/enotify.php:321
+#: include/enotify.php:310 include/enotify.php:324
 #, 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:308 include/enotify.php:322
+#: include/enotify.php:311 include/enotify.php:325
 #, 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:312
+#: include/enotify.php:315
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and "
 "email without restriction."
 msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: include/enotify.php:314
+#: include/enotify.php:317
 #, 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:326
+#: include/enotify.php:329
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -1884,769 +2050,350 @@ msgid ""
 "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:328
+#: include/enotify.php:331
 #, 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:330
+#: 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:340
+#: include/enotify.php:343
 msgid "[Friendica System:Notify] registration request"
 msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: include/enotify.php:342
+#: include/enotify.php:345
 #, 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:343
+#: include/enotify.php:346
 #, 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:347
+#: include/enotify.php:350
 #, 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:350
+#: include/enotify.php:353
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/event.php:474
-msgid "all-day"
-msgstr "ganztägig"
+#: include/message.php:14 include/message.php:168
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: include/event.php:476
-msgid "Sun"
-msgstr "So"
+#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091
+#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249
+#: mod/item.php:468
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: include/event.php:477
-msgid "Mon"
-msgstr "Mo"
+#: include/nav.php:37 mod/navigation.php:21
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: include/event.php:478
-msgid "Tue"
-msgstr "Di"
+#: include/nav.php:41 mod/navigation.php:25
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: include/event.php:479
-msgid "Wed"
-msgstr "Mi"
+#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862
+msgid "Logout"
+msgstr "Abmelden"
 
-#: include/event.php:480
-msgid "Thu"
-msgstr "Do"
+#: include/nav.php:80 view/theme/frio/theme.php:245
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/event.php:481
-msgid "Fri"
-msgstr "Fr"
+#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648
+#: mod/contacts.php:844 view/theme/frio/theme.php:248
+msgid "Status"
+msgstr "Status"
 
-#: include/event.php:482
-msgid "Sat"
-msgstr "Sa"
+#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: include/event.php:484 include/text.php:1198 mod/settings.php:981
-msgid "Sunday"
-msgstr "Sonntag"
+#: include/nav.php:84 include/identity.php:632 include/identity.php:759
+#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249
+msgid "Profile"
+msgstr "Profil"
 
-#: include/event.php:485 include/text.php:1198 mod/settings.php:981
-msgid "Monday"
-msgstr "Montag"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/event.php:486 include/text.php:1198
-msgid "Tuesday"
-msgstr "Dienstag"
+#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33
+#: view/theme/frio/theme.php:250
+msgid "Photos"
+msgstr "Bilder"
 
-#: include/event.php:487 include/text.php:1198
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: include/event.php:488 include/text.php:1198
-msgid "Thursday"
-msgstr "Donnerstag"
+#: include/nav.php:86 include/identity.php:808 include/identity.php:811
+#: view/theme/frio/theme.php:251
+msgid "Videos"
+msgstr "Videos"
 
-#: include/event.php:489 include/text.php:1198
-msgid "Friday"
-msgstr "Freitag"
+#: include/nav.php:86 view/theme/frio/theme.php:251
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: include/event.php:490 include/text.php:1198
-msgid "Saturday"
-msgstr "Samstag"
+#: include/nav.php:87 include/nav.php:151 include/identity.php:820
+#: include/identity.php:831 mod/cal.php:272 mod/events.php:377
+#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: include/event.php:492
-msgid "Jan"
-msgstr "Jan"
+#: include/nav.php:87 view/theme/frio/theme.php:252
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: include/event.php:493
-msgid "Feb"
-msgstr "Feb"
+#: include/nav.php:88
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: include/event.php:494
-msgid "Mar"
-msgstr "März"
+#: include/nav.php:88
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: include/event.php:495
-msgid "Apr"
-msgstr "Apr"
+#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863
+msgid "Login"
+msgstr "Anmeldung"
 
-#: include/event.php:496 include/event.php:509 include/text.php:1202
-msgid "May"
-msgstr "Mai"
+#: include/nav.php:97
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: include/event.php:497
-msgid "Jun"
-msgstr "Jun"
+#: include/nav.php:107
+msgid "Home Page"
+msgstr "Homepage"
 
-#: include/event.php:498
-msgid "Jul"
-msgstr "Juli"
+#: include/nav.php:111 mod/register.php:291 boot.php:839
+msgid "Register"
+msgstr "Registrieren"
 
-#: include/event.php:499
-msgid "Aug"
-msgstr "Aug"
+#: include/nav.php:111
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: include/event.php:500
-msgid "Sept"
-msgstr "Sep"
+#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299
+msgid "Help"
+msgstr "Hilfe"
 
-#: include/event.php:501
-msgid "Oct"
-msgstr "Okt"
+#: include/nav.php:117
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: include/event.php:502
-msgid "Nov"
-msgstr "Nov"
+#: include/nav.php:121
+msgid "Apps"
+msgstr "Apps"
 
-#: include/event.php:503
-msgid "Dec"
-msgstr "Dez"
+#: include/nav.php:121
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: include/event.php:505 include/text.php:1202
-msgid "January"
-msgstr "Januar"
+#: include/nav.php:125
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: include/event.php:506 include/text.php:1202
-msgid "February"
-msgstr "Februar"
+#: include/nav.php:145 include/nav.php:147 mod/community.php:32
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: include/event.php:507 include/text.php:1202
-msgid "March"
-msgstr "März"
+#: include/nav.php:145
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: include/event.php:508 include/text.php:1202
-msgid "April"
-msgstr "April"
+#: include/nav.php:147
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
 
-#: include/event.php:510 include/text.php:1202
-msgid "June"
-msgstr "Juni"
+#: include/nav.php:151 include/identity.php:823 include/identity.php:834
+#: view/theme/frio/theme.php:256
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: include/event.php:511 include/text.php:1202
-msgid "July"
-msgstr "Juli"
+#: include/nav.php:154
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: include/event.php:512 include/text.php:1202
-msgid "August"
-msgstr "August"
+#: include/nav.php:154
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: include/event.php:513 include/text.php:1202
-msgid "September"
-msgstr "September"
+#: include/nav.php:156
+msgid "Information"
+msgstr "Information"
 
-#: include/event.php:514 include/text.php:1202
-msgid "October"
-msgstr "Oktober"
+#: include/nav.php:156
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: include/event.php:515 include/text.php:1202
-msgid "November"
-msgstr "November"
+#: include/nav.php:160 view/theme/frio/theme.php:255
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: include/event.php:516 include/text.php:1202
-msgid "December"
-msgstr "Dezember"
+#: include/nav.php:161
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: include/event.php:518 mod/cal.php:278 mod/events.php:383
-msgid "today"
-msgstr "Heute"
+#: include/nav.php:161
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: include/event.php:523
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
+#: include/nav.php:168
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: include/event.php:636
-msgid "l, F j"
-msgstr "l, F j"
+#: include/nav.php:171 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: include/event.php:658
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: include/nav.php:172
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: include/event.php:659
-msgid "Delete event"
-msgstr "Veranstaltung löschen"
+#: include/nav.php:173 mod/settings.php:907
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: include/event.php:685 include/text.php:1600 include/text.php:1607
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: include/nav.php:173
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: include/event.php:939
-msgid "Export"
-msgstr "Exportieren"
+#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: include/event.php:940
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
+#: include/nav.php:177 view/theme/frio/theme.php:257
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: include/event.php:941
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
+#: include/nav.php:178
+msgid "Inbox"
+msgstr "Eingang"
 
-#: include/features.php:65
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: include/nav.php:179
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: include/features.php:67
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: include/nav.php:180 mod/message.php:18
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: include/features.php:67
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: include/nav.php:183
+msgid "Manage"
+msgstr "Verwalten"
 
-#: include/features.php:68
-msgid "Photo Location"
-msgstr "Aufnahmeort"
+#: include/nav.php:183
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: include/features.php:68
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
+#: include/nav.php:186 mod/settings.php:83
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: include/features.php:69
-msgid "Export Public Calendar"
-msgstr "Öffentlichen Kalender exportieren"
+#: include/nav.php:186 mod/delegate.php:132
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: include/features.php:69
-msgid "Ability for visitors to download the public calendar"
-msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
+#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624
+#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: include/features.php:74
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: include/nav.php:188 view/theme/frio/theme.php:258
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/features.php:75
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: include/nav.php:191 include/identity.php:296
+msgid "Profiles"
+msgstr "Profile"
 
-#: include/features.php:75
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+#: include/nav.php:191
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/features.php:76
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
+#: include/nav.php:194 view/theme/frio/theme.php:259
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: include/features.php:76
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
+#: include/nav.php:199 mod/admin.php:197
+msgid "Admin"
+msgstr "Administration"
 
-#: include/features.php:81
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: include/nav.php:199
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/features.php:82
-msgid "Search by Date"
-msgstr "Archiv"
+#: include/nav.php:202
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/features.php:82
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: include/nav.php:202
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/features.php:83 include/features.php:113
-msgid "List Forums"
-msgstr "Zeige Foren"
+#: include/network.php:687
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: include/features.php:83
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
+#: include/oembed.php:256
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: include/features.php:84
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: include/oembed.php:264
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: include/features.php:84
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+#: include/uimport.php:85
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: include/features.php:85
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
-
-#: include/features.php:85
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
-
-#: include/features.php:86 mod/network.php:206 mod/search.php:34
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
-
-#: include/features.php:86
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
-
-#: include/features.php:91
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
-
-#: include/features.php:92
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
-
-#: include/features.php:92
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
-
-#: include/features.php:93
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
-
-#: include/features.php:93
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
-
-#: include/features.php:94
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
-
-#: include/features.php:94
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
-
-#: include/features.php:99
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
-
-#: include/features.php:100
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
-
-#: include/features.php:100
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
-
-#: include/features.php:101
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
-
-#: include/features.php:101
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
-
-#: include/features.php:102
-msgid "Tagging"
-msgstr "Tagging"
-
-#: include/features.php:102
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
-
-#: include/features.php:103
-msgid "Post Categories"
-msgstr "Beitragskategorien"
-
-#: include/features.php:103
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
-
-#: include/features.php:104
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
-
-#: include/features.php:105
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
-
-#: include/features.php:105
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
-
-#: include/features.php:106
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
-
-#: include/features.php:106
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
-
-#: include/features.php:107
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
-
-#: include/features.php:107
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
-
-#: include/features.php:112
-msgid "Advanced Profile Settings"
-msgstr "Erweiterte Profil-Einstellungen"
-
-#: include/features.php:113
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
-
-#: include/follow.php:81 mod/dfrn_request.php:512
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
-
-#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
-#: mod/admin.php:279 mod/admin.php:297
-msgid "Blocked domain"
-msgstr "Blockierte Daimain"
-
-#: include/follow.php:91
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
-
-#: include/follow.php:119
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
-
-#: include/follow.php:120 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
-
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
-
-#: include/follow.php:137
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
-
-#: include/follow.php:140
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
-
-#: include/follow.php:143
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
-
-#: include/follow.php:144
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
-
-#: include/follow.php:150
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
-
-#: include/follow.php:155
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
-
-#: include/follow.php:256
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
-
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
-
-#: include/group.php:210
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
-
-#: include/group.php:243
-msgid "Everybody"
-msgstr "Alle Kontakte"
-
-#: include/group.php:266
-msgid "edit"
-msgstr "bearbeiten"
-
-#: include/group.php:287 mod/newmember.php:61
-msgid "Groups"
-msgstr "Gruppen"
-
-#: include/group.php:289
-msgid "Edit groups"
-msgstr "Gruppen bearbeiten"
-
-#: include/group.php:291
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
-
-#: include/group.php:292
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
-
-#: include/group.php:293 mod/group.php:99 mod/group.php:196
-msgid "Group Name: "
-msgstr "Gruppenname:"
-
-#: include/group.php:295
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
-
-#: include/group.php:297 mod/network.php:207
-msgid "add"
-msgstr "hinzufügen"
-
-#: include/identity.php:43
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
-
-#: include/identity.php:52 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
-
-#: include/identity.php:96 include/identity.php:319 include/identity.php:740
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
-
-#: include/identity.php:259
-msgid "Atom feed"
-msgstr "Atom-Feed"
-
-#: include/identity.php:290
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
-
-#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
-
-#: include/identity.php:296 mod/profiles.php:788
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
-
-#: include/identity.php:306 mod/profiles.php:777
-msgid "Profile Image"
-msgstr "Profilbild"
-
-#: include/identity.php:309 mod/profiles.php:779
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
-
-#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
-
-#: include/identity.php:338 include/identity.php:633 mod/directory.php:141
-#: mod/notifications.php:250
-msgid "Gender:"
-msgstr "Geschlecht:"
-
-#: include/identity.php:341 include/identity.php:651 mod/directory.php:143
-msgid "Status:"
-msgstr "Status:"
-
-#: include/identity.php:343 include/identity.php:667 mod/directory.php:145
-msgid "Homepage:"
-msgstr "Homepage:"
-
-#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
-#: mod/directory.php:147 mod/notifications.php:246
-msgid "About:"
-msgstr "Über:"
-
-#: include/identity.php:347 mod/contacts.php:638
-msgid "XMPP:"
-msgstr "XMPP:"
-
-#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
-msgid "Network:"
-msgstr "Netzwerk:"
-
-#: include/identity.php:462 include/identity.php:552
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
-
-#: include/identity.php:463 include/identity.php:553
-msgid "F d"
-msgstr "d. F"
-
-#: include/identity.php:514 include/identity.php:599
-msgid "[today]"
-msgstr "[heute]"
-
-#: include/identity.php:526
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
-
-#: include/identity.php:527
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
-
-#: include/identity.php:586
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
-
-#: include/identity.php:610
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
-
-#: include/identity.php:611
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
-
-#: include/identity.php:631 mod/settings.php:1286
-msgid "Full Name:"
-msgstr "Kompletter Name:"
-
-#: include/identity.php:636
-msgid "j F, Y"
-msgstr "j F, Y"
-
-#: include/identity.php:637
-msgid "j F"
-msgstr "j F"
-
-#: include/identity.php:648
-msgid "Age:"
-msgstr "Alter:"
-
-#: include/identity.php:659
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
-
-#: include/identity.php:663 mod/profiles.php:703
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
-
-#: include/identity.php:671 mod/profiles.php:730
-msgid "Hometown:"
-msgstr "Heimatort:"
-
-#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
-#: mod/notifications.php:248
-msgid "Tags:"
-msgstr "Tags:"
-
-#: include/identity.php:679 mod/profiles.php:731
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
-
-#: include/identity.php:683
-msgid "Religion:"
-msgstr "Religion:"
-
-#: include/identity.php:691
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
-
-#: include/identity.php:695 mod/profiles.php:735
-msgid "Likes:"
-msgstr "Likes:"
-
-#: include/identity.php:699 mod/profiles.php:736
-msgid "Dislikes:"
-msgstr "Dislikes:"
-
-#: include/identity.php:703
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
-
-#: include/identity.php:707
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
-
-#: include/identity.php:711
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
-
-#: include/identity.php:715
-msgid "Television:"
-msgstr "Fernsehen:"
-
-#: include/identity.php:719
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
-
-#: include/identity.php:723
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
-
-#: include/identity.php:727
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
-
-#: include/identity.php:731
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
-
-#: include/identity.php:736
-msgid "Forums:"
-msgstr "Foren:"
-
-#: include/identity.php:745 mod/events.php:506
-msgid "Basic"
-msgstr "Allgemein"
-
-#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
-#: mod/admin.php:1059
-msgid "Advanced"
-msgstr "Erweitert"
-
-#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
-
-#: include/identity.php:780 mod/contacts.php:852
-msgid "Profile Details"
-msgstr "Profildetails"
-
-#: include/identity.php:788 mod/photos.php:93
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: include/uimport.php:91
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: include/identity.php:827 mod/notes.php:47
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: include/uimport.php:108 include/uimport.php:119
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: include/identity.php:830
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
+#: include/uimport.php:112 include/uimport.php:123
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: include/network.php:687
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: include/uimport.php:145
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: include/oembed.php:255
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: include/uimport.php:166
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: include/oembed.php:263
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: include/uimport.php:215
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
-#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
-#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
-#: mod/photos.php:1853
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: include/uimport.php:281
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: include/user.php:39 mod/settings.php:375
+#: include/user.php:39 mod/settings.php:377
 msgid "Passwords do not match. Password unchanged."
 msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
@@ -2712,24 +2459,28 @@ msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 msgid "An error occurred during registration. Please try again."
 msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/user.php:239 view/theme/duepuntozero/config.php:43
+#: include/user.php:237 view/theme/duepuntozero/config.php:46
 msgid "default"
 msgstr "Standard"
 
-#: include/user.php:249
+#: include/user.php:247
 msgid "An error occurred creating your default profile. Please try again."
 msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/user.php:309 include/user.php:317 include/user.php:325
-#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
-#: mod/profile_photo.php:215 mod/profile_photo.php:310
-#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187
-#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
-#: mod/photos.php:1863
+#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Kontakte"
+
+#: include/user.php:306 include/user.php:314 include/user.php:322
+#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189
+#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279
+#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82
+#: mod/profile_photo.php:90 mod/profile_photo.php:214
+#: mod/profile_photo.php:309 mod/profile_photo.php:319
 msgid "Profile Photos"
 msgstr "Profilbilder"
 
-#: include/user.php:400
+#: include/user.php:397
 #, php-format
 msgid ""
 "\n"
@@ -2738,12 +2489,12 @@ msgid ""
 "\t"
 msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
 
-#: include/user.php:410
+#: include/user.php:407
 #, php-format
 msgid "Registration at %s"
 msgstr "Registrierung als %s"
 
-#: include/user.php:420
+#: include/user.php:417
 #, php-format
 msgid ""
 "\n"
@@ -2752,7 +2503,7 @@ msgid ""
 "\t"
 msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: include/user.php:424
+#: include/user.php:421
 #, php-format
 msgid ""
 "\n"
@@ -2782,16 +2533,36 @@ msgid ""
 "\t\tThank you and welcome to %2$s."
 msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: include/user.php:456 mod/admin.php:1308
+#: include/user.php:453 mod/admin.php:1314
 #, php-format
 msgid "Registration details for %s"
 msgstr "Details der Registration von %s"
 
-#: include/dbstructure.php:20
+#: include/api.php:1102
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+
+#: include/api.php:1123
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+
+#: include/api.php:1144
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+
+#: include/dba.php:57 include/dba_pdo.php:75
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+
+#: include/dbstructure.php:25
 msgid "There are no tables on MyISAM."
 msgstr "Es gibt keine MyISAM Tabellen."
 
-#: include/dbstructure.php:61
+#: include/dbstructure.php:66
 #, php-format
 msgid ""
 "\n"
@@ -2801,14 +2572,14 @@ msgid ""
 "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
 msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
 
-#: include/dbstructure.php:66
+#: include/dbstructure.php:71
 #, php-format
 msgid ""
 "The error message is\n"
 "[pre]%s[/pre]"
 msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: include/dbstructure.php:190
+#: include/dbstructure.php:195
 #, php-format
 msgid ""
 "\n"
@@ -2816,6000 +2587,6192 @@ msgid ""
 "%s\n"
 msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
 
-#: include/dbstructure.php:193
+#: include/dbstructure.php:198
 msgid "Errors encountered performing database changes: "
 msgstr "Fehler beim Ändern der Datenbank aufgetreten"
 
-#: include/dbstructure.php:201
+#: include/dbstructure.php:206
 msgid ": Database update"
 msgstr ": Datenbank Update"
 
-#: include/dbstructure.php:425
+#: include/dbstructure.php:438
 #, php-format
 msgid "%s: updating %s table."
 msgstr "%s: aktualisiere Tabelle %s"
 
-#: include/dfrn.php:1251
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
-
-#: include/diaspora.php:2137
+#: include/diaspora.php:2214
 msgid "Sharing notification from Diaspora network"
 msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: include/diaspora.php:3146
+#: include/diaspora.php:3234
 msgid "Attachments:"
 msgstr "Anhänge:"
 
-#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: include/items.php:2123 mod/display.php:103 mod/display.php:279
-#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
-#: mod/admin.php:1565 mod/admin.php:1816
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: include/items.php:2162
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
-
-#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
-#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
-#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171
-#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188
-#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203
-#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235
-#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
-msgid "Yes"
-msgstr "Ja"
-
-#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
-#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
-#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
-#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
-#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
-#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
-#: mod/profile_photo.php:180 mod/profile_photo.php:191
-#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9
-#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
-#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
-#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
-#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
-#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
-#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
-#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
-#: mod/item.php:208 mod/notifications.php:71 index.php:407
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: include/items.php:2444
-msgid "Archives"
-msgstr "Archiv"
-
-#: include/ostatus.php:1947
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
-
-#: include/ostatus.php:1948
-msgid "following"
-msgstr "folgen"
+#: include/identity.php:45
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/ostatus.php:1951
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
+#: include/identity.php:54 mod/profile.php:22
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/ostatus.php:1952
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: include/identity.php:98 include/identity.php:325 include/identity.php:755
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: include/text.php:307
-msgid "newer"
-msgstr "neuer"
+#: include/identity.php:265
+msgid "Atom feed"
+msgstr "Atom-Feed"
 
-#: include/text.php:308
-msgid "older"
-msgstr "älter"
+#: include/identity.php:296
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: include/text.php:313
-msgid "first"
-msgstr "erste"
+#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: include/text.php:314
-msgid "prev"
-msgstr "vorige"
+#: include/identity.php:302 mod/profiles.php:791
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: include/text.php:348
-msgid "next"
-msgstr "nächste"
+#: include/identity.php:312 mod/profiles.php:780
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: include/text.php:349
-msgid "last"
-msgstr "letzte"
+#: include/identity.php:315 mod/profiles.php:782
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr "lade weitere Einträge..."
+#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: include/text.php:404
-msgid "The end"
-msgstr "Das Ende"
+#: include/identity.php:344 include/identity.php:644 mod/directory.php:137
+#: mod/notifications.php:252
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: include/text.php:955
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: include/identity.php:347 include/identity.php:665 mod/directory.php:139
+msgid "Status:"
+msgstr "Status:"
 
-#: include/text.php:980
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+#: include/identity.php:349 include/identity.php:682 mod/directory.php:141
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/text.php:993
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: include/identity.php:351 include/identity.php:702 mod/directory.php:143
+#: mod/notifications.php:248 mod/contacts.php:643
+msgid "About:"
+msgstr "Über:"
 
-#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
-msgid "Save"
-msgstr "Speichern"
+#: include/identity.php:353 mod/contacts.php:641
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/text.php:1144
-msgid "poke"
-msgstr "anstupsen"
+#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58
+msgid "Network:"
+msgstr "Netzwerk:"
 
-#: include/text.php:1144
-msgid "poked"
-msgstr "stupste"
+#: include/identity.php:468 include/identity.php:558
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: include/text.php:1145
-msgid "ping"
-msgstr "anpingen"
+#: include/identity.php:469 include/identity.php:559
+msgid "F d"
+msgstr "d. F"
 
-#: include/text.php:1145
-msgid "pinged"
-msgstr "pingte"
+#: include/identity.php:520 include/identity.php:609
+msgid "[today]"
+msgstr "[heute]"
 
-#: include/text.php:1146
-msgid "prod"
-msgstr "knuffen"
+#: include/identity.php:532
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: include/text.php:1146
-msgid "prodded"
-msgstr "knuffte"
+#: include/identity.php:533
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: include/text.php:1147
-msgid "slap"
-msgstr "ohrfeigen"
+#: include/identity.php:595
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: include/text.php:1147
-msgid "slapped"
-msgstr "ohrfeigte"
+#: include/identity.php:620
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: include/text.php:1148
-msgid "finger"
-msgstr "befummeln"
+#: include/identity.php:621
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: include/text.php:1148
-msgid "fingered"
-msgstr "befummelte"
+#: include/identity.php:641 mod/settings.php:1287
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: include/text.php:1149
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: include/identity.php:648
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/text.php:1149
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: include/identity.php:649
+msgid "j F"
+msgstr "j F"
 
-#: include/text.php:1163
-msgid "happy"
-msgstr "glücklich"
+#: include/identity.php:661
+msgid "Age:"
+msgstr "Alter:"
 
-#: include/text.php:1164
-msgid "sad"
-msgstr "traurig"
+#: include/identity.php:674
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: include/text.php:1165
-msgid "mellow"
-msgstr "sanft"
+#: include/identity.php:678 mod/profiles.php:706
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: include/text.php:1166
-msgid "tired"
-msgstr "müde"
+#: include/identity.php:686 mod/profiles.php:733
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: include/text.php:1167
-msgid "perky"
-msgstr "frech"
+#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250
+#: mod/contacts.php:645
+msgid "Tags:"
+msgstr "Tags:"
 
-#: include/text.php:1168
-msgid "angry"
-msgstr "sauer"
+#: include/identity.php:694 mod/profiles.php:734
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: include/text.php:1169
-msgid "stupified"
-msgstr "verblüfft"
+#: include/identity.php:698
+msgid "Religion:"
+msgstr "Religion:"
 
-#: include/text.php:1170
-msgid "puzzled"
-msgstr "verwirrt"
+#: include/identity.php:706
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: include/text.php:1171
-msgid "interested"
-msgstr "interessiert"
+#: include/identity.php:710 mod/profiles.php:738
+msgid "Likes:"
+msgstr "Likes:"
 
-#: include/text.php:1172
-msgid "bitter"
-msgstr "verbittert"
+#: include/identity.php:714 mod/profiles.php:739
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: include/text.php:1173
-msgid "cheerful"
-msgstr "fröhlich"
+#: include/identity.php:718
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: include/text.php:1174
-msgid "alive"
-msgstr "lebendig"
+#: include/identity.php:722
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: include/text.php:1175
-msgid "annoyed"
-msgstr "verärgert"
+#: include/identity.php:726
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: include/text.php:1176
-msgid "anxious"
-msgstr "unruhig"
+#: include/identity.php:730
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: include/text.php:1177
-msgid "cranky"
-msgstr "schrullig"
+#: include/identity.php:734
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: include/text.php:1178
-msgid "disturbed"
-msgstr "verstört"
+#: include/identity.php:738
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: include/text.php:1179
-msgid "frustrated"
-msgstr "frustriert"
+#: include/identity.php:742
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: include/text.php:1180
-msgid "motivated"
-msgstr "motiviert"
+#: include/identity.php:746
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: include/text.php:1181
-msgid "relaxed"
-msgstr "entspannt"
+#: include/identity.php:751
+msgid "Forums:"
+msgstr "Foren:"
 
-#: include/text.php:1182
-msgid "surprised"
-msgstr "überrascht"
+#: include/identity.php:760 mod/events.php:509
+msgid "Basic"
+msgstr "Allgemein"
 
-#: include/text.php:1392 mod/videos.php:386
-msgid "View Video"
-msgstr "Video ansehen"
+#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065
+#: mod/contacts.php:881
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: include/text.php:1424
-msgid "bytes"
-msgstr "Byte"
+#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: include/text.php:1456 include/text.php:1468
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: include/identity.php:795 mod/contacts.php:855
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: include/text.php:1594
-msgid "View on separate page"
-msgstr "Auf separater Seite ansehen"
+#: include/identity.php:803 mod/photos.php:95
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: include/text.php:1595
-msgid "view on separate page"
-msgstr "auf separater Seite ansehen"
+#: include/identity.php:842 mod/notes.php:49
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: include/text.php:1874
-msgid "activity"
-msgstr "Aktivität"
+#: include/identity.php:845
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: include/text.php:1876 mod/content.php:623 object/Item.php:419
-#: object/Item.php:431
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: include/text.php:1877
-msgid "post"
-msgstr "Beitrag"
+#: include/items.php:2121 mod/display.php:105 mod/display.php:280
+#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248
+#: mod/admin.php:1571 mod/admin.php:1822
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: include/text.php:2045
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: include/items.php:2160
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: mod/allfriends.php:46
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: include/items.php:2162 mod/api.php:107 mod/follow.php:115
+#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31
+#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643
+#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172
+#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189
+#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204
+#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239
+msgid "Yes"
+msgstr "Ja"
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33
+#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105
+#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15
+#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188
+#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80
+#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103
+#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7
+#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73
+#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111
+#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11
+#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104
+#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75
+#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106
+#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19
+#: mod/profile_photo.php:179 mod/profile_photo.php:190
+#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610
+#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: include/items.php:2426
+msgid "Archives"
+msgstr "Archiv"
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: include/ostatus.php:1962
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
+#: include/ostatus.php:1963
+msgid "following"
+msgstr "folgen"
 
-#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
-#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
-#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
-#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
-#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238
-msgid "No"
-msgstr "Nein"
+#: include/ostatus.php:1966
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
 
-#: mod/apps.php:7 index.php:254
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: include/ostatus.php:1967
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: include/plugin.php:531 include/plugin.php:533
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: include/plugin.php:539
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: include/plugin.php:544
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: mod/common.php:141 mod/contacts.php:871
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: mod/contacts.php:134
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: mod/contacts.php:169 mod/contacts.php:378
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: mod/contacts.php:183
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: mod/contacts.php:216
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: mod/contacts.php:218 mod/dfrn_request.php:593
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: mod/contacts.php:399
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: mod/contacts.php:399
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: mod/contacts.php:410
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: mod/contacts.php:410
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: mod/contacts.php:422
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: mod/contacts.php:422
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: mod/contacts.php:447
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: mod/contacts.php:450 mod/contacts.php:809
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: mod/contacts.php:469
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: mod/contacts.php:506
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: mod/contacts.php:510
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: mod/contacts.php:515
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: mod/contacts.php:535
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: mod/contacts.php:538 mod/admin.php:978
-msgid "Never"
-msgstr "Niemals"
+#: include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: mod/contacts.php:542
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: mod/contacts.php:542
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: mod/contacts.php:544 mod/contacts.php:972
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: mod/contacts.php:548
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: mod/contacts.php:561
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: mod/contacts.php:564
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: mod/contacts.php:565 mod/admin.php:987
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: mod/contacts.php:565
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: mod/contacts.php:565
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: mod/contacts.php:583
-msgid "Contact"
-msgstr "Kontakt"
+#: include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
-#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
-#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
-#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
-#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
-#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
-#: mod/install.php:242 mod/install.php:282 object/Item.php:705
-#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
-#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
-msgid "Submit"
-msgstr "Senden"
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: mod/contacts.php:586
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: mod/contacts.php:587
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: mod/contacts.php:588
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: mod/contacts.php:589
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
-#: mod/viewcontacts.php:102
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: mod/contacts.php:595
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: mod/contacts.php:596
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: mod/contacts.php:597
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: mod/contacts.php:598
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: mod/contacts.php:604
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: mod/contacts.php:606
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: mod/contacts.php:608 mod/contacts.php:982
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1510
-msgid "Unblock"
-msgstr "Entsperren"
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1509
-msgid "Block"
-msgstr "Sperren"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:263
-msgid "Ignore"
-msgstr "Ignorieren"
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: mod/contacts.php:618
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: mod/contacts.php:619
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: mod/contacts.php:620
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: mod/contacts.php:621
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: mod/contacts.php:622
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: mod/contacts.php:622
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: mod/allfriends.php:48
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
 
-#: mod/contacts.php:625
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/api.php:78 mod/api.php:104
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: mod/contacts.php:625
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
+#: mod/api.php:79
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
-msgid "Profile URL"
-msgstr "Profil URL"
+#: mod/api.php:91
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
-#: mod/contacts.php:643
-msgid "Actions"
-msgstr "Aktionen"
+#: mod/api.php:106
+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/contacts.php:646
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: mod/api.php:108 mod/follow.php:115 mod/register.php:248
+#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647
+#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178
+#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194
+#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209
+#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
+#: mod/settings.php:1238 mod/settings.php:1239
+msgid "No"
+msgstr "Nein"
 
-#: mod/contacts.php:692
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/apps.php:9 index.php:257
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: mod/contacts.php:695
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: mod/apps.php:14
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: mod/contacts.php:700 mod/group.php:212
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: mod/apps.php:17
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: mod/contacts.php:703
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/attach.php:10
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: mod/contacts.php:708
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/attach.php:22
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: mod/contacts.php:711
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/babel.php:18
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: mod/contacts.php:717
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/babel.php:25
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: mod/contacts.php:720
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/babel.php:33
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: mod/contacts.php:726
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/babel.php:37
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: mod/contacts.php:729
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/babel.php:41
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: mod/contacts.php:735
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/babel.php:45
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: mod/contacts.php:738
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/babel.php:49
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: mod/contacts.php:744
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/babel.php:53
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: mod/contacts.php:747
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/babel.php:57
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: mod/contacts.php:804
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/babel.php:61
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227
-#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+#: mod/babel.php:67
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/babel.php:71
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/bookmarklet.php:43
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: mod/contacts.php:818
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: mod/cal.php:273 mod/events.php:378
+msgid "View"
+msgstr "Ansehen"
 
-#: mod/contacts.php:864
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/cal.php:274 mod/events.php:380
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/contacts.php:874
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: mod/cal.php:275 mod/events.php:381 mod/install.php:203
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/contacts.php:881
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/cal.php:284 mod/events.php:390
+msgid "list"
+msgstr "Liste"
 
-#: mod/contacts.php:915
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/cal.php:294
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
 
-#: mod/contacts.php:919
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/cal.php:310
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
 
-#: mod/contacts.php:923
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/cal.php:312
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
 
-#: mod/contacts.php:939 mod/nogroup.php:44
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: mod/cal.php:327
+msgid "calendar"
+msgstr "Kalender"
 
-#: mod/contacts.php:993
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/common.php:93
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: mod/contacts.php:1001
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/common.php:143 mod/contacts.php:874
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
 
-#: mod/contacts.php:1009
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/community.php:18 mod/directory.php:33 mod/display.php:201
+#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804
+#: mod/probe.php:9
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: mod/contacts.php:1017
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
+
+#: mod/community.php:50 mod/search.php:222
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: mod/content.php:119 mod/network.php:475
+#: mod/content.php:120 mod/network.php:478
 msgid "No such group"
 msgstr "Es gibt keine solche Gruppe"
 
-#: mod/content.php:130 mod/group.php:213 mod/network.php:502
+#: mod/content.php:131 mod/group.php:214 mod/network.php:505
 msgid "Group is empty"
 msgstr "Gruppe ist leer"
 
-#: mod/content.php:135 mod/network.php:506
+#: mod/content.php:136 mod/network.php:509
 #, php-format
 msgid "Group: %s"
 msgstr "Gruppe: %s"
 
-#: mod/content.php:325 object/Item.php:96
+#: mod/content.php:326 object/Item.php:96
 msgid "This entry was edited"
 msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: mod/content.php:621 object/Item.php:417
+#: mod/content.php:622 object/Item.php:414
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d Kommentar"
 msgstr[1] "%d Kommentare"
 
-#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117
+#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117
 msgid "Private Message"
 msgstr "Private Nachricht"
 
-#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274
+#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271
 msgid "I like this (toggle)"
 msgstr "Ich mag das (toggle)"
 
-#: mod/content.php:702 object/Item.php:274
+#: mod/content.php:703 object/Item.php:271
 msgid "like"
 msgstr "mag ich"
 
-#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (toggle)"
 
-#: mod/content.php:703 object/Item.php:275
+#: mod/content.php:704 object/Item.php:272
 msgid "dislike"
 msgstr "mag ich nicht"
 
-#: mod/content.php:705 object/Item.php:278
+#: mod/content.php:706 object/Item.php:275
 msgid "Share this"
 msgstr "Weitersagen"
 
-#: mod/content.php:705 object/Item.php:278
+#: mod/content.php:706 object/Item.php:275
 msgid "share"
 msgstr "Teilen"
 
-#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685
-#: mod/photos.php:1765 object/Item.php:702
+#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687
+#: mod/photos.php:1767 object/Item.php:699
 msgid "This is you"
 msgstr "Das bist Du"
 
-#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645
-#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392
-#: object/Item.php:704
+#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647
+#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389
+#: object/Item.php:701
 msgid "Comment"
 msgstr "Kommentar"
 
-#: mod/content.php:729 object/Item.php:706
+#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508
+#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284
+#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156
+#: mod/message.php:340 mod/message.php:523 mod/mood.php:139
+#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599
+#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770
+#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684
+#: object/Item.php:702 view/theme/duepuntozero/config.php:64
+#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70
+#: view/theme/vier/config.php:113
+msgid "Submit"
+msgstr "Senden"
+
+#: mod/content.php:730 object/Item.php:703
 msgid "Bold"
 msgstr "Fett"
 
-#: mod/content.php:730 object/Item.php:707
+#: mod/content.php:731 object/Item.php:704
 msgid "Italic"
 msgstr "Kursiv"
 
-#: mod/content.php:731 object/Item.php:708
+#: mod/content.php:732 object/Item.php:705
 msgid "Underline"
 msgstr "Unterstrichen"
 
-#: mod/content.php:732 object/Item.php:709
+#: mod/content.php:733 object/Item.php:706
 msgid "Quote"
 msgstr "Zitat"
 
-#: mod/content.php:733 object/Item.php:710
+#: mod/content.php:734 object/Item.php:707
 msgid "Code"
 msgstr "Code"
 
-#: mod/content.php:734 object/Item.php:711
+#: mod/content.php:735 object/Item.php:708
 msgid "Image"
 msgstr "Bild"
 
-#: mod/content.php:735 object/Item.php:712
+#: mod/content.php:736 object/Item.php:709
 msgid "Link"
 msgstr "Link"
 
-#: mod/content.php:736 object/Item.php:713
+#: mod/content.php:737 object/Item.php:710
 msgid "Video"
 msgstr "Video"
 
-#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
+#: mod/content.php:747 mod/settings.php:744 object/Item.php:122
 #: object/Item.php:124
 msgid "Edit"
 msgstr "Bearbeiten"
 
-#: mod/content.php:772 object/Item.php:238
+#: mod/content.php:773 object/Item.php:238
 msgid "add star"
 msgstr "markieren"
 
-#: mod/content.php:773 object/Item.php:239
+#: mod/content.php:774 object/Item.php:239
 msgid "remove star"
 msgstr "Markierung entfernen"
 
-#: mod/content.php:774 object/Item.php:240
+#: mod/content.php:775 object/Item.php:240
 msgid "toggle star status"
 msgstr "Markierung umschalten"
 
-#: mod/content.php:777 object/Item.php:243
+#: mod/content.php:778 object/Item.php:243
 msgid "starred"
 msgstr "markiert"
 
-#: mod/content.php:778 mod/content.php:800 object/Item.php:263
+#: mod/content.php:779 mod/content.php:801 object/Item.php:260
 msgid "add tag"
 msgstr "Tag hinzufügen"
 
-#: mod/content.php:789 object/Item.php:251
+#: mod/content.php:790 object/Item.php:248
 msgid "ignore thread"
 msgstr "Thread ignorieren"
 
-#: mod/content.php:790 object/Item.php:252
+#: mod/content.php:791 object/Item.php:249
 msgid "unignore thread"
 msgstr "Thread nicht mehr ignorieren"
 
-#: mod/content.php:791 object/Item.php:253
+#: mod/content.php:792 object/Item.php:250
 msgid "toggle ignore status"
 msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
+#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253
 msgid "ignored"
 msgstr "Ignoriert"
 
-#: mod/content.php:805 object/Item.php:141
+#: mod/content.php:806 object/Item.php:141
 msgid "save to folder"
 msgstr "In Ordner speichern"
 
-#: mod/content.php:853 object/Item.php:212
+#: mod/content.php:854 object/Item.php:212
 msgid "I will attend"
 msgstr "Ich werde teilnehmen"
 
-#: mod/content.php:853 object/Item.php:212
+#: mod/content.php:854 object/Item.php:212
 msgid "I will not attend"
 msgstr "Ich werde nicht teilnehmen"
 
-#: mod/content.php:853 object/Item.php:212
+#: mod/content.php:854 object/Item.php:212
 msgid "I might attend"
 msgstr "Ich werde eventuell teilnehmen"
 
-#: mod/content.php:917 object/Item.php:358
+#: mod/content.php:918 object/Item.php:355
 msgid "to"
 msgstr "zu"
 
-#: mod/content.php:918 object/Item.php:360
+#: mod/content.php:919 object/Item.php:357
 msgid "Wall-to-Wall"
 msgstr "Wall-to-Wall"
 
-#: mod/content.php:919 object/Item.php:361
+#: mod/content.php:920 object/Item.php:358
 msgid "via Wall-To-Wall:"
 msgstr "via Wall-To-Wall:"
 
-#: mod/credits.php:16
+#: mod/credits.php:19
 msgid "Credits"
 msgstr "Credits"
 
-#: mod/credits.php:17
+#: mod/credits.php:20
 msgid ""
 "Friendica is a community project, that would not be possible without the "
 "help of many people. Here is a list of those who have contributed to the "
 "code or the translation of Friendica. Thank you all!"
 msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
 
-#: mod/crepair.php:89
+#: mod/crepair.php:92
 msgid "Contact settings applied."
 msgstr "Einstellungen zum Kontakt angewandt."
 
-#: mod/crepair.php:91
+#: mod/crepair.php:94
 msgid "Contact update failed."
 msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
-#: mod/dfrn_confirm.php:126
+#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22
+#: mod/fsuggest.php:94
 msgid "Contact not found."
 msgstr "Kontakt nicht gefunden."
 
-#: mod/crepair.php:122
+#: mod/crepair.php:125
 msgid ""
 "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
 " information your communications with this contact may stop working."
 msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: mod/crepair.php:123
+#: mod/crepair.php:126
 msgid ""
 "Please use your browser 'Back' button <strong>now</strong> if you are "
 "uncertain what to do on this page."
 msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
 
-#: mod/crepair.php:136 mod/crepair.php:138
+#: mod/crepair.php:139 mod/crepair.php:141
 msgid "No mirroring"
 msgstr "Kein Spiegeln"
 
-#: mod/crepair.php:136
+#: mod/crepair.php:139
 msgid "Mirror as forwarded posting"
 msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: mod/crepair.php:136 mod/crepair.php:138
+#: mod/crepair.php:139 mod/crepair.php:141
 msgid "Mirror as my own posting"
 msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: mod/crepair.php:152
+#: mod/crepair.php:155
 msgid "Return to contact editor"
 msgstr "Zurück zum Kontakteditor"
 
-#: mod/crepair.php:154
+#: mod/crepair.php:157
 msgid "Refetch contact data"
 msgstr "Kontaktdaten neu laden"
 
-#: mod/crepair.php:158
+#: mod/crepair.php:161
 msgid "Remote Self"
 msgstr "Entfernte Konten"
 
-#: mod/crepair.php:161
+#: mod/crepair.php:164
 msgid "Mirror postings from this contact"
 msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: mod/crepair.php:163
+#: mod/crepair.php:166
 msgid ""
 "Mark this contact as remote_self, this will cause friendica to repost new "
 "entries from this contact."
 msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
-#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
-#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
+#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509
+#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684
+#: mod/settings.php:710
 msgid "Name"
 msgstr "Name"
 
-#: mod/crepair.php:168
+#: mod/crepair.php:171
 msgid "Account Nickname"
 msgstr "Konto-Spitzname"
 
-#: mod/crepair.php:169
+#: mod/crepair.php:172
 msgid "@Tagname - overrides Name/Nickname"
 msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: mod/crepair.php:170
+#: mod/crepair.php:173
 msgid "Account URL"
 msgstr "Konto-URL"
 
-#: mod/crepair.php:171
+#: mod/crepair.php:174
 msgid "Friend Request URL"
 msgstr "URL für Kontaktschaftsanfragen"
 
-#: mod/crepair.php:172
+#: mod/crepair.php:175
 msgid "Friend Confirm URL"
 msgstr "URL für Bestätigungen von Kontaktanfragen"
 
-#: mod/crepair.php:173
+#: mod/crepair.php:176
 msgid "Notification Endpoint URL"
 msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: mod/crepair.php:174
+#: mod/crepair.php:177
 msgid "Poll/Feed URL"
 msgstr "Pull/Feed-URL"
 
-#: mod/crepair.php:175
+#: mod/crepair.php:178
 msgid "New photo from this URL"
 msgstr "Neues Foto von dieser URL"
 
-#: mod/delegate.php:101
+#: mod/delegate.php:103
 msgid "No potential page delegates located."
 msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: mod/delegate.php:132
+#: mod/delegate.php:134
 msgid ""
 "Delegates are able to manage all aspects of this account/page except for "
 "basic account settings. Please do not delegate your personal account to "
 "anybody that you do not trust completely."
 msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: mod/delegate.php:133
+#: mod/delegate.php:135
 msgid "Existing Page Managers"
 msgstr "Vorhandene Seitenmanager"
 
-#: mod/delegate.php:135
+#: mod/delegate.php:137
 msgid "Existing Page Delegates"
 msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: mod/delegate.php:137
+#: mod/delegate.php:139
 msgid "Potential Delegates"
 msgstr "Potentielle Bevollmächtigte"
 
-#: mod/delegate.php:139 mod/tagrm.php:95
+#: mod/delegate.php:141 mod/tagrm.php:97
 msgid "Remove"
-msgstr "Entfernen"
-
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
-
-#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36
-#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979
-#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198
-#: mod/webfinger.php:8
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
-
-#: mod/directory.php:199 view/theme/vier/theme.php:199
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
-
-#: mod/directory.php:201
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
-
-#: mod/directory.php:203
-msgid "Results for:"
-msgstr "Ergebnisse für:"
-
-#: mod/directory.php:205
-msgid "Site Directory"
-msgstr "Verzeichnis"
-
-#: mod/directory.php:212
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-
-#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
-
-#: mod/display.php:479
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
-
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
-
-#: mod/editpost.php:32
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
-
-#: mod/fbrowser.php:132
-msgid "Files"
-msgstr "Dateien"
-
-#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53
-#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298
-msgid "Not Found"
-msgstr "Nicht gefunden"
-
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
-
-#: mod/fsuggest.php:64
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
-
-#: mod/fsuggest.php:98
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
-
-#: mod/fsuggest.php:100
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
-
-#: mod/hcard.php:11
-msgid "No profile"
-msgstr "Kein Profil"
-
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Hilfe:"
-
-#: mod/help.php:56 index.php:301
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
-
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
-
-#: mod/invite.php:28
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
-
-#: mod/invite.php:51
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
-
-#: mod/invite.php:76
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
-
-#: mod/invite.php:87
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+msgstr "Entfernen"
 
-#: mod/invite.php:91
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: mod/delegate.php:142
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: mod/invite.php:95
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: mod/delegate.php:143
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: mod/invite.php:114
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139
+#: mod/profiles.php:186 mod/profiles.php:622
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/invite.php:122
-#, php-format
+#: mod/dfrn_confirm.php:129
 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 may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: mod/invite.php:124
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+#: mod/dfrn_confirm.php:246
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: mod/invite.php:125
-#, 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/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: mod/invite.php:128
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: mod/dfrn_confirm.php:269
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: mod/invite.php:134
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: mod/invite.php:135
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: mod/dfrn_confirm.php:283
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332
-#: mod/message.php:515
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: mod/dfrn_confirm.php:290
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: mod/invite.php:137
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: mod/invite.php:139
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: mod/invite.php:139
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: mod/invite.php:141
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+
+#: mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
 
-#: mod/localtime.php:26
+#: mod/dfrn_confirm.php:638
 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."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: mod/localtime.php:33
+#: mod/dfrn_confirm.php:783
 #, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: mod/localtime.php:36
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
 #, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: mod/directory.php:195 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/lockview.php:32 mod/lockview.php:40
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: mod/directory.php:197
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/lockview.php:49
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: mod/directory.php:199
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: mod/directory.php:201
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/lostpass.php:41
+#: mod/dirfind.php:39
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/lostpass.php:52
+#: mod/dirfind.php:50
 #, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/lostpass.php:71
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: mod/dirfind.php:247 mod/match.php:112
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: mod/lostpass.php:91
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
+#: mod/display.php:480
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: mod/lostpass.php:110 boot.php:1882
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: mod/editpost.php:19 mod/editpost.php:29
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: mod/lostpass.php:111
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: mod/editpost.php:34
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: mod/lostpass.php:112
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: mod/events.php:96 mod/events.php:98
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/lostpass.php:113
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/lostpass.php:114
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: mod/events.php:379
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/lostpass.php:115
-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/events.php:484
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
+#: mod/events.php:485
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/lostpass.php:131
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+#: mod/events.php:486 mod/events.php:487
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712
+msgid "Required"
+msgstr "Benötigt"
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: mod/events.php:488 mod/events.php:504
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
+#: mod/events.php:490 mod/events.php:491
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
+
+#: mod/events.php:492 mod/events.php:505
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
+
+#: mod/events.php:494
+msgid "Description:"
+msgstr "Beschreibung"
+
+#: mod/events.php:498 mod/events.php:500
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/lostpass.php:161 boot.php:1870
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: mod/events.php:501 mod/events.php:502
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: mod/events.php:531
+msgid "Failed to remove event"
+msgstr "Entfernen der Veranstaltung fehlgeschlagen"
 
-#: mod/maintenance.php:20
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: mod/events.php:533
+msgid "Event removed"
+msgstr "Veranstaltung enfternt"
 
-#: mod/match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
+#: mod/fbrowser.php:134
+msgid "Files"
+msgstr "Dateien"
 
-#: mod/match.php:88
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56
+#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: mod/match.php:102
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: mod/filer.php:31
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: mod/match.php:109 mod/dirfind.php:245
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: mod/follow.php:21 mod/dfrn_request.php:893
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: mod/mood.php:134
-msgid "Mood"
-msgstr "Stimmung"
+#: mod/follow.php:32
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: mod/mood.php:135
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
+#: mod/follow.php:41
+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/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: mod/follow.php:48
+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/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: mod/follow.php:55
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
 
-#: mod/newmember.php:12
-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."
+#: mod/follow.php:114 mod/dfrn_request.php:879
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: mod/follow.php:115 mod/dfrn_request.php:880
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: mod/follow.php:116 mod/dfrn_request.php:884
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: mod/newmember.php:18
-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."
+#: mod/follow.php:122 mod/dfrn_request.php:890
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635
+msgid "Profile URL"
+msgstr "Profil URL"
 
-#: mod/newmember.php:26
-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.."
+#: mod/follow.php:188
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: mod/newmember.php:28
-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."
+#: mod/friendica.php:69
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: mod/friendica.php:70
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: mod/newmember.php:36
+#: mod/friendica.php:74
 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."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: mod/friendica.php:78
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+
+#: mod/friendica.php:78
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
 
-#: mod/newmember.php:38
+#: mod/friendica.php:81
 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."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: mod/friendica.php:95
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps:"
 
-#: mod/newmember.php:40
-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."
+#: mod/friendica.php:109
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: mod/friendica.php:114
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299
+msgid "Reason for the block"
+msgstr "Begründung für die Blockierung"
 
-#: mod/newmember.php:51
-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."
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/newmember.php:53
-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."
+#: mod/fsuggest.php:101
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: mod/newmember.php:55
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
+#: mod/group.php:30
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: mod/newmember.php:55
-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."
+#: mod/group.php:36
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: mod/newmember.php:57
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: mod/group.php:50 mod/group.php:155
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: mod/newmember.php:57
-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."
+#: mod/group.php:64
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: mod/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: mod/group.php:77 mod/profperm.php:22 index.php:409
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: mod/newmember.php:65
-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."
+#: mod/group.php:94
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/newmember.php:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: mod/group.php:99
+msgid "Create a group of contacts/friends."
+msgstr "Eine Kontaktgruppe anlegen."
 
-#: mod/newmember.php:68
-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."
+#: mod/group.php:124
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/newmember.php:73
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: mod/group.php:126
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: mod/group.php:190
+msgid "Delete Group"
+msgstr "Gruppe löschen"
 
-#: mod/newmember.php:77
-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."
+#: mod/group.php:196
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: mod/nogroup.php:65
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: mod/group.php:201
+msgid "Edit Group Name"
+msgstr "Gruppen Name bearbeiten"
 
-#: mod/notify.php:65
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: mod/group.php:211
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/notify.php:69 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: mod/group.php:213 mod/contacts.php:703
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: mod/oexchange.php:21
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: mod/group.php:227
+msgid "Remove Contact"
+msgstr "Kontakt löschen"
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus Kontakten folgen"
+#: mod/group.php:251
+msgid "Add Contact"
+msgstr "Kontakt hinzufügen"
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr "Keine Kontakte gefunden."
+#: mod/group.php:263 mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: mod/ostatus_subscribe.php:31
-msgid "Couldn't fetch information for contact."
-msgstr "Konnte die Kontaktinformationen nicht einholen."
+#: mod/hcard.php:13
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch friends for contact."
-msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
+#: mod/help.php:44
+msgid "Help:"
+msgstr "Hilfe:"
+
+#: mod/help.php:59 index.php:304
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
-msgid "Done"
-msgstr "Erledigt"
+#: mod/home.php:41
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: mod/ostatus_subscribe.php:68
-msgid "success"
-msgstr "Erfolg"
+#: mod/install.php:108
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/ostatus_subscribe.php:70
-msgid "failed"
-msgstr "Fehlgeschlagen"
+#: mod/install.php:114
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: mod/install.php:118
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: mod/install.php:124
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/poke.php:196
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: mod/install.php:129
+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/poke.php:197
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: mod/install.php:130 mod/install.php:202 mod/install.php:549
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/poke.php:198
-msgid "Recipient"
-msgstr "Empfänger"
+#: mod/install.php:142
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/poke.php:199
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: mod/install.php:199
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/poke.php:202
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: mod/install.php:204
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/install.php:223
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:323
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+#: mod/install.php:224
+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:127
+#: mod/install.php:225
 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."
+"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:137
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/install.php:226
+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:156 mod/photos.php:813 mod/wall_upload.php:181
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
+#: mod/install.php:230
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: mod/install.php:231
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/profile_photo.php:254
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/install.php:232
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/profile_photo.php:255
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/install.php:232
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
 
-#: mod/profile_photo.php:257
-msgid "Upload"
-msgstr "Hochladen"
+#: mod/install.php:233
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/profile_photo.php:260
-msgid "or"
-msgstr "oder"
+#: mod/install.php:234 mod/install.php:275
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/profile_photo.php:260
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: mod/install.php:234 mod/install.php:275
+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/profile_photo.php:260
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/install.php:238 mod/install.php:278
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/profile_photo.php:274
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/install.php:265
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/profile_photo.php:275
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/install.php:279
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/profile_photo.php:277
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/install.php:279
+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/profile_photo.php:313
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/install.php:319
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: mod/install.php:320
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
 
-#: mod/profperm.php:20 mod/group.php:76 index.php:406
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: mod/install.php:324
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/profperm.php:26 mod/profperm.php:57
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: mod/install.php:324
+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/profperm.php:103
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: mod/install.php:329
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/profperm.php:107 mod/group.php:262
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: mod/install.php:338
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: mod/profperm.php:116
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: mod/install.php:339
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/profperm.php:132
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: mod/install.php:341
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/regmod.php:58
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: mod/install.php:352
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: mod/regmod.php:95
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: mod/install.php:353
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/regmod.php:107
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+#: mod/install.php:355
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/removeme.php:52 mod/removeme.php:55
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: mod/removeme.php:53
+#: mod/install.php:379
 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."
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: mod/removeme.php:54
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus Abonements"
+#: mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr "Fehler"
+#: mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/subthread.php:104
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: mod/install.php:391
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO oder MySQLi PHP Modul"
+
+#: mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
+
+#: mod/install.php:393
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
+
+#: mod/install.php:394
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/suggest.php:71
+#: mod/install.php:398 mod/install.php:400
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
+
+#: mod/install.php:398
 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."
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: mod/install.php:406
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: mod/tagrm.php:43
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: mod/install.php:410
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: mod/tagrm.php:82
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: mod/install.php:414
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/tagrm.php:84
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: mod/install.php:418
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
 
-#: mod/uimport.php:51 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+#: mod/install.php:422
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
 
-#: mod/uimport.php:66 mod/register.php:295
-msgid "Import"
-msgstr "Import"
+#: mod/install.php:426
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: mod/uimport.php:68
-msgid "Move account"
-msgstr "Account umziehen"
+#: mod/install.php:430
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/uimport.php:69
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: mod/install.php:440
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/uimport.php:70
+#: mod/install.php:452
 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."
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: mod/uimport.php:71
+#: mod/install.php:453
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
-
-#: mod/uimport.php:72
-msgid "Account file"
-msgstr "Account Datei"
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
 
-#: mod/uimport.php:72
+#: mod/install.php:454
 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\""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: mod/install.php:455
+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/viewcontacts.php:75
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: mod/install.php:458
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: mod/install.php:468
+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/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
-#: mod/wall_upload.php:150 mod/wall_upload.php:153
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: mod/install.php:469
+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/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: mod/install.php:470
+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/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: mod/install.php:471
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+#: mod/install.php:474
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/wall_attach.php:158 mod/wall_attach.php:174
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: mod/install.php:490
+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/wallmessage.php:42 mod/wallmessage.php:106
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: mod/install.php:492
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/wallmessage.php:50 mod/message.php:60
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: mod/install.php:511
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: mod/wallmessage.php:53
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: mod/install.php:513
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/wallmessage.php:56 mod/message.php:67
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: mod/install.php:515
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/wallmessage.php:59 mod/message.php:70
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: mod/install.php:522
+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/wallmessage.php:62 mod/message.php:73
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: mod/install.php:547
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: mod/wallmessage.php:80 mod/wallmessage.php:89
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: mod/install.php:548
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
-#: mod/wallmessage.php:126 mod/message.php:322
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: mod/invite.php:30
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: mod/wallmessage.php:127
+#: mod/invite.php:53
 #, 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."
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510
-msgid "To:"
-msgstr "An:"
+#: mod/invite.php:78
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512
-msgid "Subject:"
-msgstr "Betreff:"
+#: mod/invite.php:89
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: mod/babel.php:16
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: mod/invite.php:93
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: mod/invite.php:97
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: mod/invite.php:116
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: mod/invite.php:124
+#, 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/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/invite.php:126
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/invite.php:127
+#, 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/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/invite.php:130
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/invite.php:136
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/invite.php:137
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/invite.php:138 mod/message.php:334 mod/message.php:517
+#: mod/wallmessage.php:137
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: mod/babel.php:65
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: mod/invite.php:139
+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/babel.php:69
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/invite.php:141
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: mod/cal.php:271 mod/events.php:375
-msgid "View"
-msgstr "Ansehen"
+#: mod/invite.php:141
+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/cal.php:272 mod/events.php:377
-msgid "Previous"
-msgstr "Vorherige"
+#: mod/invite.php:143
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
-#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
-msgid "Next"
-msgstr "Nächste"
+#: mod/localtime.php:25
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: mod/cal.php:282 mod/events.php:387
-msgid "list"
-msgstr "Liste"
+#: mod/localtime.php:27
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: mod/cal.php:292
-msgid "User not found"
-msgstr "Nutzer nicht gefunden"
+#: mod/localtime.php:31
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: mod/cal.php:308
-msgid "This calendar format is not supported"
-msgstr "Dieses Kalenderformat wird nicht unterstützt."
+#: mod/localtime.php:34
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: mod/cal.php:310
-msgid "No exportable data found"
-msgstr "Keine exportierbaren Daten gefunden"
+#: mod/localtime.php:37
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: mod/cal.php:325
-msgid "calendar"
-msgstr "Kalender"
+#: mod/localtime.php:42
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/lockview.php:33 mod/lockview.php:41
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: mod/community.php:50 mod/search.php:219
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: mod/lockview.php:50
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
-#: mod/profiles.php:182 mod/profiles.php:619
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: mod/lostpass.php:21
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
+
+#: mod/lostpass.php:37
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
 
-#: mod/dfrn_confirm.php:127
+#: mod/lostpass.php:43
+#, 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\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
 
-#: mod/dfrn_confirm.php:244
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: mod/lostpass.php:54
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
 
-#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: mod/dfrn_confirm.php:267
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: mod/lostpass.php:93
+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/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: mod/lostpass.php:112 boot.php:877
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: mod/dfrn_confirm.php:281
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: mod/lostpass.php:113
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: mod/dfrn_confirm.php:288
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: mod/lostpass.php:114
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: mod/dfrn_confirm.php:418
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: mod/lostpass.php:115
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
 
-#: mod/dfrn_confirm.php:559
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: mod/lostpass.php:116
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
 
-#: mod/dfrn_confirm.php:569
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: mod/lostpass.php:117
+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/dfrn_confirm.php:580
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: mod/lostpass.php:127
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
 
-#: mod/dfrn_confirm.php:602
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: mod/lostpass.php:133
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
 
-#: mod/dfrn_confirm.php:616
+#: mod/lostpass.php:149
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
+
+#: mod/lostpass.php:161
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
 
-#: mod/dfrn_confirm.php:636
+#: mod/lostpass.php:162
 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."
+"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/dfrn_confirm.php:647
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: mod/lostpass.php:163 boot.php:865
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: mod/dfrn_confirm.php:709
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
+#: mod/lostpass.php:164
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: mod/dfrn_confirm.php:781
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: mod/maintenance.php:21
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: mod/manage.php:152
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: mod/manage.php:153
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: mod/manage.php:154
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: mod/match.php:38
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
 
-#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+#: mod/match.php:91
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: mod/match.php:105
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/dfrn_request.php:225
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: mod/message.php:62 mod/wallmessage.php:52
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: mod/dfrn_request.php:253
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: mod/message.php:66
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/dfrn_request.php:280
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
+#: mod/message.php:69 mod/wallmessage.php:58
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: mod/dfrn_request.php:281
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: mod/message.php:72 mod/wallmessage.php:61
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: mod/dfrn_request.php:282
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: mod/message.php:75 mod/wallmessage.php:64
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: mod/dfrn_request.php:344
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: mod/message.php:206
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/dfrn_request.php:353
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/message.php:226
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/dfrn_request.php:378
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: mod/message.php:257
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/dfrn_request.php:481
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: mod/message.php:324 mod/wallmessage.php:128
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: mod/dfrn_request.php:485
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
+#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130
+msgid "To:"
+msgstr "An:"
 
-#: mod/dfrn_request.php:506
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: mod/message.php:366
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
+#: mod/message.php:405
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: mod/message.php:479
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: mod/dfrn_request.php:687
+#: mod/message.php:505 mod/message.php:593
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
+
+#: mod/message.php:507
 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."
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
-msgstr "Bestätigen"
+#: mod/message.php:511
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: mod/message.php:563
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: mod/dfrn_request.php:716
+#: mod/message.php:565
 #, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: mod/dfrn_request.php:717
+#: mod/message.php:567
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: mod/dfrn_request.php:848
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
+#: mod/message.php:596
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: mod/dfrn_request.php:872
+#: mod/message.php:599
 #, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
-
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: mod/dfrn_request.php:878
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: mod/mood.php:135
+msgid "Mood"
+msgstr "Stimmung"
 
-#: mod/dfrn_request.php:879 mod/follow.php:112
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: mod/mood.php:136
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
 
-#: mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808
 #, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
-
-#: mod/dfrn_request.php:884 mod/follow.php:114
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/network.php:200 mod/search.php:28
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/dfrn_request.php:889
+#: mod/network.php:407
 #, 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."
+"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/dfrn_request.php:890 mod/follow.php:120
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: mod/network.php:410
+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/dfrn_request.php:893 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: mod/network.php:538
+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/dirfind.php:37
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/network.php:543
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+#: mod/network.php:816
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/events.php:93 mod/events.php:95
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+#: mod/network.php:819
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/events.php:102 mod/events.php:104
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: mod/network.php:824
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/events.php:376
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/network.php:827
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/events.php:481
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/network.php:838
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/events.php:482
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/network.php:846
+msgid "New"
+msgstr "Neue"
 
-#: mod/events.php:483 mod/events.php:484
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/network.php:849
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
-msgid "Required"
-msgstr "Benötigt"
+#: mod/network.php:857
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/events.php:485 mod/events.php:501
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/network.php:860
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/events.php:487 mod/events.php:488
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/network.php:868
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/events.php:489 mod/events.php:502
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/network.php:871
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/events.php:491
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/newmember.php:7
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: mod/events.php:495 mod/events.php:497
-msgid "Title:"
-msgstr "Titel:"
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: mod/events.php:498 mod/events.php:499
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/newmember.php:10
+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."
 
-#: mod/events.php:528
-msgid "Failed to remove event"
-msgstr "Entfernen der Veranstaltung fehlgeschlagen"
+#: mod/newmember.php:11
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: mod/events.php:530
-msgid "Event removed"
-msgstr "Veranstaltung enfternt"
+#: mod/newmember.php:13
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
+#: mod/newmember.php:13
+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."
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/newmember.php:17
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/newmember.php:17
+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.."
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
+#: mod/newmember.php:18
+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."
 
-#: mod/follow.php:186
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: mod/friendica.php:68
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: mod/newmember.php:22
+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."
 
-#: mod/friendica.php:69
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: mod/newmember.php:23
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: mod/friendica.php:73
+#: mod/newmember.php:23
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
+"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."
 
-#: mod/friendica.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: mod/newmember.php:24
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: mod/friendica.php:77
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
+#: mod/newmember.php:24
+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."
+
+#: mod/newmember.php:26
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
+
+#: mod/newmember.php:32
+msgid "Importing Emails"
+msgstr "Emails Importieren"
+
+#: mod/newmember.php:32
+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."
+
+#: mod/newmember.php:35
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
+
+#: mod/newmember.php:35
+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."
+
+#: mod/newmember.php:36
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
 
-#: mod/friendica.php:80
+#: mod/newmember.php:36
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
+"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."
 
-#: mod/friendica.php:94
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps:"
+#: mod/newmember.php:37
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: mod/friendica.php:108
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: mod/newmember.php:37
+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."
 
-#: mod/friendica.php:113
-msgid "On this server the following remote servers are blocked."
-msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
+#: mod/newmember.php:41
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
-msgid "Reason for the block"
-msgstr "Begründung für die Blockierung"
+#: mod/newmember.php:41
+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."
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: mod/newmember.php:44
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: mod/newmember.php:44
+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."
 
-#: mod/group.php:49 mod/group.php:154
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: mod/newmember.php:48
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: mod/group.php:63
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: mod/newmember.php:50
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: mod/group.php:93
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: mod/newmember.php:50
+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."
 
-#: mod/group.php:98
-msgid "Create a group of contacts/friends."
-msgstr "Eine Kontaktgruppe anlegen."
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597
+#: mod/contacts.php:941
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: mod/group.php:123
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: mod/nogroup.php:46 mod/contacts.php:942
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: mod/group.php:125
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/group.php:189
-msgid "Delete Group"
-msgstr "Gruppe löschen"
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/group.php:195
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: mod/notifications.php:46 mod/notifications.php:182
+#: mod/notifications.php:229
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/group.php:200
-msgid "Edit Group Name"
-msgstr "Gruppen Name bearbeiten"
+#: mod/notifications.php:62 mod/notifications.php:181
+#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817
+#: mod/contacts.php:1002
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: mod/group.php:210
-msgid "Members"
-msgstr "Mitglieder"
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/group.php:226
-msgid "Remove Contact"
-msgstr "Kontakt löschen"
+#: mod/notifications.php:113 mod/notify.php:72
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: mod/group.php:250
-msgid "Add Contact"
-msgstr "Kontakt hinzufügen"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: mod/manage.php:151
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: mod/manage.php:152
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
+#: mod/notifications.php:154
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/manage.php:153
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/notifications.php:154
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/message.php:64
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: mod/notifications.php:166 mod/notifications.php:236
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/message.php:204
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: mod/notifications.php:169
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/message.php:224
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
 
-#: mod/message.php:255
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: mod/notifications.php:175 mod/notifications.php:254
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/message.php:364
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: mod/notifications.php:175 mod/notifications.php:254
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/message.php:403
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/message.php:477
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: mod/notifications.php:197
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: mod/notifications.php:198
+msgid "yes"
+msgstr "ja"
 
-#: mod/message.php:505
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
+#: mod/notifications.php:198
+msgid "no"
+msgstr "nein"
 
-#: mod/message.php:509
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Soll die Verbindung beidseitig sein oder nicht?"
 
-#: mod/message.php:561
+#: mod/notifications.php:200 mod/notifications.php:205
 #, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
 
-#: mod/message.php:563
+#: mod/notifications.php:201
 #, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: mod/message.php:565
+#: mod/notifications.php:206
 #, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Kontakt"
 
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/network.php:197 mod/search.php:25
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Abonnent"
 
-#: mod/network.php:404
-#, 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/notifications.php:274
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: mod/network.php:407
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
+#: mod/notifications.php:315
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: mod/network.php:535
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: mod/notifications.php:315
+msgid "Show all"
+msgstr "Alle anzeigen"
 
-#: mod/network.php:540
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/notifications.php:321
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
-#: mod/network.php:813
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/notify.php:68
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: mod/network.php:816
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/oexchange.php:24
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: mod/network.php:821
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: mod/network.php:824
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/openid.php:60
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: mod/network.php:835
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/ostatus_subscribe.php:16
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus Kontakten folgen"
 
-#: mod/network.php:843
-msgid "New"
-msgstr "Neue"
+#: mod/ostatus_subscribe.php:27
+msgid "No contact provided."
+msgstr "Keine Kontakte gefunden."
 
-#: mod/network.php:846
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/ostatus_subscribe.php:33
+msgid "Couldn't fetch information for contact."
+msgstr "Konnte die Kontaktinformationen nicht einholen."
 
-#: mod/network.php:854
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/ostatus_subscribe.php:42
+msgid "Couldn't fetch friends for contact."
+msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
 
-#: mod/network.php:857
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46
+msgid "Done"
+msgstr "Erledigt"
 
-#: mod/network.php:865
-msgid "Starred"
-msgstr "Markierte"
+#: mod/ostatus_subscribe.php:70
+msgid "success"
+msgstr "Erfolg"
 
-#: mod/network.php:868
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/ostatus_subscribe.php:72
+msgid "failed"
+msgstr "Fehlgeschlagen"
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
 
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
+#: mod/p.php:12
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: mod/photos.php:94 mod/photos.php:1900
+#: mod/photos.php:96 mod/photos.php:1902
 msgid "Recent Photos"
 msgstr "Neueste Fotos"
 
-#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
+#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904
 msgid "Upload New Photos"
 msgstr "Neue Fotos hochladen"
 
-#: mod/photos.php:112 mod/settings.php:36
+#: mod/photos.php:114 mod/settings.php:38
 msgid "everybody"
 msgstr "jeder"
 
-#: mod/photos.php:176
+#: mod/photos.php:178
 msgid "Contact information unavailable"
 msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/photos.php:197
+#: mod/photos.php:199
 msgid "Album not found."
 msgstr "Album nicht gefunden."
 
-#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
+#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274
 msgid "Delete Album"
 msgstr "Album löschen"
 
-#: mod/photos.php:240
+#: mod/photos.php:242
 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/photos.php:323 mod/photos.php:334 mod/photos.php:1598
+#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600
 msgid "Delete Photo"
 msgstr "Foto löschen"
 
-#: mod/photos.php:332
+#: mod/photos.php:334
 msgid "Do you really want to delete this photo?"
 msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/photos.php:713
+#: mod/photos.php:715
 #, 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/photos.php:713
+#: mod/photos.php:715
 msgid "a photo"
 msgstr "einem Foto"
 
-#: mod/photos.php:821
+#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
+
+#: mod/photos.php:823
 msgid "Image file is empty."
 msgstr "Bilddatei ist leer."
 
-#: mod/photos.php:988
+#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
+
+#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
+
+#: mod/photos.php:990
 msgid "No photos selected"
 msgstr "Keine Bilder ausgewählt"
 
-#: mod/photos.php:1091 mod/videos.php:309
+#: mod/photos.php:1093 mod/videos.php:311
 msgid "Access to this item is restricted."
 msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/photos.php:1151
+#: mod/photos.php:1153
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: mod/photos.php:1188
+#: mod/photos.php:1190
 msgid "Upload Photos"
 msgstr "Bilder hochladen"
 
-#: mod/photos.php:1192 mod/photos.php:1267
+#: mod/photos.php:1194 mod/photos.php:1269
 msgid "New album name: "
 msgstr "Name des neuen Albums: "
 
-#: mod/photos.php:1193
+#: mod/photos.php:1195
 msgid "or existing album name: "
 msgstr "oder existierender Albumname: "
 
-#: mod/photos.php:1194
+#: mod/photos.php:1196
 msgid "Do not show a status post for this upload"
 msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
+#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308
 msgid "Show to Groups"
 msgstr "Zeige den Gruppen"
 
-#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
 msgid "Show to Contacts"
 msgstr "Zeige den Kontakten"
 
-#: mod/photos.php:1207
+#: mod/photos.php:1209
 msgid "Private Photo"
 msgstr "Privates Foto"
 
-#: mod/photos.php:1208
+#: mod/photos.php:1210
 msgid "Public Photo"
 msgstr "Öffentliches Foto"
 
-#: mod/photos.php:1278
+#: mod/photos.php:1280
 msgid "Edit Album"
 msgstr "Album bearbeiten"
 
-#: mod/photos.php:1283
+#: mod/photos.php:1285
 msgid "Show Newest First"
 msgstr "Zeige neueste zuerst"
 
-#: mod/photos.php:1285
+#: mod/photos.php:1287
 msgid "Show Oldest First"
 msgstr "Zeige älteste zuerst"
 
-#: mod/photos.php:1314 mod/photos.php:1885
+#: mod/photos.php:1316 mod/photos.php:1887
 msgid "View Photo"
 msgstr "Foto betrachten"
 
-#: mod/photos.php:1359
+#: mod/photos.php:1361
 msgid "Permission denied. Access to this item may be restricted."
 msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/photos.php:1361
+#: mod/photos.php:1363
 msgid "Photo not available"
 msgstr "Foto nicht verfügbar"
 
-#: mod/photos.php:1422
+#: mod/photos.php:1424
 msgid "View photo"
 msgstr "Fotos ansehen"
 
-#: mod/photos.php:1422
+#: mod/photos.php:1424
 msgid "Edit photo"
 msgstr "Foto bearbeiten"
 
-#: mod/photos.php:1423
+#: mod/photos.php:1425
 msgid "Use as profile photo"
 msgstr "Als Profilbild verwenden"
 
-#: mod/photos.php:1448
+#: mod/photos.php:1450
 msgid "View Full Size"
 msgstr "Betrachte Originalgröße"
 
-#: mod/photos.php:1538
+#: mod/photos.php:1540
 msgid "Tags: "
 msgstr "Tags: "
 
-#: mod/photos.php:1541
+#: mod/photos.php:1543
 msgid "[Remove any tag]"
 msgstr "[Tag entfernen]"
 
-#: mod/photos.php:1584
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/photos.php:1586
+msgid "New album name"
+msgstr "Name des neuen Albums"
+
+#: mod/photos.php:1587
+msgid "Caption"
+msgstr "Bildunterschrift"
+
+#: mod/photos.php:1588
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
+
+#: mod/photos.php:1588
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+
+#: mod/photos.php:1589
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
+
+#: mod/photos.php:1590
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
+
+#: mod/photos.php:1591
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
+
+#: mod/photos.php:1606
+msgid "Private photo"
+msgstr "Privates Foto"
+
+#: mod/photos.php:1607
+msgid "Public photo"
+msgstr "Öffentliches Foto"
+
+#: mod/photos.php:1816
+msgid "Map"
+msgstr "Karte"
+
+#: mod/photos.php:1893 mod/videos.php:395
+msgid "View Album"
+msgstr "Album betrachten"
+
+#: mod/ping.php:273
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
+
+#: mod/ping.php:288
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
+
+#: mod/ping.php:303
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
+
+#: mod/poke.php:197
+msgid "Poke/Prod"
+msgstr "Anstupsen"
+
+#: mod/poke.php:198
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
+
+#: mod/poke.php:199
+msgid "Recipient"
+msgstr "Empfänger"
+
+#: mod/poke.php:200
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
+
+#: mod/poke.php:203
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
+
+#: mod/profile.php:176
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
+
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
+
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
+
+#: mod/profperm.php:118
+msgid "Visible To"
+msgstr "Sichtbar für"
+
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+
+#: mod/register.php:95
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+
+#: mod/register.php:100
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
+
+#: mod/register.php:107
+msgid "Registration successful."
+msgstr "Registrierung erfolgreich."
+
+#: mod/register.php:113
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+
+#: 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/register.php:200 mod/uimport.php:53
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+
+#: mod/register.php:228
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
+
+#: mod/register.php:229
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
+
+#: mod/register.php:230
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
+
+#: mod/register.php:244
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+
+#: mod/register.php:269
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
+
+#: mod/register.php:269
+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/register.php:270
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+
+#: mod/register.php:271
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
+
+#: mod/register.php:274 mod/admin.php:1062
+msgid "Registration"
+msgstr "Registrierung"
+
+#: mod/register.php:282
+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/register.php:283
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
+
+#: mod/register.php:285 mod/settings.php:1279
+msgid "New Password:"
+msgstr "Neues Passwort:"
+
+#: mod/register.php:285
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
+
+#: mod/register.php:286 mod/settings.php:1280
+msgid "Confirm:"
+msgstr "Bestätigen:"
+
+#: mod/register.php:287
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+
+#: mod/register.php:288
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
+
+#: mod/register.php:297 mod/uimport.php:68
+msgid "Import"
+msgstr "Import"
+
+#: mod/register.php:298
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+
+#: mod/removeme.php:54 mod/removeme.php:57
+msgid "Remove My Account"
+msgstr "Konto löschen"
+
+#: mod/removeme.php:55
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+
+#: mod/removeme.php:56
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+
+#: mod/repair_ostatus.php:16
+msgid "Resubscribing to OStatus contacts"
+msgstr "Erneuern der OStatus Abonements"
+
+#: mod/repair_ostatus.php:32
+msgid "Error"
+msgstr "Fehler"
+
+#: mod/search.php:103
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+
+#: mod/search.php:127
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
+
+#: mod/search.php:128
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
+
+#: mod/search.php:228
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
+
+#: mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
+
+#: mod/suggest.php:29
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+
+#: 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/suggest.php:86 mod/suggest.php:106
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
+
+#: mod/tagrm.php:45
+msgid "Tag removed"
+msgstr "Tag entfernt"
+
+#: mod/tagrm.php:84
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: mod/photos.php:1585
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: mod/tagrm.php:86
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: mod/photos.php:1586
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/uexport.php:38
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: mod/photos.php:1586
+#: mod/uexport.php:38
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
 
-#: mod/photos.php:1587
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: mod/uexport.php:39
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: mod/photos.php:1588
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/uexport.php:39
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
 
-#: mod/photos.php:1589
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/uexport.php:46 mod/settings.php:97
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: mod/photos.php:1604
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/photos.php:1605
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/videos.php:126
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: mod/photos.php:1814
-msgid "Map"
-msgstr "Karte"
+#: mod/videos.php:131
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: mod/photos.php:1891 mod/videos.php:393
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/videos.php:210
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: mod/probe.php:10 mod/webfinger.php:9
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
+#: mod/videos.php:404
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: mod/profile.php:175
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: mod/videos.php:406
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/viewcontacts.php:78
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: mod/profiles.php:54 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/viewsrc.php:8
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: mod/profiles.php:73 mod/profiles.php:118
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
+#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
+#: mod/wall_upload.php:150 mod/wall_upload.php:153
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: mod/profiles.php:192
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: mod/profiles.php:332
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: mod/profiles.php:336
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/wall_attach.php:160 mod/wall_attach.php:176
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: mod/profiles.php:348
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/wallmessage.php:44 mod/wallmessage.php:108
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
 
-#: mod/profiles.php:351
-msgid "Religion"
-msgstr "Religion"
+#: mod/wallmessage.php:55
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
 
-#: mod/profiles.php:355
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/wallmessage.php:82 mod/wallmessage.php:91
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: mod/profiles.php:359
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/wallmessage.php:129
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: mod/profiles.php:363
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
 
-#: mod/profiles.php:367
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/dfrn_request.php:103
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: mod/profiles.php:371
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/dfrn_request.php:126 mod/dfrn_request.php:528
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
 
-#: mod/profiles.php:375 mod/profiles.php:695
-msgid "Interests"
-msgstr "Interessen"
+#: mod/dfrn_request.php:131 mod/dfrn_request.php:533
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: mod/profiles.php:379
-msgid "Address"
-msgstr "Adresse"
+#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: mod/profiles.php:386 mod/profiles.php:691
-msgid "Location"
-msgstr "Wohnort"
+#: mod/dfrn_request.php:138 mod/dfrn_request.php:540
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: mod/profiles.php:471
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/dfrn_request.php:182
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr " und "
+#: mod/dfrn_request.php:227
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/dfrn_request.php:255
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: mod/profiles.php:576
+#: mod/dfrn_request.php:282
 #, 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;"
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: mod/dfrn_request.php:283
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: 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/dfrn_request.php:284
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: mod/profiles.php:637
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/dfrn_request.php:346
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: mod/profiles.php:642
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: mod/dfrn_request.php:355
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/profiles.php:667
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/dfrn_request.php:380
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: mod/profiles.php:679
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/dfrn_request.php:483
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: mod/profiles.php:680
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/dfrn_request.php:487
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
 
-#: mod/profiles.php:682
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: mod/dfrn_request.php:508
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: mod/profiles.php:683
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/dfrn_request.php:593 mod/contacts.php:221
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: mod/profiles.php:685
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/dfrn_request.php:614
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: mod/profiles.php:686
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/dfrn_request.php:656
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
 
-#: mod/profiles.php:687
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/dfrn_request.php:677
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: mod/profiles.php:689
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/dfrn_request.php:687
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: mod/profiles.php:690
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: mod/dfrn_request.php:713
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
+
+#: mod/dfrn_request.php:716
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
+
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: mod/profiles.php:692
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/dfrn_request.php:848
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
 
-#: mod/profiles.php:693
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/dfrn_request.php:872
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: mod/profiles.php:694
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/dfrn_request.php:877
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
 
-#: mod/profiles.php:697
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/dfrn_request.php:878
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: mod/profiles.php:701
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/profiles.php:702
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/dfrn_request.php:889
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
 
-#: mod/profiles.php:704
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/item.php:118
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/profiles.php:709
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/profiles.php:711
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+#: mod/item.php:904
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/profiles.php:712
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/item.php:995
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: mod/profiles.php:713
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/item.php:997
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/profiles.php:716
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/item.php:998
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
 
-#: mod/profiles.php:717
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: mod/profiles.php:718
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/regmod.php:60
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: mod/profiles.php:719
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/regmod.php:88
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: mod/profiles.php:720
-msgid "Country:"
-msgstr "Land:"
+#: mod/regmod.php:100
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: mod/profiles.php:724
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/uimport.php:70
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: mod/profiles.php:724
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
 
-#: mod/profiles.php:725
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/uimport.php:72
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
 
-#: mod/profiles.php:727
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/uimport.php:73
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
 
-#: mod/profiles.php:728
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/uimport.php:74
+msgid "Account file"
+msgstr "Account Datei"
 
-#: mod/profiles.php:728
+#: mod/uimport.php:74
 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."
+"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/profiles.php:729
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/admin.php:97
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/profiles.php:732
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/admin.php:166 mod/admin.php:1060
+msgid "Site"
+msgstr "Seite"
 
-#: mod/profiles.php:733
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/profiles.php:733
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/profiles.php:734
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/profiles.php:734
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: mod/admin.php:170 mod/settings.php:54
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/profiles.php:737
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/admin.php:171
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/profiles.php:738
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/admin.php:172 mod/admin.php:513
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/profiles.php:739
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/admin.php:173 mod/admin.php:289
+msgid "Server Blocklist"
+msgstr "Server Blockliste"
 
-#: mod/profiles.php:740
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/admin.php:174 mod/admin.php:479
+msgid "Federation Statistics"
+msgstr "Federation Statistik"
 
-#: mod/profiles.php:741
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/profiles.php:742
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/admin.php:189 mod/admin.php:2090
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/profiles.php:743
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/admin.php:190
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/profiles.php:744
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/admin.php:191
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: mod/profiles.php:745
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/admin.php:198
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/profiles.php:786
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/admin.php:200
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+#: mod/admin.php:201
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/register.php:98
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
+#: mod/admin.php:280
+msgid "The blocked domain"
+msgstr "Die blockierte Domain"
 
-#: mod/register.php:105
-msgid "Registration successful."
-msgstr "Registrierung erfolgreich."
+#: mod/admin.php:281 mod/admin.php:294
+msgid "The reason why you blocked this domain."
+msgstr "Die Begründung warum du diese Domain blockiert hast."
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: mod/admin.php:282
+msgid "Delete domain"
+msgstr "Domain löschen"
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: mod/admin.php:282
+msgid "Check to delete this entry from the blocklist"
+msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
 
-#: mod/register.php:226
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
+#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592
+#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684
+#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/register.php:227
+#: mod/admin.php:290
 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."
+"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/admin.php:291
+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/register.php:228
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: mod/admin.php:292
+msgid "Add new entry to block list"
+msgstr "Neuen Eintrag in die Blockliste"
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: mod/admin.php:293
+msgid "Server Domain"
+msgstr "Domain des Servers"
 
-#: mod/register.php:267
-msgid "Note for the admin"
-msgstr "Hinweis für den Admin"
+#: mod/admin.php:293
+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/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
+#: mod/admin.php:294
+msgid "Block reason"
+msgstr "Begründung der Blockierung"
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: mod/admin.php:295
+msgid "Add Entry"
+msgstr "Eintrag hinzufügen"
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/admin.php:296
+msgid "Save changes to the blocklist"
+msgstr "Änderungen der Blockliste speichern"
 
-#: mod/register.php:272 mod/admin.php:1056
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/admin.php:297
+msgid "Current Entries in the Blocklist"
+msgstr "Aktuelle Einträge der Blockliste"
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
+#: mod/admin.php:300
+msgid "Delete entry from blocklist"
+msgstr "Eintrag von der Blockliste entfernen"
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/admin.php:303
+msgid "Delete entry from blocklist?"
+msgstr "Eintrag von der Blockliste entfernen?"
 
-#: mod/register.php:283 mod/settings.php:1278
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/admin.php:328
+msgid "Server added to blocklist."
+msgstr "Server zur Blockliste hinzugefügt."
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/admin.php:344
+msgid "Site blocklist updated."
+msgstr "Blockliste aktualisiert."
 
-#: mod/register.php:284 mod/settings.php:1279
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/admin.php:409
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/register.php:285
+#: mod/admin.php:472
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
-
-#: mod/register.php:286
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+"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/register.php:296
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/admin.php:473
+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/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: mod/admin.php:485
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: mod/admin.php:515
+msgid "ID"
+msgstr "ID"
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
+#: mod/admin.php:516
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/search.php:225
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+#: mod/admin.php:517
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
 
-#: mod/settings.php:43 mod/admin.php:1490
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/admin.php:519
+msgid "Created"
+msgstr "Erstellt"
 
-#: mod/settings.php:52 mod/admin.php:169
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/admin.php:520
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Anzeige"
+#: mod/admin.php:521
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
 
-#: mod/settings.php:67 mod/settings.php:890
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/admin.php:546
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
 
-#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/admin.php:555
+msgid ""
+"The database update failed. Please run \"php include/dbstructure.php "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/admin.php:560 mod/admin.php:1453
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/settings.php:95 mod/uexport.php:45
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: mod/admin.php:561 mod/admin.php:1454
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/admin.php:562 mod/admin.php:1455
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: mod/settings.php:157
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/admin.php:563 mod/admin.php:1456
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: mod/settings.php:271
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
+#: mod/admin.php:564
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/settings.php:276
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/admin.php:565
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: mod/settings.php:291
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/admin.php:587
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/settings.php:361
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: mod/admin.php:593
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/settings.php:380
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: mod/admin.php:595
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: mod/settings.php:388
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/admin.php:597
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/settings.php:399
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/admin.php:598
+msgid "Version"
+msgstr "Version"
 
-#: mod/settings.php:401
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: mod/admin.php:603
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: mod/settings.php:481
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/admin.php:628
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: mod/settings.php:483
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: mod/admin.php:920
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/settings.php:492
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/admin.php:948 mod/settings.php:944
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/settings.php:497
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: mod/admin.php:977
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: mod/settings.php:503
-msgid " Cannot change to that email."
-msgstr "Ã\84ndern der E-Mail nicht möglich. "
+#: mod/admin.php:978
+msgid "Public postings from users of this site"
+msgstr "Ã\96ffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/settings.php:559
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
+#: mod/admin.php:979
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: mod/settings.php:563
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
+#: mod/admin.php:984 mod/contacts.php:541
+msgid "Never"
+msgstr "Niemals"
 
-#: mod/settings.php:603
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: mod/admin.php:985
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/admin.php:993 mod/contacts.php:568
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
-#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
-#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
-#: mod/admin.php:2170
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: mod/admin.php:995
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/admin.php:996
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/settings.php:685 mod/settings.php:711
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/admin.php:1000
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/admin.php:1001
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/settings.php:687 mod/settings.php:713
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/admin.php:1002
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/settings.php:698
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/admin.php:1003
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/settings.php:741
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/admin.php:1008
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/settings.php:745
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: mod/admin.php:1031
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/settings.php:746
-msgid "No name"
-msgstr "Kein Name"
+#: mod/admin.php:1032
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/settings.php:747
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/admin.php:1033
+msgid "Open"
+msgstr "Offen"
 
-#: mod/settings.php:759
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: mod/admin.php:1037
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/settings.php:768
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: mod/admin.php:1038
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
-msgid "Off"
-msgstr "Aus"
+#: mod/admin.php:1039
+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:782 mod/admin.php:2159 mod/admin.php:2160
-msgid "On"
-msgstr "An"
+#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023
+#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793
+#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006
+#: mod/settings.php:1272
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: mod/settings.php:790
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: mod/admin.php:1063
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/settings.php:800 mod/settings.php:804
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+#: mod/admin.php:1064
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/settings.php:810
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
+#: mod/admin.php:1066
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/settings.php:812
-msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the"
-" original friendica post."
-msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
+#: mod/admin.php:1067
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/settings.php:818
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+#: mod/admin.php:1068
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/settings.php:820
+#: mod/admin.php:1069
 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,."
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/settings.php:826
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+#: mod/admin.php:1072
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/settings.php:834
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
+#: mod/admin.php:1073
+msgid "Host name"
+msgstr "Host Name"
 
-#: mod/settings.php:836
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
-msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
+#: mod/admin.php:1074
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: mod/settings.php:839
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
+#: mod/admin.php:1074
+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:848 mod/settings.php:849
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+#: mod/admin.php:1075
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/admin.php:1076
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/admin.php:1076
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/settings.php:849
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/admin.php:1077
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/settings.php:883
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/admin.php:1077
+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:895
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: mod/admin.php:1078
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: mod/settings.php:896
+#: mod/admin.php:1078
+#, 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."
-
-#: mod/settings.php:897
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
 
-#: mod/settings.php:899
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/admin.php:1079
+msgid "System language"
+msgstr "Systemsprache"
 
-#: mod/settings.php:900
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/admin.php:1080
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/settings.php:901
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/admin.php:1080
+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:901 mod/settings.php:906
-msgid "None"
-msgstr "Keine"
+#: mod/admin.php:1081
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: mod/settings.php:902
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/admin.php:1081
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: mod/settings.php:903
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/admin.php:1082
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/settings.php:904
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/admin.php:1082
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/settings.php:905
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/admin.php:1083
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: mod/settings.php:906
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/admin.php:1083
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: mod/settings.php:906
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/admin.php:1084
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/settings.php:907
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/admin.php:1084
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: mod/settings.php:943 mod/admin.php:942
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/admin.php:1085
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: mod/settings.php:1003
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/admin.php:1085
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: mod/settings.php:1009 mod/settings.php:1032
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/admin.php:1086
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/settings.php:1010
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/admin.php:1086
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: mod/settings.php:1011
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+#: mod/admin.php:1087
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/settings.php:1011
+#: mod/admin.php:1087
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
-msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
+"Maximum 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:1012
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/admin.php:1088
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/settings.php:1012
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
+#: mod/admin.php:1088
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: mod/settings.php:1013
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/admin.php:1090
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/settings.php:1013 mod/settings.php:1014
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/admin.php:1091
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: mod/settings.php:1014
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
+#: mod/admin.php:1091
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: mod/settings.php:1015
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/admin.php:1092
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: mod/settings.php:1016
-msgid "Calendar"
-msgstr "Kalender"
+#: mod/admin.php:1092
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/settings.php:1017
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
+#: mod/admin.php:1093
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: mod/settings.php:1018
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/admin.php:1093
+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:1019
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/admin.php:1094
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/settings.php:1020
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
+#: mod/admin.php:1094
+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:1021
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
+#: mod/admin.php:1095
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/settings.php:1021
+#: mod/admin.php:1095
 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/settings.php:1023
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
+"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:1024
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
+#: mod/admin.php:1096
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/settings.php:1025
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
+#: mod/admin.php:1096
+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:1026 view/theme/duepuntozero/config.php:63
-#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
-#: view/theme/vier/config.php:114
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: mod/admin.php:1097
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/settings.php:1110
-msgid "Account Types"
-msgstr "Kontenarten"
+#: mod/admin.php:1097
+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:1111
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
+#: mod/admin.php:1098
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/settings.php:1112
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
+#: mod/admin.php:1098
+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:1119
-msgid "Personal Page"
-msgstr "Persönliche Seite"
+#: mod/admin.php:1099
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/settings.php:1120
-msgid "This account is a regular personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/admin.php:1099
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/settings.php:1123
-msgid "Organisation Page"
-msgstr "Organisationsseite"
+#: mod/admin.php:1100
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/settings.php:1124
-msgid "This account is a profile for an organisation"
-msgstr "Diese Konto ist ein Profil für eine Organisation"
+#: mod/admin.php:1100
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: mod/settings.php:1127
-msgid "News Page"
-msgstr "Nachrichtenseite"
+#: mod/admin.php:1101
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/settings.php:1128
-msgid "This account is a news account/reflector"
-msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
+#: mod/admin.php:1101
+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:1131
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
+#: mod/admin.php:1102
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/settings.php:1132
+#: mod/admin.php:1102
 msgid ""
-"This account is a community forum where people can discuss with each other"
-msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
+"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:1135
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/admin.php:1103
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/settings.php:1136
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/admin.php:1103
+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:1139
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: mod/admin.php:1104
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/settings.php:1140
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: mod/admin.php:1104
+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:1143
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
+#: mod/admin.php:1105
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/settings.php:1144
-msgid "Automatically approve all contact requests"
-msgstr "Bestätige alle Kontaktanfragen automatisch"
+#: mod/admin.php:1105
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: mod/settings.php:1147
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: mod/admin.php:1106
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/settings.php:1148
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: mod/admin.php:1106
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/settings.php:1151
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: mod/admin.php:1107
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/settings.php:1152
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: mod/admin.php:1107
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: mod/settings.php:1163
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:1108
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
 
-#: mod/settings.php:1163
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: mod/admin.php:1108
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
 
-#: mod/settings.php:1171
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: mod/admin.php:1109
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/settings.php:1171
-msgid "Your profile may be visible in public."
-msgstr "Dein Profil könnte öffentlich abrufbar sein."
+#: mod/admin.php:1109
+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/admin.php:1110
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/settings.php:1177
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: mod/admin.php:1110
+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:1184
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: mod/admin.php:1111
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: mod/settings.php:1188
+#: mod/admin.php:1111
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
 
-#: mod/settings.php:1193
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: mod/admin.php:1112
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/settings.php:1198
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: mod/admin.php:1112
+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:1203
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: mod/admin.php:1113
+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:1208
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: mod/admin.php:1115
+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:1216
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: mod/admin.php:1116
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/settings.php:1224
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
+#: mod/admin.php:1116
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/settings.php:1231
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: mod/admin.php:1117
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/settings.php:1231
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
+#: mod/admin.php:1117
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: mod/settings.php:1232
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: mod/admin.php:1118
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: mod/settings.php:1233
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: mod/admin.php:1118
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: mod/settings.php:1234
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: mod/admin.php:1119
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: mod/settings.php:1235
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: mod/admin.php:1120
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/settings.php:1236
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: mod/admin.php:1121
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: mod/settings.php:1237
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: mod/admin.php:1121
+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:1238
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: mod/admin.php:1122
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: mod/settings.php:1269
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: mod/admin.php:1122
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: mod/settings.php:1277
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: mod/admin.php:1123
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
 
-#: mod/settings.php:1279
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+#: mod/admin.php:1123
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/settings.php:1280
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: mod/admin.php:1124
+msgid "Minimal Memory"
+msgstr "Minimaler Speicher"
 
-#: mod/settings.php:1280 mod/settings.php:1281
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+#: mod/admin.php:1124
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
 
-#: mod/settings.php:1281
-msgid "Password:"
-msgstr "Passwort:"
+#: mod/admin.php:1125
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
 
-#: mod/settings.php:1285
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: mod/admin.php:1125
+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:1287
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: mod/admin.php:1126
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/settings.php:1288
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: mod/admin.php:1126
+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:1289
-msgid "Your Language:"
-msgstr "Deine Sprache:"
+#: mod/admin.php:1128
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/settings.php:1289
+#: mod/admin.php:1128
 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/settings.php:1290
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
 
-#: mod/settings.php:1291
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: mod/admin.php:1129
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/settings.php:1294
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: mod/admin.php:1129
+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:1296
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+#: mod/admin.php:1130
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
 
-#: mod/settings.php:1296 mod/settings.php:1326
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: mod/admin.php:1130
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
 
-#: mod/settings.php:1297
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: mod/admin.php:1131
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/settings.php:1298
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: mod/admin.php:1131
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
 
-#: mod/settings.php:1309
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: mod/admin.php:1132
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/settings.php:1310
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: mod/admin.php:1132
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
 
-#: mod/settings.php:1314
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: mod/admin.php:1134
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
 
-#: mod/settings.php:1326
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: mod/admin.php:1134
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
 
-#: mod/settings.php:1329
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: mod/admin.php:1136
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: mod/settings.php:1330
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: mod/admin.php:1136
+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:1331
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: mod/admin.php:1137
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: mod/settings.php:1332
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: mod/admin.php:1137
+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:1333
-msgid "making an <em>interesting</em> profile change"
-msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
+#: mod/admin.php:1138
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: mod/settings.php:1334
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: mod/admin.php:1138
+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:1335
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: mod/admin.php:1139
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/settings.php:1336
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: mod/admin.php:1139
+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:1337
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: mod/admin.php:1140
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: mod/settings.php:1338
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: mod/admin.php:1140
+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:1339
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: mod/admin.php:1141
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: mod/settings.php:1340
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: mod/admin.php:1141
+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:1341
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: mod/admin.php:1142
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: mod/settings.php:1342
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: mod/admin.php:1142
+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:1344
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/admin.php:1143
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: mod/settings.php:1344
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/admin.php:1143
+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:1346
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: mod/admin.php:1145
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: mod/settings.php:1348
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: mod/admin.php:1145
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
 
-#: mod/settings.php:1350
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: mod/admin.php:1147
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
 
-#: mod/settings.php:1351
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: mod/admin.php:1147
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/settings.php:1354
-msgid "Relocate"
-msgstr "Umziehen"
+#: mod/admin.php:1149
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: mod/settings.php:1355
+#: mod/admin.php:1149
 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."
+"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:1356
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/admin.php:1150
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
 
-#: mod/uexport.php:37
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/admin.php:1150
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
+
+#: mod/admin.php:1151
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
 
-#: mod/uexport.php:37
+#: mod/admin.php:1151
 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."
+"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/uexport.php:38
-msgid "Export all"
-msgstr "Alles exportieren"
+#: mod/admin.php:1152
+msgid "Enable frontend worker"
+msgstr "Aktiviere den Frontend Worker"
 
-#: mod/uexport.php:38
+#: mod/admin.php:1152
 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)."
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server. The worker background process needs to be activated for "
+"this."
+msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
 
-#: mod/videos.php:124
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/admin.php:1182
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/videos.php:129
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/admin.php:1190
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/videos.php:208
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/admin.php:1193
+#, 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/videos.php:402
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/admin.php:1207
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/videos.php:404
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/admin.php:1210
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: mod/install.php:106
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: mod/admin.php:1213
+#, 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/install.php:112
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/admin.php:1216
+#, 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/install.php:116
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/admin.php:1236
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/install.php:122
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/admin.php:1237
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: mod/install.php:127
+#: mod/admin.php:1242
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
+
+#: mod/admin.php:1243
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+"This 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/install.php:128 mod/install.php:200 mod/install.php:547
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/admin.php:1244
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/install.php:140
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/admin.php:1245
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/install.php:197
-msgid "System check"
-msgstr "Systemtest"
+#: mod/admin.php:1279
+#, 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/install.php:202
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/admin.php:1282
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
 
-#: mod/install.php:221
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/admin.php:1326
+#, 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/install.php:222
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
+#: mod/admin.php:1333
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/install.php:223
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
+#: mod/admin.php:1380
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/install.php:224
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
+#: mod/admin.php:1388
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/install.php:228
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/admin.php:1388
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/install.php:229
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/install.php:230
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/install.php:230
-msgid "For security reasons the password must not be empty"
-msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: mod/install.php:231
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/admin.php:1496 mod/settings.php:45
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/install.php:232 mod/install.php:273
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/admin.php:1505
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: mod/install.php:232 mod/install.php:273
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
+#: mod/admin.php:1506
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/install.php:236 mod/install.php:276
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: mod/admin.php:1507
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/install.php:263
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/admin.php:1508
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/install.php:277
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/admin.php:1509
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/install.php:277
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+#: mod/admin.php:1510
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/install.php:317
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: mod/admin.php:1511
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/install.php:318
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
+#: mod/admin.php:1513
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/install.php:322
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816
+#: mod/contacts.php:994
+msgid "Block"
+msgstr "Sperren"
 
-#: mod/install.php:322
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816
+#: mod/contacts.php:994
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: mod/install.php:327
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/admin.php:1517
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/install.php:336
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: mod/admin.php:1518
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/install.php:337
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/admin.php:1521
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: mod/install.php:339
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/admin.php:1522
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: mod/install.php:350
+#: mod/admin.php:1527
 msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
-
-#: mod/install.php:351
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
-
-#: mod/install.php:353
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+"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/install.php:376
+#: mod/admin.php:1528
 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"
+"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/install.php:377
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+#: mod/admin.php:1538
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: mod/install.php:379
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/admin.php:1539
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: mod/install.php:386
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/admin.php:1539
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/install.php:387
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/admin.php:1540
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/install.php:388
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/admin.php:1583
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: mod/install.php:389
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO oder MySQLi PHP Modul"
+#: mod/admin.php:1587
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: mod/install.php:390
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/admin.php:1598 mod/admin.php:1850
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/install.php:391
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/admin.php:1600 mod/admin.php:1852
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/install.php:392
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/admin.php:1623 mod/admin.php:1899
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/install.php:396 mod/install.php:398
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/admin.php:1631 mod/admin.php:1908
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/install.php:396
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: mod/admin.php:1632 mod/admin.php:1909
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/install.php:404
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/admin.php:1687
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
 
-#: mod/install.php:408
+#: mod/admin.php:1692
+#, php-format
 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."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
 
-#: mod/install.php:412
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/admin.php:1811
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/install.php:416
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
+#: mod/admin.php:1890
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/install.php:420
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
+#: mod/admin.php:1950
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: mod/install.php:424
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/admin.php:1955
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
 
-#: mod/install.php:428
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/admin.php:1956
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/install.php:438
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/admin.php:1957
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/install.php:450
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: mod/admin.php:1981
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
+
+#: mod/admin.php:2013
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/install.php:451
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+#: mod/admin.php:2015
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/install.php:452
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: mod/admin.php:2024
+msgid "Clear"
+msgstr "löschen"
 
-#: mod/install.php:453
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
+#: mod/admin.php:2029
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: mod/install.php:456
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/admin.php:2030
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: mod/install.php:466
+#: mod/admin.php:2030
 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."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/install.php:467
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: mod/admin.php:2031
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/install.php:468
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: mod/admin.php:2034
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
 
-#: mod/install.php:469
+#: mod/admin.php:2035
 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."
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
 
-#: mod/install.php:472
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783
+msgid "Off"
+msgstr "Aus"
 
-#: mod/install.php:488
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783
+msgid "On"
+msgstr "An"
 
-#: mod/install.php:490
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/admin.php:2166
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
 
-#: mod/install.php:509
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+#: mod/admin.php:2174
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
-#: mod/install.php:511
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/contacts.php:137
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
 
-#: mod/install.php:513
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/contacts.php:172 mod/contacts.php:381
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: mod/install.php:520
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
+#: mod/contacts.php:186
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: mod/install.php:545
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/contacts.php:219
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: mod/install.php:546
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: mod/contacts.php:402
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: mod/contacts.php:402
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: mod/item.php:344
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: mod/contacts.php:413
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: mod/item.php:904
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: mod/contacts.php:413
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: mod/item.php:995
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
+#: mod/contacts.php:425
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: mod/item.php:997
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: mod/contacts.php:425
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: mod/item.php:998
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
+#: mod/contacts.php:450
+msgid "Drop contact"
+msgstr "Kontakt löschen"
 
-#: mod/item.php:1002
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: mod/contacts.php:453 mod/contacts.php:812
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/contacts.php:472
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:227
-msgid "Discard"
-msgstr "Verwerfen"
+#: mod/contacts.php:509
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: mod/contacts.php:513
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: mod/contacts.php:518
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: mod/contacts.php:538
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: mod/contacts.php:545
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: mod/contacts.php:545
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: mod/notifications.php:164 mod/notifications.php:234
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: mod/contacts.php:547 mod/contacts.php:975
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/notifications.php:167
+#: mod/contacts.php:551
 #, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
-
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: mod/contacts.php:564
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
-msgid "Approve"
-msgstr "Genehmigen"
+#: mod/contacts.php:567
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: mod/contacts.php:568
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "ja"
+#: mod/contacts.php:568
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "nein"
+#: mod/contacts.php:586
+msgid "Contact"
+msgstr "Kontakt"
 
-#: mod/notifications.php:197 mod/notifications.php:202
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Soll die Verbindung beidseitig sein oder nicht?"
+#: mod/contacts.php:589
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: mod/notifications.php:198 mod/notifications.php:203
+#: mod/contacts.php:590
 #, 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."
+"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/notifications.php:199
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: mod/contacts.php:591
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: mod/notifications.php:204
-#, php-format
-msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: mod/contacts.php:592
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: mod/notifications.php:215
-msgid "Friend"
-msgstr "Kontakt"
+#: mod/contacts.php:598
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: mod/notifications.php:216
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/contacts.php:599
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: mod/notifications.php:216
-msgid "Subscriber"
-msgstr "Abonnent"
+#: mod/contacts.php:600
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: mod/notifications.php:272
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: mod/contacts.php:601
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: mod/notifications.php:313
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: mod/contacts.php:607
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
+
+#: mod/contacts.php:609
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: mod/notifications.php:313
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: mod/contacts.php:611 mod/contacts.php:985
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: mod/notifications.php:319
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: mod/ping.php:270
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: mod/contacts.php:621
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: mod/ping.php:285
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: mod/contacts.php:622
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: mod/ping.php:300
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: mod/contacts.php:623
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: mod/admin.php:96
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: mod/contacts.php:624
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: mod/admin.php:165 mod/admin.php:1054
-msgid "Site"
-msgstr "Seite"
+#: mod/contacts.php:625
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
-msgid "Users"
-msgstr "Nutzer"
+#: mod/contacts.php:625
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
-msgid "Themes"
-msgstr "Themen"
+#: mod/contacts.php:628
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: mod/admin.php:170
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/contacts.php:628
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: mod/admin.php:171 mod/admin.php:512
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
+#: mod/contacts.php:646
+msgid "Actions"
+msgstr "Aktionen"
 
-#: mod/admin.php:172 mod/admin.php:288
-msgid "Server Blocklist"
-msgstr "Server Blockliste"
+#: mod/contacts.php:649
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: mod/admin.php:173 mod/admin.php:478
-msgid "Federation Statistics"
-msgstr "Federation Statistik"
+#: mod/contacts.php:695
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/contacts.php:698
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:188 mod/admin.php:2084
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/contacts.php:706
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:189
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/contacts.php:711
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: mod/admin.php:190
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: mod/contacts.php:714
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: mod/admin.php:197
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/contacts.php:720
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: mod/admin.php:199
-msgid "diagnostics"
-msgstr "Diagnose"
+#: mod/contacts.php:723
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: mod/admin.php:200
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/contacts.php:729
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: mod/admin.php:279
-msgid "The blocked domain"
-msgstr "Die blockierte Domain"
+#: mod/contacts.php:732
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: mod/admin.php:280 mod/admin.php:293
-msgid "The reason why you blocked this domain."
-msgstr "Die Begründung warum du diese Domain blockiert hast."
+#: mod/contacts.php:738
+msgid "Archived"
+msgstr "Archiviert"
 
-#: mod/admin.php:281
-msgid "Delete domain"
-msgstr "Domain löschen"
+#: mod/contacts.php:741
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: mod/admin.php:281
-msgid "Check to delete this entry from the blocklist"
-msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
+#: mod/contacts.php:747
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
-#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
-#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
-msgid "Administration"
-msgstr "Administration"
+#: mod/contacts.php:750
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: mod/admin.php:289
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
+#: mod/contacts.php:807
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: mod/admin.php:290
-msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
+#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: mod/admin.php:291
-msgid "Add new entry to block list"
-msgstr "Neuen Eintrag in die Blockliste"
+#: mod/contacts.php:818 mod/contacts.php:1010
+msgid "Archive"
+msgstr "Archivieren"
 
-#: mod/admin.php:292
-msgid "Server Domain"
-msgstr "Domain des Servers"
+#: mod/contacts.php:818 mod/contacts.php:1010
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: mod/admin.php:292
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
+#: mod/contacts.php:821
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: mod/admin.php:293
-msgid "Block reason"
-msgstr "Begründung der Blockierung"
+#: mod/contacts.php:867
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:294
-msgid "Add Entry"
-msgstr "Eintrag hinzufügen"
+#: mod/contacts.php:877
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:295
-msgid "Save changes to the blocklist"
-msgstr "Änderungen der Blockliste speichern"
+#: mod/contacts.php:884
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: mod/admin.php:296
-msgid "Current Entries in the Blocklist"
-msgstr "Aktuelle Einträge der Blockliste"
+#: mod/contacts.php:918
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: mod/admin.php:299
-msgid "Delete entry from blocklist"
-msgstr "Eintrag von der Blockliste entfernen"
+#: mod/contacts.php:922
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: mod/admin.php:302
-msgid "Delete entry from blocklist?"
-msgstr "Eintrag von der Blockliste entfernen?"
+#: mod/contacts.php:926
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: mod/admin.php:327
-msgid "Server added to blocklist."
-msgstr "Server zur Blockliste hinzugefügt."
+#: mod/contacts.php:996
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: mod/admin.php:343
-msgid "Site blocklist updated."
-msgstr "Blockliste aktualisiert."
+#: mod/contacts.php:1004
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/admin.php:408
-msgid "unknown"
-msgstr "Unbekannt"
+#: mod/contacts.php:1012
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: mod/admin.php:471
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
+#: mod/contacts.php:1020
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: mod/admin.php:472
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: mod/admin.php:484
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:322
 #, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
-
-#: mod/admin.php:514
-msgid "ID"
-msgstr "ID"
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: mod/admin.php:515
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/profile_photo.php:127
+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/admin.php:516
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/profile_photo.php:136
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: mod/admin.php:518
-msgid "Created"
-msgstr "Erstellt"
+#: mod/profile_photo.php:253
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/admin.php:519
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/profile_photo.php:254
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/admin.php:520
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
+#: mod/profile_photo.php:256
+msgid "Upload"
+msgstr "Hochladen"
 
-#: mod/admin.php:545
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
+#: mod/profile_photo.php:259
+msgid "or"
+msgstr "oder"
 
-#: mod/admin.php:550
-msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
-msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
+#: mod/profile_photo.php:259
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: mod/admin.php:554 mod/admin.php:1447
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: mod/profile_photo.php:259
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/admin.php:555 mod/admin.php:1448
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: mod/profile_photo.php:273
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/admin.php:556 mod/admin.php:1449
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: mod/profile_photo.php:274
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: mod/admin.php:557 mod/admin.php:1450
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: mod/profile_photo.php:276
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/admin.php:558
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: mod/profile_photo.php:312
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: mod/admin.php:559
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: mod/profiles.php:42
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/admin.php:581
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/profiles.php:58 mod/profiles.php:94
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/admin.php:587
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: mod/profiles.php:77 mod/profiles.php:122
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/admin.php:589
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: mod/profiles.php:100
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/admin.php:591
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: mod/profiles.php:196
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/admin.php:592
-msgid "Version"
-msgstr "Version"
+#: mod/profiles.php:336
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/admin.php:597
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: mod/profiles.php:340
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/admin.php:622
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
+#: mod/profiles.php:352
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/admin.php:914
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/profiles.php:355
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/admin.php:971
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/profiles.php:359
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/admin.php:972
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: mod/profiles.php:363
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/admin.php:973
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: mod/profiles.php:367
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/admin.php:979
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: mod/profiles.php:371
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:989
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/profiles.php:375
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/admin.php:990
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/profiles.php:379 mod/profiles.php:698
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/admin.php:994
-msgid "One month"
-msgstr "ein Monat"
+#: mod/profiles.php:383
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/admin.php:995
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/profiles.php:390 mod/profiles.php:694
+msgid "Location"
+msgstr "Wohnort"
 
-#: mod/admin.php:996
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/profiles.php:475
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: mod/admin.php:997
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/profiles.php:567
+msgid " and "
+msgstr " und "
 
-#: mod/admin.php:1002
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/profiles.php:576
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: mod/admin.php:1025
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/profiles.php:579
+#, 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:1026
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: mod/admin.php:1027
-msgid "Open"
-msgstr "Offen"
+#: mod/profiles.php:582
+#, 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:1031
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/profiles.php:640
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/admin.php:1032
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/profiles.php:645
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/admin.php:1033
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
+#: mod/profiles.php:670
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/admin.php:1057
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/profiles.php:682
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/admin.php:1058
-msgid "Policies"
-msgstr "Regeln"
+#: mod/profiles.php:683
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/admin.php:1060
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/profiles.php:685
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: mod/admin.php:1061
-msgid "Performance"
-msgstr "Performance"
+#: mod/profiles.php:686
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/admin.php:1062
-msgid "Worker"
-msgstr "Worker"
+#: mod/profiles.php:688
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/admin.php:1063
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: mod/profiles.php:689
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/admin.php:1066
-msgid "Site name"
-msgstr "Seitenname"
+#: mod/profiles.php:690
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/admin.php:1067
-msgid "Host name"
-msgstr "Host Name"
+#: mod/profiles.php:692
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/admin.php:1068
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/profiles.php:693
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/admin.php:1068
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
+#: mod/profiles.php:695
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/admin.php:1069
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/profiles.php:696
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/admin.php:1070
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/profiles.php:697
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:1070
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/profiles.php:700
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/admin.php:1071
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/profiles.php:704
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/admin.php:1071
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
+#: mod/profiles.php:705
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/admin.php:1072
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: mod/profiles.php:707
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/admin.php:1072
-#, php-format
+#: mod/profiles.php:712
+msgid "Profile Name:"
+msgstr "Profilname:"
+
+#: mod/profiles.php:714
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
+"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:1073
-msgid "System language"
-msgstr "Systemsprache"
+#: mod/profiles.php:715
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
+
+#: mod/profiles.php:716
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
+
+#: mod/profiles.php:719
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/admin.php:1074
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: mod/profiles.php:720
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/admin.php:1074
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
+#: mod/profiles.php:721
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/admin.php:1075
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/profiles.php:722
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/admin.php:1075
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/profiles.php:723
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/admin.php:1076
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/profiles.php:727
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/admin.php:1076
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/profiles.php:727
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/admin.php:1077
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/profiles.php:728
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: mod/admin.php:1077
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
+#: mod/profiles.php:730
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
 
-#: mod/admin.php:1078
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/profiles.php:731
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
 
-#: mod/admin.php:1078
+#: mod/profiles.php:731
 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:1079
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+"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:1079
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
+#: mod/profiles.php:732
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: mod/admin.php:1080
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/profiles.php:735
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: mod/admin.php:1080
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
+#: mod/profiles.php:736
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/admin.php:1081
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: mod/profiles.php:736
+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:1081
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
+#: mod/profiles.php:737
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: mod/admin.php:1082
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/profiles.php:737
+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:1082
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
+#: mod/profiles.php:740
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: mod/admin.php:1084
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/profiles.php:741
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: mod/admin.php:1085
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/profiles.php:742
+msgid "Television"
+msgstr "Fernsehen"
 
-#: mod/admin.php:1085
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
+#: mod/profiles.php:743
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/admin.php:1086
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/profiles.php:744
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: mod/admin.php:1086
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: mod/profiles.php:745
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: mod/admin.php:1087
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/profiles.php:746
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: mod/admin.php:1087
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
+#: mod/profiles.php:747
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: mod/admin.php:1088
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/profiles.php:748
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/admin.php:1088
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: mod/profiles.php:789
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/admin.php:1089
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/settings.php:62
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/admin.php:1089
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: mod/settings.php:69 mod/settings.php:891
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: mod/admin.php:1090
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/settings.php:90
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/admin.php:1090
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
+#: mod/settings.php:104
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: mod/admin.php:1091
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/settings.php:159
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: mod/admin.php:1091
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
+#: mod/settings.php:273
+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:1092
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/settings.php:278
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/admin.php:1092
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
+#: mod/settings.php:293
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/admin.php:1093
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: mod/settings.php:363
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/admin.php:1093
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: mod/settings.php:382
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/admin.php:1094
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/settings.php:390
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/admin.php:1094
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
+#: mod/settings.php:401
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/admin.php:1095
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/settings.php:403
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/admin.php:1095
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
+#: mod/settings.php:483
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/admin.php:1096
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/settings.php:485
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/admin.php:1096
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
+#: mod/settings.php:494
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/admin.php:1097
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/settings.php:499
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: mod/admin.php:1097
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "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:505
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/admin.php:1098
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/settings.php:561
+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:1098
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "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:565
+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:1099
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/settings.php:605
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: mod/admin.php:1099
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/admin.php:1100
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/admin.php:1100
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/admin.php:1101
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: mod/admin.php:1101
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
+#: mod/settings.php:688 mod/settings.php:714
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/admin.php:1102
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: mod/settings.php:699
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/admin.php:1102
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
+#: mod/settings.php:742
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/admin.php:1103
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/settings.php:746
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/admin.php:1103
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
+#: mod/settings.php:747
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/admin.php:1104
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/settings.php:748
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/admin.php:1104
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "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:760
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/admin.php:1105
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: mod/settings.php:769
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: mod/admin.php:1105
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
+#: mod/settings.php:791
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/admin.php:1106
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/settings.php:801 mod/settings.php:805
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/admin.php:1106
+#: mod/settings.php:811
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
+
+#: mod/settings.php:813
 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."
+"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:1107
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+#: mod/settings.php:819
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/admin.php:1109
+#: mod/settings.php:821
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
-
-#: mod/admin.php:1110
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+"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:1110
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/settings.php:827
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/admin.php:1111
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/settings.php:835
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
 
-#: mod/admin.php:1111
+#: mod/settings.php:837
 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."
+"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:1112
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: mod/settings.php:840
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
 
-#: mod/admin.php:1112
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
+#: mod/settings.php:849 mod/settings.php:850
+#, 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:1113
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/settings.php:849 mod/settings.php:850
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/admin.php:1114
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/settings.php:849 mod/settings.php:850
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/admin.php:1115
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/settings.php:850
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/admin.php:1115
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
+#: mod/settings.php:884
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/admin.php:1116
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: mod/settings.php:896
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/admin.php:1116
+#: mod/settings.php:897
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+"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:1117
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
+#: mod/settings.php:898
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/admin.php:1117
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+#: mod/settings.php:900
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/admin.php:1118
-msgid "Minimal Memory"
-msgstr "Minimaler Speicher"
+#: mod/settings.php:901
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/admin.php:1118
-msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
+#: mod/settings.php:902
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/admin.php:1119
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
+#: mod/settings.php:902 mod/settings.php:907
+msgid "None"
+msgstr "Keine"
+
+#: mod/settings.php:903
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
+
+#: mod/settings.php:904
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/admin.php:1119
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
+#: mod/settings.php:905
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/admin.php:1120
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
+#: mod/settings.php:906
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/admin.php:1120
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
+#: mod/settings.php:907
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/admin.php:1122
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte überprüfen"
+#: mod/settings.php:907
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/admin.php:1122
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
+#: mod/settings.php:908
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/admin.php:1123
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
+#: mod/settings.php:1004
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: mod/admin.php:1123
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
+#: mod/settings.php:1010 mod/settings.php:1033
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: mod/admin.php:1124
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/settings.php:1011
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: mod/admin.php:1124
+#: mod/settings.php:1012
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+
+#: mod/settings.php:1012
 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'."
+"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:1125
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/settings.php:1013
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/admin.php:1125
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
+#: mod/settings.php:1013
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
 
-#: mod/admin.php:1126
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/settings.php:1014
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/admin.php:1126
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
+#: mod/settings.php:1014 mod/settings.php:1015
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/admin.php:1128
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+#: mod/settings.php:1015
+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:1128
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
+#: mod/settings.php:1016
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/admin.php:1130
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/settings.php:1017
+msgid "Calendar"
+msgstr "Kalender"
 
-#: mod/admin.php:1130
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
+#: mod/settings.php:1018
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
 
-#: mod/admin.php:1131
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/settings.php:1019
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/admin.php:1131
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
+#: mod/settings.php:1020
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/admin.php:1132
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/settings.php:1021
+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:1132
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
+#: mod/settings.php:1022
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/admin.php:1133
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/settings.php:1022
+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:1133
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
+#: mod/settings.php:1024
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/admin.php:1134
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/settings.php:1025
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/admin.php:1134
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
+#: mod/settings.php:1026
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
 
-#: mod/admin.php:1135
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66
+#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72
+#: view/theme/vier/config.php:115
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/admin.php:1135
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
+#: mod/settings.php:1111
+msgid "Account Types"
+msgstr "Kontenarten"
 
-#: mod/admin.php:1136
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/settings.php:1112
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
 
-#: mod/admin.php:1136
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+#: mod/settings.php:1113
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/admin.php:1137
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: mod/settings.php:1120
+msgid "Personal Page"
+msgstr "Persönliche Seite"
 
-#: mod/admin.php:1137
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
+#: mod/settings.php:1121
+msgid "This account is a regular personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/admin.php:1139
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/settings.php:1124
+msgid "Organisation Page"
+msgstr "Organisationsseite"
 
-#: mod/admin.php:1139
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
+#: mod/settings.php:1125
+msgid "This account is a profile for an organisation"
+msgstr "Diese Konto ist ein Profil für eine Organisation"
 
-#: mod/admin.php:1141
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/settings.php:1128
+msgid "News Page"
+msgstr "Nachrichtenseite"
 
-#: mod/admin.php:1141
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
+#: mod/settings.php:1129
+msgid "This account is a news account/reflector"
+msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
 
-#: mod/admin.php:1143
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/settings.php:1132
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
 
-#: mod/admin.php:1143
+#: mod/settings.php:1133
 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."
+"This account is a community forum where people can discuss with each other"
+msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
 
-#: mod/admin.php:1144
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/settings.php:1136
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/admin.php:1144
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
+#: mod/settings.php:1137
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/admin.php:1145
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+#: mod/settings.php:1140
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/admin.php:1145
-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:1141
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: mod/admin.php:1146
-msgid "Enable frontend worker"
-msgstr "Aktiviere den Frontend Worker"
+#: mod/settings.php:1144
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
 
-#: mod/admin.php:1146
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
-msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
+#: mod/settings.php:1145
+msgid "Automatically approve all contact requests"
+msgstr "Bestätige alle Kontaktanfragen automatisch"
 
-#: mod/admin.php:1176
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/settings.php:1148
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/admin.php:1184
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: mod/settings.php:1149
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: mod/admin.php:1187
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
+#: mod/settings.php:1152
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/admin.php:1201
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/settings.php:1153
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: mod/admin.php:1204
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/settings.php:1164
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/admin.php:1207
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
+#: mod/settings.php:1164
+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:1210
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
+#: mod/settings.php:1172
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/admin.php:1230
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/settings.php:1172
+msgid "Your profile may be visible in public."
+msgstr "Dein Profil könnte öffentlich abrufbar sein."
 
-#: mod/admin.php:1231
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: mod/settings.php:1178
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/admin.php:1236
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/settings.php:1185
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/admin.php:1237
+#: mod/settings.php:1189
 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."
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
 
-#: mod/admin.php:1238
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/settings.php:1194
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/admin.php:1239
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/settings.php:1199
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/admin.php:1273
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
+#: mod/settings.php:1204
+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:1276
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
+#: mod/settings.php:1209
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/admin.php:1320
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Benutzer geblockt/freigegeben"
-msgstr[1] "%s Benutzer geblockt/freigegeben"
+#: mod/settings.php:1217
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/admin.php:1327
+#: mod/settings.php:1225
 #, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/admin.php:1374
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: mod/settings.php:1232
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/admin.php:1382
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: mod/settings.php:1232
+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:1382
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: mod/settings.php:1233
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/settings.php:1234
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: mod/settings.php:1235
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/settings.php:1236
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/admin.php:1499
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/settings.php:1237
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/admin.php:1500
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/settings.php:1238
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: mod/admin.php:1501
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/settings.php:1239
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/admin.php:1502
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/settings.php:1270
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/admin.php:1503
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/settings.php:1278
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/admin.php:1504
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/settings.php:1280
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/admin.php:1505
-msgid "Note from the user"
-msgstr "Hinweis vom Nutzer"
+#: mod/settings.php:1281
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/admin.php:1507
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/settings.php:1281 mod/settings.php:1282
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/admin.php:1511
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/settings.php:1282
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/admin.php:1512
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/settings.php:1286
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/admin.php:1515
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/settings.php:1288
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/admin.php:1516
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/settings.php:1289
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/admin.php:1521
+#: mod/settings.php:1290
+msgid "Your Language:"
+msgstr "Deine Sprache:"
+
+#: mod/settings.php:1290
 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?"
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
+
+#: mod/settings.php:1291
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
+
+#: mod/settings.php:1292
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
+
+#: mod/settings.php:1295
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/admin.php:1522
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
+#: mod/settings.php:1297
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/admin.php:1532
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/settings.php:1297 mod/settings.php:1327
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/admin.php:1533
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/settings.php:1298
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/admin.php:1533
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/settings.php:1299
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/admin.php:1534
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/settings.php:1310
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/admin.php:1577
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: mod/settings.php:1311
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/admin.php:1581
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: mod/settings.php:1315
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/admin.php:1592 mod/admin.php:1844
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/settings.php:1327
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/admin.php:1594 mod/admin.php:1846
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/settings.php:1330
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/admin.php:1617 mod/admin.php:1893
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/settings.php:1331
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/admin.php:1625 mod/admin.php:1902
-msgid "Author: "
-msgstr "Autor:"
+#: mod/settings.php:1332
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/admin.php:1626 mod/admin.php:1903
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/settings.php:1333
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/admin.php:1681
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/settings.php:1334
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/admin.php:1686
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
+#: mod/settings.php:1335
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/admin.php:1805
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: mod/settings.php:1336
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/admin.php:1884
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/settings.php:1337
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/admin.php:1944
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/settings.php:1338
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/admin.php:1949
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
+#: mod/settings.php:1339
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/admin.php:1950
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/settings.php:1340
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/admin.php:1951
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/settings.php:1341
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/admin.php:1975
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/settings.php:1342
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/admin.php:2007
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/settings.php:1343
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/admin.php:2009
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/settings.php:1345
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/admin.php:2018
-msgid "Clear"
-msgstr "löschen"
+#: mod/settings.php:1345
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/admin.php:2023
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/settings.php:1347
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/admin.php:2024
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/settings.php:1349
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/admin.php:2024
-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/settings.php:1351
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/admin.php:2025
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/settings.php:1352
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/admin.php:2028
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/settings.php:1355
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: mod/admin.php:2029
+#: mod/settings.php:1356
 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:2160
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %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 "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:2168
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/settings.php:1357
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: object/Item.php:359
+#: object/Item.php:356
 msgid "via"
 msgstr "via"
 
-#: view/theme/duepuntozero/config.php:44
+#: view/theme/duepuntozero/config.php:47
 msgid "greenzero"
 msgstr "greenzero"
 
-#: view/theme/duepuntozero/config.php:45
+#: view/theme/duepuntozero/config.php:48
 msgid "purplezero"
 msgstr "purplezero"
 
-#: view/theme/duepuntozero/config.php:46
+#: view/theme/duepuntozero/config.php:49
 msgid "easterbunny"
 msgstr "easterbunny"
 
-#: view/theme/duepuntozero/config.php:47
+#: view/theme/duepuntozero/config.php:50
 msgid "darkzero"
 msgstr "darkzero"
 
-#: view/theme/duepuntozero/config.php:48
+#: view/theme/duepuntozero/config.php:51
 msgid "comix"
 msgstr "comix"
 
-#: view/theme/duepuntozero/config.php:49
+#: view/theme/duepuntozero/config.php:52
 msgid "slackr"
 msgstr "slackr"
 
-#: view/theme/duepuntozero/config.php:64
+#: view/theme/duepuntozero/config.php:67
 msgid "Variations"
 msgstr "Variationen"
 
-#: view/theme/frio/config.php:47
-msgid "Default"
-msgstr "Standard"
-
-#: view/theme/frio/config.php:59
-msgid "Note: "
-msgstr "Hinweis:"
-
-#: view/theme/frio/config.php:59
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
-
-#: view/theme/frio/config.php:67
-msgid "Select scheme"
-msgstr "Schema auswählen"
-
-#: view/theme/frio/config.php:68
-msgid "Navigation bar background color"
-msgstr "Hintergrundfarbe der Navigationsleiste"
-
-#: view/theme/frio/config.php:69
-msgid "Navigation bar icon color "
-msgstr "Icon Farbe in der Navigationsleiste"
-
-#: view/theme/frio/config.php:70
-msgid "Link color"
-msgstr "Linkfarbe"
-
-#: view/theme/frio/config.php:71
-msgid "Set the background color"
-msgstr "Hintergrundfarbe festlegen"
-
-#: view/theme/frio/config.php:72
-msgid "Content background transparency"
-msgstr "Transparanz des Hintergrunds von Beiträgem"
-
-#: view/theme/frio/config.php:73
-msgid "Set the background image"
-msgstr "Hintergrundbild festlegen"
-
 #: view/theme/frio/php/Image.php:23
 msgid "Repeat the image"
 msgstr "Bild wiederholen"
@@ -8842,127 +8805,167 @@ msgstr "Größe anpassen - Optimale Größe"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
 
-#: view/theme/frio/theme.php:226
+#: view/theme/frio/config.php:50
+msgid "Default"
+msgstr "Standard"
+
+#: view/theme/frio/config.php:62
+msgid "Note: "
+msgstr "Hinweis:"
+
+#: view/theme/frio/config.php:62
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
+
+#: view/theme/frio/config.php:70
+msgid "Select scheme"
+msgstr "Schema auswählen"
+
+#: view/theme/frio/config.php:71
+msgid "Navigation bar background color"
+msgstr "Hintergrundfarbe der Navigationsleiste"
+
+#: view/theme/frio/config.php:72
+msgid "Navigation bar icon color "
+msgstr "Icon Farbe in der Navigationsleiste"
+
+#: view/theme/frio/config.php:73
+msgid "Link color"
+msgstr "Linkfarbe"
+
+#: view/theme/frio/config.php:74
+msgid "Set the background color"
+msgstr "Hintergrundfarbe festlegen"
+
+#: view/theme/frio/config.php:75
+msgid "Content background transparency"
+msgstr "Transparanz des Hintergrunds von Beiträgem"
+
+#: view/theme/frio/config.php:76
+msgid "Set the background image"
+msgstr "Hintergrundbild festlegen"
+
+#: view/theme/frio/theme.php:228
 msgid "Guest"
 msgstr "Gast"
 
-#: view/theme/frio/theme.php:232
+#: view/theme/frio/theme.php:234
 msgid "Visitor"
 msgstr "Besucher"
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Alignment"
 msgstr "Ausrichtung"
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Left"
 msgstr "Links"
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Center"
 msgstr "Mitte"
 
-#: view/theme/quattro/config.php:71
+#: view/theme/quattro/config.php:74
 msgid "Color scheme"
 msgstr "Farbschema"
 
-#: view/theme/quattro/config.php:72
+#: view/theme/quattro/config.php:75
 msgid "Posts font size"
 msgstr "Schriftgröße in Beiträgen"
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:76
 msgid "Textareas font size"
 msgstr "Schriftgröße in Eingabefeldern"
 
-#: view/theme/vier/config.php:69
+#: view/theme/vier/config.php:70
 msgid "Comma separated list of helper forums"
 msgstr "Komma-Separierte Liste der Helfer-Foren"
 
-#: view/theme/vier/config.php:115
+#: view/theme/vier/config.php:116
 msgid "Set style"
 msgstr "Stil auswählen"
 
-#: view/theme/vier/config.php:116
+#: view/theme/vier/config.php:117
 msgid "Community Pages"
 msgstr "Foren"
 
-#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151
 msgid "Community Profiles"
 msgstr "Community-Profile"
 
-#: view/theme/vier/config.php:118
+#: view/theme/vier/config.php:119
 msgid "Help or @NewHere ?"
 msgstr "Hilfe oder @NewHere"
 
-#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392
 msgid "Connect Services"
 msgstr "Verbinde Dienste"
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199
 msgid "Find Friends"
 msgstr "Kontakte finden"
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181
 msgid "Last users"
 msgstr "Letzte Nutzer"
 
-#: view/theme/vier/theme.php:198
+#: view/theme/vier/theme.php:200
 msgid "Local Directory"
 msgstr "Lokales Verzeichnis"
 
-#: view/theme/vier/theme.php:290
+#: view/theme/vier/theme.php:292
 msgid "Quick Start"
 msgstr "Schnell-Start"
 
-#: index.php:433
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
-
-#: boot.php:999
+#: src/App.php:505
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: boot.php:1001
+#: src/App.php:507
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: boot.php:1729
+#: index.php:436
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
+
+#: boot.php:726
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: boot.php:1843
+#: boot.php:838
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: boot.php:1871
+#: boot.php:866
 msgid "Password: "
 msgstr "Passwort: "
 
-#: boot.php:1872
+#: boot.php:867
 msgid "Remember me"
 msgstr "Anmeldedaten merken"
 
-#: boot.php:1875
+#: boot.php:870
 msgid "Or login using OpenID: "
 msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: boot.php:1881
+#: boot.php:876
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: boot.php:1884
+#: boot.php:879
 msgid "Website Terms of Service"
 msgstr "Website Nutzungsbedingungen"
 
-#: boot.php:1885
+#: boot.php:880
 msgid "terms of service"
 msgstr "Nutzungsbedingungen"
 
-#: boot.php:1887
+#: boot.php:882
 msgid "Website Privacy Policy"
 msgstr "Website Datenschutzerklärung"
 
-#: boot.php:1888
+#: boot.php:883
 msgid "privacy policy"
 msgstr "Datenschutzerklärung"
index 31e283643f27ee9ae88da7f98ebc9c769694426b..dfd177703582ef343c5b1ffb47fe62d8a6669d1d 100644 (file)
@@ -5,220 +5,6 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Forums"] = "Foren";
-$a->strings["External link to forum"] = "Externer Link zum Forum";
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
-$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
-$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
-$a->strings["photo"] = "Foto";
-$a->strings["status"] = "Status";
-$a->strings["event"] = "Event";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Status"] = "Status";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Profile"] = "Profil";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Events"] = "Veranstaltungen";
-$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 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"] = "Suche";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Full Text"] = "Volltext";
-$a->strings["Tags"] = "Tags";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$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["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["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["Settings"] = "Einstellungen";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Profiles"] = "Profile";
-$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["Click here to upgrade."] = "Zum Upgraden hier klicken.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
-$a->strings["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["Undecided"] = array(
-       0 => "Unentschieden",
-       1 => "Unentschieden",
-);
-$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["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
-);
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["View Contact"] = "Kontakt anzeigen";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["show"] = "zeigen";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Close"] = "Schließen";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["Location:"] = "Ort:";
-$a->strings["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["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
 $a->strings["Block immediately"] = "Sofort blockieren";
 $a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
@@ -248,48 +34,150 @@ $a->strings["Diaspora Connector"] = "Diaspora";
 $a->strings["GNU Social Connector"] = "GNU social Connector";
 $a->strings["pnut"] = "pnut";
 $a->strings["App.net"] = "App.net";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
-);
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Find"] = "Finde";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["%d contact in common"] = array(
-       0 => "%d gemeinsamer Kontakt",
-       1 => "%d gemeinsame Kontakte",
-);
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
-$a->strings["post/item"] = "Nachricht/Beitrag";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
-$a->strings["Likes"] = "Likes";
-$a->strings["Dislikes"] = "Dislikes";
-$a->strings["Attending"] = array(
-       0 => "Teilnehmend",
-       1 => "Teilnehmend",
-);
-$a->strings["Not attending"] = "Nicht teilnehmend";
-$a->strings["Might attend"] = "Eventuell teilnehmend";
+$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["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Edit groups"] = "Gruppen bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Forums"] = "Foren";
+$a->strings["External link to forum"] = "Externer Link zum Forum";
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
+$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
+$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["Post to Email"] = "An E-Mail senden";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["show"] = "zeigen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Close"] = "Schließen";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Find"] = "Finde";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["%d contact in common"] = array(
+       0 => "%d gemeinsamer Kontakt",
+       1 => "%d gemeinsame Kontakte",
+);
+$a->strings["event"] = "Event";
+$a->strings["status"] = "Status";
+$a->strings["photo"] = "Foto";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
+$a->strings["post/item"] = "Nachricht/Beitrag";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Dislikes";
+$a->strings["Attending"] = array(
+       0 => "Teilnehmend",
+       1 => "Teilnehmend",
+);
+$a->strings["Not attending"] = "Nicht teilnehmend";
+$a->strings["Might attend"] = "Eventuell teilnehmend";
 $a->strings["Select"] = "Auswählen";
 $a->strings["Delete"] = "Löschen";
 $a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
@@ -301,6 +189,13 @@ $a->strings["Please wait"] = "Bitte warten";
 $a->strings["remove"] = "löschen";
 $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
 $a->strings["Follow Thread"] = "Folge der Unterhaltung";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["View Contact"] = "Kontakt anzeigen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
 $a->strings["%s likes this."] = "%s mag das.";
 $a->strings["%s doesn't like this."] = "%s mag das nicht.";
 $a->strings["%s attends."] = "%s nimmt teil.";
@@ -366,6 +261,10 @@ $a->strings["Not Attending"] = array(
        0 => "Nicht teilnehmend ",
        1 => "Nicht teilnehmend",
 );
+$a->strings["Undecided"] = array(
+       0 => "Unentschieden",
+       1 => "Unentschieden",
+);
 $a->strings["Miscellaneous"] = "Verschiedenes";
 $a->strings["Birthday:"] = "Geburtstag:";
 $a->strings["Age: "] = "Alter: ";
@@ -389,66 +288,9 @@ $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
 $a->strings["%s's birthday"] = "%ss Geburtstag";
 $a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["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["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
-$a->strings["a private message"] = "eine private Nachricht";
-$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 auf %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] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
-$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["(no subject)"] = "(kein Betreff)";
+$a->strings["noreply"] = "noreply";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
 $a->strings["all-day"] = "ganztägig";
 $a->strings["Sun"] = "So";
 $a->strings["Mon"] = "Mo";
@@ -496,54 +338,6 @@ $a->strings["link to source"] = "Link zum Originalbeitrag";
 $a->strings["Export"] = "Exportieren";
 $a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
 $a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
-$a->strings["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["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["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
 $a->strings["Blocked domain"] = "Blockierte Daimain";
 $a->strings["Connect URL missing."] = "Connect-URL fehlt";
@@ -557,118 +351,14 @@ $a->strings["Use mailto: in front of address to force email check."] = "Verwende
 $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
 $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
 $a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Edit groups"] = "Gruppen bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["add"] = "hinzufügen";
-$a->strings["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["Atom feed"] = "Atom-Feed";
-$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["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["Full Name:"] = "Kompletter Name:";
-$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["Sexual Preference:"] = "Sexuelle Vorlieben:";
-$a->strings["Hometown:"] = "Heimatort:";
-$a->strings["Tags:"] = "Tags:";
-$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 Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["%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["Contact Photos"] = "Kontaktbilder";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
-$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
-$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
-$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
-$a->strings["Name too short."] = "Der Name ist zu kurz.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
-$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
-$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["default"] = "Standard";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
-$a->strings["Registration at %s"] = "Registrierung als %s";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
-$a->strings[": Database update"] = ": Datenbank Update";
-$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
-$a->strings["%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["Welcome "] = "Willkommen ";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["first"] = "erste";
@@ -683,7 +373,12 @@ $a->strings["%d Contact"] = array(
        1 => "%d Kontakte",
 );
 $a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["Search"] = "Suche";
 $a->strings["Save"] = "Speichern";
+$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
+$a->strings["Full Text"] = "Volltext";
+$a->strings["Tags"] = "Tags";
+$a->strings["Contacts"] = "Kontakte";
 $a->strings["poke"] = "anstupsen";
 $a->strings["poked"] = "stupste";
 $a->strings["ping"] = "anpingen";
@@ -728,879 +423,517 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "Beitrag";
 $a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
-$a->strings["No"] = "Nein";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet.",
-);
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Drop contact"] = "Kontakt löschen";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Contact"] = "Kontakt";
-$a->strings["Submit"] = "Senden";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["Profile URL"] = "Profil URL";
-$a->strings["Actions"] = "Aktionen";
-$a->strings["Contact Settings"] = "Kontakteinstellungen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$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["Update"] = "Aktualisierungen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "Du bist Fan von";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$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["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: %s"] = "Gruppe: %s";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
-);
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["This is you"] = "Das bist Du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["I will attend"] = "Ich werde teilnehmen";
-$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
-$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
-$a->strings["to"] = "zu";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Credits"] = "Credits";
-$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["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["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["Files"] = "Dateien";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["- select -"] = "- auswählen -";
-$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["No profile"] = "Kein Profil";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["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."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$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["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["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
+$a->strings["a private message"] = "eine private Nachricht";
+$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 auf %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] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
+$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["[no subject]"] = "[kein Betreff]";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$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["Status"] = "Status";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Profile"] = "Profil";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Videos"] = "Videos";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Events"] = "Veranstaltungen";
+$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 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 site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$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["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["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["Settings"] = "Einstellungen";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Profiles"] = "Profile";
+$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["view full size"] = "Volle Größe anzeigen";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
 );
-$a->strings["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["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://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
-$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Reset"] = "Zurücksetzen";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["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["Mood"] = "Stimmung";
-$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$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 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["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["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
-$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
-$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
-$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
-$a->strings["Done"] = "Erledigt";
-$a->strings["success"] = "Erfolg";
-$a->strings["failed"] = "Fehlgeschlagen";
-$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
-$a->strings["Not Extended"] = "Nicht erweitert.";
-$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["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"] = "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";
-$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["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$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 My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
-$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
-$a->strings["Error"] = "Fehler";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["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["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["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["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["View"] = "Ansehen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["list"] = "Liste";
-$a->strings["User not found"] = "Nutzer nicht gefunden";
-$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
-$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
-$a->strings["calendar"] = "Kalender";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
-$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s Dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["People Search - %s"] = "Personensuche - %s";
-$a->strings["Forum Search - %s"] = "Forensuche - %s";
-$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
-$a->strings["Event removed"] = "Veranstaltung enfternt";
-$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
-$a->strings["Reason for the block"] = "Begründung für die Blockierung";
-$a->strings["Group created."] = "Gruppe erstellt.";
-$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
-$a->strings["Group not found."] = "Gruppe nicht gefunden.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Delete Group"] = "Gruppe löschen";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["Remove Contact"] = "Kontakt löschen";
-$a->strings["Add Contact"] = "Kontakt hinzufügen";
-$a->strings["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["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
-);
-$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$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["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Nicht rotieren";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Map"] = "Karte";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
-$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Ansichten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Wohnort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
-$a->strings["Profile Actions"] = "Profilaktionen";
-$a->strings["Edit Profile Details"] = "Profil bearbeiten";
-$a->strings["Change Profile Photo"] = "Profilbild ändern";
-$a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
-$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Basic information"] = "Grundinformationen";
-$a->strings["Profile picture"] = "Profilbild";
-$a->strings["Preferences"] = "Vorlieben";
-$a->strings["Status information"] = "Status Informationen";
-$a->strings["Additional information"] = "Zusätzliche Informationen";
-$a->strings["Relation"] = "Beziehung";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["Your Full Name:"] = "Dein kompletter Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Street Address:"] = "Adresse:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Region/State:"] = "Region/Bundesstaat:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
-$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
-$a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
-$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Bücher, Literatur";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
-$a->strings["Love/romance"] = "Liebe/Romantik";
-$a->strings["Work/employment"] = "Arbeit/Anstellung";
-$a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
-$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
-$a->strings["Registration successful."] = "Registrierung erfolgreich.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Note for the admin"] = "Hinweis für den Admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
-$a->strings["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["Account"] = "Nutzerkonto";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Display"] = "Anzeige";
-$a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Connected apps"] = "Verbundene Programme";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["Remove account"] = "Konto löschen";
-$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
-$a->strings["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["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$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";
-$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
-$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Programm hinzufügen";
-$a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleiten";
-$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["Client key starts with"] = "Anwenderschlüssel beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Autorisierung entziehen";
-$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
-$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Features";
-$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
-$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
-$a->strings["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."] = "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.";
-$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen";
-$a->strings["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."] = "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,.";
-$a->strings["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus Kontakte";
-$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social Account";
-$a->strings["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."] = "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.";
-$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren";
-$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
-$a->strings["enabled"] = "eingeschaltet";
-$a->strings["disabled"] = "ausgeschaltet";
-$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
-$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
-$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an.";
-$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
-$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
-$a->strings["IMAP port:"] = "IMAP-Port:";
-$a->strings["Security:"] = "Sicherheit:";
-$a->strings["None"] = "Keine";
-$a->strings["Email login name:"] = "E-Mail-Login-Name:";
-$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["Move to folder"] = "In einen Ordner verschieben";
-$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
-$a->strings["Display Settings"] = "Anzeige-Einstellungen";
-$a->strings["Display Theme:"] = "Theme:";
-$a->strings["Mobile Theme:"] = "Mobiles Theme";
-$a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken";
-$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "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.";
-$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten.";
-$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
-$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
-$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
-$a->strings["Calendar"] = "Kalender";
-$a->strings["Beginning of week:"] = "Wochenbeginn:";
-$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
-$a->strings["Infinite scroll"] = "Endloses Scrollen";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
-$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus";
-$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden.";
-$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen";
-$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen";
-$a->strings["Content Settings"] = "Einstellungen zum Inhalt";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Account Types"] = "Kontenarten";
-$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite";
-$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums";
-$a->strings["Personal Page"] = "Persönliche Seite";
-$a->strings["This account is a regular personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
-$a->strings["Organisation Page"] = "Organisationsseite";
-$a->strings["This account is a profile for an organisation"] = "Diese Konto ist ein Profil für eine Organisation";
-$a->strings["News Page"] = "Nachrichtenseite";
-$a->strings["This account is a news account/reflector"] = "Dieses Konto ist ein News-Konto bzw. -Spiegel";
-$a->strings["Community Forum"] = "Gemeinschaftsforum";
-$a->strings["This account is a community forum where people can discuss with each other"] = "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können";
-$a->strings["Normal Account Page"] = "Normales Konto";
-$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
-$a->strings["Soapbox Page"] = "Marktschreier-Konto";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
-$a->strings["Public Forum"] = "Öffentliches Forum";
-$a->strings["Automatically approve all contact requests"] = "Bestätige alle Kontaktanfragen automatisch";
-$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
-$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
-$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
-$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
-$a->strings["Your profile may be visible in public."] = "Dein Profil könnte öffentlich abrufbar sein.";
-$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich";
-$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?";
-$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?";
-$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
-$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'.";
-$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
-$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
-$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
-$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
-$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
-$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
-$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["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["Email Address:"] = "E-Mail-Adresse:";
-$a->strings["Your Timezone:"] = "Deine Zeitzone:";
-$a->strings["Your Language:"] = "Deine Sprache:";
-$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfragen/Tag:";
-$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["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";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
-$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
-$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
-$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst";
-$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst";
-$a->strings["making an <em>interesting</em> profile change"] = "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst";
-$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
-$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst";
-$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde";
-$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
-$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
-$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
-$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
-$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten";
-$a->strings["Show desktop popup on new notifications"] = "Desktop Benachrichtigungen einschalten";
-$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
-$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
-$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
-$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
-$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["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["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["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
+$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
+$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
+$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
+$a->strings["Name too short."] = "Der Name ist zu kurz.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
+$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
+$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
+$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["default"] = "Standard";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["Friends"] = "Kontakte";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
+$a->strings["Registration at %s"] = "Registrierung als %s";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
+$a->strings[": Database update"] = ": Datenbank Update";
+$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Atom feed"] = "Atom-Feed";
+$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["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["Full Name:"] = "Kompletter Name:";
+$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["Sexual Preference:"] = "Sexuelle Vorlieben:";
+$a->strings["Hometown:"] = "Heimatort:";
+$a->strings["Tags:"] = "Tags:";
+$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 Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Archives"] = "Archiv";
+$a->strings["%s is now following %s."] = "%s folgt nun %s";
+$a->strings["following"] = "folgen";
+$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
+$a->strings["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["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
+$a->strings["No"] = "Nein";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["View"] = "Ansehen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["list"] = "Liste";
+$a->strings["User not found"] = "Nutzer nicht gefunden";
+$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
+$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
+$a->strings["calendar"] = "Kalender";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Common Friends"] = "Gemeinsame Kontakte";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: %s"] = "Gruppe: %s";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["%d comment"] = array(
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
+);
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["This is you"] = "Das bist Du";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Submit"] = "Senden";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["I will attend"] = "Ich werde teilnehmen";
+$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
+$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
+$a->strings["to"] = "zu";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Credits"] = "Credits";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Name"] = "Name";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Results for:"] = "Ergebnisse für:";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["People Search - %s"] = "Personensuche - %s";
+$a->strings["Forum Search - %s"] = "Forensuche - %s";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
+$a->strings["Event removed"] = "Veranstaltung enfternt";
+$a->strings["Files"] = "Dateien";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s Dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Profile URL"] = "Profil URL";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
+$a->strings["Reason for the block"] = "Begründung für die Blockierung";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["Group created."] = "Gruppe erstellt.";
+$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["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["No profile"] = "Kein Profil";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
 $a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
 $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
 $a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
@@ -1674,6 +1007,344 @@ $a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
 $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
 $a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
 $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$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."] = array(
+       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["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://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
+$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
+$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und Du";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Mood"] = "Stimmung";
+$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
+$a->strings["Results for: %s"] = "Ergebnisse für: %s";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["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 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["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["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Ignore"] = "Ignorieren";
+$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["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["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
+$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
+$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
+$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
+$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
+$a->strings["Done"] = "Erledigt";
+$a->strings["success"] = "Erfolg";
+$a->strings["failed"] = "Fehlgeschlagen";
+$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
+$a->strings["Not Extended"] = "Nicht erweitert.";
+$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["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Nicht rotieren";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Map"] = "Karte";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["{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["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
+$a->strings["Registration successful."] = "Registrierung erfolgreich.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Note for the admin"] = "Hinweis für den Admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
+$a->strings["Registration"] = "Registrierung";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
+$a->strings["Error"] = "Fehler";
+$a->strings["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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Tag removed"] = "Tag entfernt";
+$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
+$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
+$a->strings["Delete Video"] = "Video Löschen";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["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["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["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/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
 $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
 $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
 $a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
@@ -1681,39 +1352,21 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
 $a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?";
-$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
-$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
-$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten.";
-$a->strings["Friend"] = "Kontakt";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Subscriber"] = "Abonnent";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$a->strings["Show unread"] = "Ungelesene anzeigen";
-$a->strings["Show all"] = "Alle anzeigen";
-$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["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["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["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Nutzer";
+$a->strings["Plugins"] = "Plugins";
 $a->strings["Themes"] = "Themen";
+$a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["DB updates"] = "DB Updates";
 $a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
 $a->strings["Server Blocklist"] = "Server Blockliste";
@@ -1754,7 +1407,7 @@ $a->strings["Created"] = "Erstellt";
 $a->strings["Last Tried"] = "Zuletzt versucht";
 $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden.";
 $a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen.";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist.";
+$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen.";
 $a->strings["Normal Account"] = "Normales Konto";
 $a->strings["Soapbox Account"] = "Marktschreier-Konto";
 $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
@@ -1769,10 +1422,13 @@ $a->strings["Version"] = "Version";
 $a->strings["Active plugins"] = "Aktive Plugins";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
 $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
 $a->strings["No community page"] = "Keine Gemeinschaftsseite";
 $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
 $a->strings["Global community page"] = "Globale Gemeinschaftsseite";
+$a->strings["Never"] = "Niemals";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
+$a->strings["Disabled"] = "Deaktiviert";
 $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
 $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
 $a->strings["One month"] = "ein Monat";
@@ -1786,6 +1442,7 @@ $a->strings["Open"] = "Offen";
 $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
 $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["Save Settings"] = "Einstellungen speichern";
 $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
@@ -1958,6 +1615,7 @@ $a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
 $a->strings["Register date"] = "Anmeldedatum";
 $a->strings["Last login"] = "Letzte Anmeldung";
 $a->strings["Last item"] = "Letzter Beitrag";
+$a->strings["Account"] = "Nutzerkonto";
 $a->strings["Add User"] = "Nutzer hinzufügen";
 $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
@@ -1966,6 +1624,8 @@ $a->strings["Request date"] = "Anfragedatum";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
 $a->strings["Note from the user"] = "Hinweis vom Nutzer";
 $a->strings["Deny"] = "Verwehren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
 $a->strings["Site admin"] = "Seitenadministrator";
 $a->strings["Account expired"] = "Account ist abgelaufen";
 $a->strings["New User"] = "Neuer Nutzer";
@@ -2001,8 +1661,348 @@ $a->strings["Must be writable by web server. Relative to your Friendica top-leve
 $a->strings["Log level"] = "Protokoll-Level";
 $a->strings["PHP logging"] = "PHP Protokollieren";
 $a->strings["To enable logging of PHP errors and warnings you can add the following to the .htconfig.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie.";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
 $a->strings["Lock feature %s"] = "Feature festlegen: %s";
 $a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet.",
+);
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Drop contact"] = "Kontakt löschen";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Contact"] = "Kontakt";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Actions"] = "Aktionen";
+$a->strings["Contact Settings"] = "Kontakteinstellungen";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Update"] = "Aktualisierungen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Batch Actions"] = "Stapelverarbeitung";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "Du bist Fan von";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["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["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$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";
+$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["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Ansichten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Wohnort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings[" and "] = " und ";
+$a->strings["public profile"] = "öffentliches Profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
+$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
+$a->strings["Profile Actions"] = "Profilaktionen";
+$a->strings["Edit Profile Details"] = "Profil bearbeiten";
+$a->strings["Change Profile Photo"] = "Profilbild ändern";
+$a->strings["View this profile"] = "Dieses Profil anzeigen";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
+$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Basic information"] = "Grundinformationen";
+$a->strings["Profile picture"] = "Profilbild";
+$a->strings["Preferences"] = "Vorlieben";
+$a->strings["Status information"] = "Status Informationen";
+$a->strings["Additional information"] = "Zusätzliche Informationen";
+$a->strings["Relation"] = "Beziehung";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Your Full Name:"] = "Dein kompletter Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Street Address:"] = "Adresse:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
+$a->strings["Homepage URL:"] = "Adresse der Homepage:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
+$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Bücher, Literatur";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
+$a->strings["Love/romance"] = "Liebe/Romantik";
+$a->strings["Work/employment"] = "Arbeit/Anstellung";
+$a->strings["School/education"] = "Schule/Ausbildung";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
+$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Remove account"] = "Konto löschen";
+$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$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["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
+$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";
+$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
+$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
+$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["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["Client key starts with"] = "Anwenderschlüssel beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Autorisierung entziehen";
+$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
+$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
+$a->strings["Additional Features"] = "Zusätzliche Features";
+$a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
+$a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
+$a->strings["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."] = "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.";
+$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen";
+$a->strings["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."] = "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,.";
+$a->strings["Default group for OStatus contacts"] = "Voreingestellte Gruppe für OStatus Kontakte";
+$a->strings["Your legacy GNU Social account"] = "Dein alter GNU Social Account";
+$a->strings["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."] = "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.";
+$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren";
+$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
+$a->strings["enabled"] = "eingeschaltet";
+$a->strings["disabled"] = "ausgeschaltet";
+$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)";
+$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
+$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an.";
+$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
+$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
+$a->strings["IMAP port:"] = "IMAP-Port:";
+$a->strings["Security:"] = "Sicherheit:";
+$a->strings["None"] = "Keine";
+$a->strings["Email login name:"] = "E-Mail-Login-Name:";
+$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["Move to folder"] = "In einen Ordner verschieben";
+$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Theme:";
+$a->strings["Mobile Theme:"] = "Mobiles Theme";
+$a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "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.";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten.";
+$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
+$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
+$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
+$a->strings["Calendar"] = "Kalender";
+$a->strings["Beginning of week:"] = "Wochenbeginn:";
+$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
+$a->strings["Infinite scroll"] = "Endloses Scrollen";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
+$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus";
+$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden.";
+$a->strings["General Theme Settings"] = "Allgemeine Themeneinstellungen";
+$a->strings["Custom Theme Settings"] = "Benutzerdefinierte Theme Einstellungen";
+$a->strings["Content Settings"] = "Einstellungen zum Inhalt";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Account Types"] = "Kontenarten";
+$a->strings["Personal Page Subtypes"] = "Unterarten der persönlichen Seite";
+$a->strings["Community Forum Subtypes"] = "Unterarten des Gemeinschaftsforums";
+$a->strings["Personal Page"] = "Persönliche Seite";
+$a->strings["This account is a regular personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
+$a->strings["Organisation Page"] = "Organisationsseite";
+$a->strings["This account is a profile for an organisation"] = "Diese Konto ist ein Profil für eine Organisation";
+$a->strings["News Page"] = "Nachrichtenseite";
+$a->strings["This account is a news account/reflector"] = "Dieses Konto ist ein News-Konto bzw. -Spiegel";
+$a->strings["Community Forum"] = "Gemeinschaftsforum";
+$a->strings["This account is a community forum where people can discuss with each other"] = "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können";
+$a->strings["Normal Account Page"] = "Normales Konto";
+$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
+$a->strings["Soapbox Page"] = "Marktschreier-Konto";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
+$a->strings["Public Forum"] = "Öffentliches Forum";
+$a->strings["Automatically approve all contact requests"] = "Bestätige alle Kontaktanfragen automatisch";
+$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
+$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
+$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
+$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
+$a->strings["Your profile may be visible in public."] = "Dein Profil könnte öffentlich abrufbar sein.";
+$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich";
+$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?";
+$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?";
+$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
+$a->strings["Your Identity Address is <strong>'%s'</strong> or '%s'."] = "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'.";
+$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
+$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
+$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
+$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
+$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
+$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
+$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["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["Email Address:"] = "E-Mail-Adresse:";
+$a->strings["Your Timezone:"] = "Deine Zeitzone:";
+$a->strings["Your Language:"] = "Deine Sprache:";
+$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfragen/Tag:";
+$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["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";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
+$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
+$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
+$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst";
+$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst";
+$a->strings["making an <em>interesting</em> profile change"] = "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst";
+$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
+$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst";
+$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde";
+$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
+$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
+$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
+$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
+$a->strings["Activate desktop notifications"] = "Desktop Benachrichtigungen einschalten";
+$a->strings["Show desktop popup on new notifications"] = "Desktop Benachrichtigungen einschalten";
+$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
+$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
+$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["via"] = "via";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2011,6 +2011,14 @@ $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";
@@ -2021,14 +2029,6 @@ $a->strings["Link color"] = "Linkfarbe";
 $a->strings["Set the background color"] = "Hintergrundfarbe festlegen";
 $a->strings["Content background transparency"] = "Transparanz des Hintergrunds von Beiträgem";
 $a->strings["Set the background image"] = "Hintergrundbild festlegen";
-$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["Guest"] = "Gast";
 $a->strings["Visitor"] = "Besucher";
 $a->strings["Alignment"] = "Ausrichtung";
@@ -2047,9 +2047,9 @@ $a->strings["Find Friends"] = "Kontakte finden";
 $a->strings["Last users"] = "Letzte Nutzer";
 $a->strings["Local Directory"] = "Lokales Verzeichnis";
 $a->strings["Quick Start"] = "Schnell-Start";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
 $a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
 $a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
 $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
 $a->strings["Create a New Account"] = "Neues Konto erstellen";
 $a->strings["Password: "] = "Passwort: ";
index 06dfc9a00504f7529991bb1425e962e347441873..e32209b0b56cfe65ba06a79c18b81bfbdcf80cab 100644 (file)
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-03 07:08+0200\n"
-"PO-Revision-Date: 2017-05-23 11:00+0000\n"
+"POT-Creation-Date: 2017-05-28 11:09+0200\n"
+"PO-Revision-Date: 2017-05-29 07:16+0000\n"
 "Last-Translator: Andy H3 <andy@hubup.pro>\n"
 "Language-Team: English (United Kingdom) (http://www.transifex.com/Friendica/friendica/language/en_GB/)\n"
 "MIME-Version: 1.0\n"
@@ -18,1837 +18,2003 @@ msgstr ""
 "Language: en_GB\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
-#: view/theme/vier/theme.php:254
-msgid "Forums"
-msgstr "Forums"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unknown | Not categorised"
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:256
-msgid "External link to forum"
-msgstr "External link to forum"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Block immediately"
 
-#: include/ForumManager.php:119 include/contact_widgets.php:269
-#: include/items.php:2450 mod/content.php:624 object/Item.php:420
-#: view/theme/vier/theme.php:259 boot.php:1000
-msgid "show more"
-msgstr "Show more..."
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Shady, spammer, self-marketer"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "System"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Known to me, but no opinion"
 
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517
-#: view/theme/frio/theme.php:253
-msgid "Network"
-msgstr "Network"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probably harmless"
 
-#: include/NotificationsManager.php:167 mod/network.php:832
-#: mod/profiles.php:696
-msgid "Personal"
-msgstr "Personal"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Reputable, has my trust"
 
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161
-msgid "Home"
-msgstr "Home"
+#: include/contact_selectors.php:56 mod/admin.php:986
+msgid "Frequently"
+msgstr "Frequently"
 
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
-msgstr "Introductions"
+#: include/contact_selectors.php:57 mod/admin.php:987
+msgid "Hourly"
+msgstr "Hourly"
 
-#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s commented on %s's post"
+#: include/contact_selectors.php:58 mod/admin.php:988
+msgid "Twice daily"
+msgstr "Twice daily"
 
-#: include/NotificationsManager.php:250
-#, php-format
-msgid "%s created a new post"
-msgstr "%s posted something new"
+#: include/contact_selectors.php:59 mod/admin.php:989
+msgid "Daily"
+msgstr "Daily"
 
-#: include/NotificationsManager.php:265
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s liked %s's post"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Weekly"
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s disliked %s's post"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monthly"
 
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s is going to %s's event"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:886
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/NotificationsManager.php:304
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s is not going to %s's event"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s may go to %s's event"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/NotificationsManager.php:334
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s is now friends with %s"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1496 mod/admin.php:1509 mod/admin.php:1522 mod/admin.php:1540
+msgid "Email"
+msgstr "Email"
 
-#: include/NotificationsManager.php:770
-msgid "Friend Suggestion"
-msgstr "Friend suggestion"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:888
+#: mod/settings.php:849
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/NotificationsManager.php:803
-msgid "Friend/Connect Request"
-msgstr "Friend/Contact request"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/NotificationsManager.php:803
-msgid "New Follower"
-msgstr "New follower"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
-#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
-#: mod/item.php:467
-msgid "Wall Photos"
-msgstr "Wall photos"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/delivery.php:427
-msgid "(no subject)"
-msgstr "(no subject)"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: include/delivery.php:439 include/enotify.php:43
-msgid "noreply"
-msgstr "noreply"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s likes %2$s's %3$s"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/like.php:31 include/like.php:36 include/conversation.php:156
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s doesn't like %2$s's %3$s"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "Pump.io"
 
-#: include/like.php:41
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s is going to %2$s's %3$s"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/like.php:46
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s is not going to %2$s's %3$s"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora connector"
 
-#: include/like.php:51
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s may go to %2$s's %3$s"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr "GNU Social connector"
 
-#: include/like.php:178 include/conversation.php:141
-#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "photo"
-msgstr "photo"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "Pnut"
 
-#: include/like.php:178 include/conversation.php:136
-#: include/conversation.php:146 include/conversation.php:288
-#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "status"
-msgstr "status"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/like.php:180 include/conversation.php:133
-#: include/conversation.php:285 include/text.php:1870
-msgid "event"
-msgstr "event"
+#: include/features.php:65
+msgid "General Features"
+msgstr "General"
 
-#: include/message.php:15 include/message.php:169
-msgid "[no subject]"
-msgstr "[no subject]"
+#: include/features.php:67
+msgid "Multiple Profiles"
+msgstr "Multiple profiles"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Nothing new here"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr "Ability to create multiple profiles"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Clear notifications"
+#: include/features.php:68
+msgid "Photo Location"
+msgstr "Photo location"
 
-#: include/nav.php:40 include/text.php:1083
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
-msgid "Logout"
-msgstr "Logout"
+#: include/features.php:69
+msgid "Export Public Calendar"
+msgstr "Export public calendar"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
-msgstr "End this session"
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
+msgstr "Ability for visitors to download the public calendar"
 
-#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645
-#: mod/contacts.php:841 view/theme/frio/theme.php:246
-msgid "Status"
-msgstr "Status"
+#: include/features.php:74
+msgid "Post Composition Features"
+msgstr "Post composition"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-msgid "Your posts and conversations"
-msgstr "My posts and conversations"
+#: include/features.php:75
+msgid "Post Preview"
+msgstr "Post preview"
 
-#: include/nav.php:82 include/identity.php:622 include/identity.php:744
-#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849
-#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
-msgid "Profile"
-msgstr "Profile"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Allow previewing posts and comments before publishing them"
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-msgid "Your profile page"
-msgstr "My profile page"
+#: include/features.php:76
+msgid "Auto-mention Forums"
+msgstr "Auto-mention forums"
 
-#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31
-#: view/theme/frio/theme.php:248
-msgid "Photos"
-msgstr "Photos"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window."
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-msgid "Your photos"
-msgstr "My photos"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
+msgstr "Network sidebars"
 
-#: include/nav.php:84 include/identity.php:793 include/identity.php:796
-#: view/theme/frio/theme.php:249
-msgid "Videos"
-msgstr "Videos"
+#: include/features.php:82
+msgid "Search by Date"
+msgstr "Search by date"
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
-msgstr "My videos"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
+msgstr "Ability to select posts by date ranges"
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:805
-#: include/identity.php:816 mod/cal.php:270 mod/events.php:374
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-msgid "Events"
-msgstr "Events"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
+msgstr "List forums"
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-msgid "Your events"
-msgstr "My events"
-
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Personal notes"
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Enable widget to display the forums your are connected with"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "My personal notes"
+#: include/features.php:84
+msgid "Group Filter"
+msgstr "Group filter"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
-msgid "Login"
-msgstr "Login"
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Enable widget to display network posts only from selected group"
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Sign in"
+#: include/features.php:85
+msgid "Network Filter"
+msgstr "Network filter"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Home page"
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Enable widget to display network posts only from selected network"
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1844
-msgid "Register"
-msgstr "Register"
+#: include/features.php:86 mod/network.php:209 mod/search.php:37
+msgid "Saved Searches"
+msgstr "Saved searches"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Create an account"
+#: include/features.php:86
+msgid "Save search terms for re-use"
+msgstr "Save search terms for re-use"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297
-msgid "Help"
-msgstr "Help"
+#: include/features.php:91
+msgid "Network Tabs"
+msgstr "Network tabs"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Help and documentation"
+#: include/features.php:92
+msgid "Network Personal Tab"
+msgstr "Network personal tab"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Apps"
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Enable tab to display only network posts that you've interacted with"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Addon applications, utilities, games"
+#: include/features.php:93
+msgid "Network New Tab"
+msgstr "Network new tab"
 
-#: include/nav.php:123 include/text.php:1080 mod/search.php:149
-msgid "Search"
-msgstr "Search"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Enable tab to display only new network posts (last 12 hours)"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Search site content"
+#: include/features.php:94
+msgid "Network Shared Links Tab"
+msgstr "Network shared links tab"
 
-#: include/nav.php:126 include/text.php:1088
-msgid "Full Text"
-msgstr "Full text"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Enable tab to display only network posts with links in them"
 
-#: include/nav.php:127 include/text.php:1089
-msgid "Tags"
-msgstr "Tags"
+#: include/features.php:99
+msgid "Post/Comment Tools"
+msgstr "Post/Comment tools"
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:838
-#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
-#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
-msgid "Contacts"
-msgstr "Contacts"
+#: include/features.php:100
+msgid "Multiple Deletion"
+msgstr "Multiple deletion"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:32
-msgid "Community"
-msgstr "Community"
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Select and delete multiple posts/comments at once"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Public conversations on this site"
+#: include/features.php:101
+msgid "Edit Sent Posts"
+msgstr "Edit sent posts"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Conversations on the network"
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
+msgstr "Ability to editing posts and comments after sending"
 
-#: include/nav.php:149 include/identity.php:808 include/identity.php:819
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
-msgstr "Events and calendar"
+#: include/features.php:102
+msgid "Tagging"
+msgstr "Tagging"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Directory"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
+msgstr "Ability to tag existing posts"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "People directory"
+#: include/features.php:103
+msgid "Post Categories"
+msgstr "Post categories"
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Information"
+#: include/features.php:103
+msgid "Add categories to your posts"
+msgstr "Add categories to your posts"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Information about this Friendica instance"
+#: include/features.php:104 include/contact_widgets.php:162
+msgid "Saved Folders"
+msgstr "Saved Folders"
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
-msgstr "My friends' conversations"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
+msgstr "Ability to file posts under folders"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Network reset"
+#: include/features.php:105
+msgid "Dislike Posts"
+msgstr "Dislike posts"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Load network page without filters"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
+msgstr "Ability to dislike posts/comments"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Friend requests"
+#: include/features.php:106
+msgid "Star Posts"
+msgstr "Star posts"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Notifications"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Ability to highlight posts with a star"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "See all notifications"
+#: include/features.php:107
+msgid "Mute Post Notifications"
+msgstr "Mute post notifications"
 
-#: include/nav.php:171 mod/settings.php:906
-msgid "Mark as seen"
-msgstr "Mark as seen"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
+msgstr "Ability to mute notifications for a thread"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Mark all system notifications seen"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
+msgstr "Advanced profiles"
 
-#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
-msgid "Messages"
-msgstr "Messages"
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Show visitors of public community forums at the advanced profile page"
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
-msgstr "Private messages"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Inbox"
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
+msgstr "Default privacy group for new contacts"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Outbox"
+#: include/group.php:243
+msgid "Everybody"
+msgstr "Everybody"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "New Message"
+#: include/group.php:266
+msgid "edit"
+msgstr "edit"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Manage"
+#: include/group.php:287 mod/newmember.php:39
+msgid "Groups"
+msgstr "Groups"
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Manage other pages"
+#: include/group.php:289
+msgid "Edit groups"
+msgstr "Edit groups"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegations"
+#: include/group.php:291
+msgid "Edit group"
+msgstr "Edit group"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegate page management"
+#: include/group.php:292
+msgid "Create a new group"
+msgstr "Create new group"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
-msgid "Settings"
-msgstr "Settings"
+#: include/group.php:293 mod/group.php:100 mod/group.php:197
+msgid "Group Name: "
+msgstr "Group name: "
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
-msgstr "Account settings"
+#: include/group.php:295
+msgid "Contacts not in any group"
+msgstr "Contacts not in any group"
 
-#: include/nav.php:189 include/identity.php:290
-msgid "Profiles"
-msgstr "Profiles"
+#: include/group.php:297 mod/network.php:210
+msgid "add"
+msgstr "add"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Manage/Edit profiles"
+#: include/ForumManager.php:116 include/text.php:1094 include/nav.php:133
+#: view/theme/vier/theme.php:256
+msgid "Forums"
+msgstr "Forums"
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
-msgstr "Manage/Edit friends and contacts"
+#: include/ForumManager.php:118 view/theme/vier/theme.php:258
+msgid "External link to forum"
+msgstr "External link to forum"
 
-#: include/nav.php:197 mod/admin.php:196
-msgid "Admin"
-msgstr "Admin"
+#: include/ForumManager.php:121 include/contact_widgets.php:271
+#: include/items.php:2432 mod/content.php:625 object/Item.php:417
+#: view/theme/vier/theme.php:261 src/App.php:506
+msgid "show more"
+msgstr "Show more..."
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Site setup and configuration"
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "System"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigation"
+#: include/NotificationsManager.php:160 include/nav.php:160 mod/admin.php:518
+#: view/theme/frio/theme.php:255
+msgid "Network"
+msgstr "Network"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Site map"
+#: include/NotificationsManager.php:167 mod/network.php:835
+#: mod/profiles.php:699
+msgid "Personal"
+msgstr "Personal"
 
-#: include/plugin.php:530 include/plugin.php:532
-msgid "Click here to upgrade."
-msgstr "Click here to upgrade."
+#: include/NotificationsManager.php:174 include/nav.php:107
+#: include/nav.php:163
+msgid "Home"
+msgstr "Home"
 
-#: include/plugin.php:538
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "This action exceeds the limits set by your subscription plan."
+#: include/NotificationsManager.php:181 include/nav.php:168
+msgid "Introductions"
+msgstr "Introductions"
 
-#: include/plugin.php:543
-msgid "This action is not available under your subscription plan."
-msgstr "This action is not available under your subscription plan."
+#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s commented on %s's post"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Male"
+#: include/NotificationsManager.php:250
+#, php-format
+msgid "%s created a new post"
+msgstr "%s posted something new"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Female"
+#: include/NotificationsManager.php:265
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s liked %s's post"
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Currently Male"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s disliked %s's post"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Currently Female"
+#: include/NotificationsManager.php:291
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s is going to %s's event"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Mostly Male"
+#: include/NotificationsManager.php:304
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s is not going to %s's event"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Mostly Female"
+#: include/NotificationsManager.php:317
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s may go to %s's event"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: include/NotificationsManager.php:334
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s is now friends with %s"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: include/NotificationsManager.php:770
+msgid "Friend Suggestion"
+msgstr "Friend suggestion"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexual"
+#: include/NotificationsManager.php:803
+msgid "Friend/Connect Request"
+msgstr "Friend/Contact request"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: include/NotificationsManager.php:803
+msgid "New Follower"
+msgstr "New follower"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: include/acl_selectors.php:355
+msgid "Post to Email"
+msgstr "Post to email"
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-specific"
+#: include/acl_selectors.php:360
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Connectors are disabled since \"%s\" is enabled."
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Other"
+#: include/acl_selectors.php:361 mod/settings.php:1189
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Hide profile details from unknown viewers?"
 
-#: include/profile_selectors.php:6 include/conversation.php:1547
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] "Undecided"
-msgstr[1] "Undecided"
+#: include/acl_selectors.php:367
+msgid "Visible to everybody"
+msgstr "Visible to everybody"
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Males"
+#: include/acl_selectors.php:368 view/theme/vier/config.php:109
+msgid "show"
+msgstr "show"
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Females"
+#: include/acl_selectors.php:369 view/theme/vier/config.php:109
+msgid "don't show"
+msgstr "don't show"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: include/acl_selectors.php:375 mod/editpost.php:125
+msgid "CC: email addresses"
+msgstr "CC: email addresses"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbian"
+#: include/acl_selectors.php:376 mod/editpost.php:132
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Example: bob@example.com, mary@example.com"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "No Preference"
+#: include/acl_selectors.php:378 mod/events.php:511 mod/photos.php:1198
+#: mod/photos.php:1595
+msgid "Permissions"
+msgstr "Permissions"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexual"
+#: include/acl_selectors.php:379
+msgid "Close"
+msgstr "Close"
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Auto-sexual"
+#: include/auth.php:52
+msgid "Logged out."
+msgstr "Logged out."
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: include/auth.php:123 include/auth.php:185 mod/openid.php:110
+msgid "Login failed."
+msgstr "Login failed."
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Virgin"
+#: include/auth.php:139 include/user.php:75
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: include/auth.php:139 include/user.php:75
+msgid "The error message was:"
+msgstr "The error message was:"
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: include/bb2diaspora.php:233 include/event.php:19 mod/localtime.php:13
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: include/bb2diaspora.php:239 include/event.php:36 include/event.php:56
+#: include/event.php:459
+msgid "Starts:"
+msgstr "Starts:"
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Asexual"
+#: include/bb2diaspora.php:247 include/event.php:39 include/event.php:62
+#: include/event.php:460
+msgid "Finishes:"
+msgstr "Finishes:"
 
-#: include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: include/bb2diaspora.php:256 include/event.php:43 include/event.php:69
+#: include/event.php:461 include/identity.php:342 mod/directory.php:135
+#: mod/events.php:496 mod/notifications.php:246 mod/contacts.php:639
+msgid "Location:"
+msgstr "Location:"
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Lonely"
+#: include/contact_widgets.php:8
+msgid "Add New Contact"
+msgstr "Add new contact"
 
-#: include/profile_selectors.php:42
-msgid "Available"
-msgstr "Available"
+#: include/contact_widgets.php:9
+msgid "Enter address or web location"
+msgstr "Enter address or web location"
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Unavailable"
+#: include/contact_widgets.php:10
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Example: jo@example.com, http://example.com/jo"
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Having a crush"
+#: include/contact_widgets.php:12 include/identity.php:230
+#: mod/allfriends.php:87 mod/dirfind.php:209 mod/match.php:92
+#: mod/suggest.php:103
+msgid "Connect"
+msgstr "Connect"
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Infatuated"
+#: include/contact_widgets.php:26
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation available"
+msgstr[1] "%d invitations available"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: include/contact_widgets.php:32
+msgid "Find People"
+msgstr "Find people"
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Unfaithful"
+#: include/contact_widgets.php:33
+msgid "Enter name or interest"
+msgstr "Enter name or interest"
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sex addict"
+#: include/contact_widgets.php:34 include/conversation.php:1018
+#: include/Contact.php:389 mod/allfriends.php:71 mod/dirfind.php:212
+#: mod/follow.php:108 mod/match.php:77 mod/suggest.php:85 mod/contacts.php:613
+msgid "Connect/Follow"
+msgstr "Connect/Follow"
 
-#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267
-msgid "Friends"
-msgstr "Friends"
+#: include/contact_widgets.php:35
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examples: Robert Morgenstein, fishing"
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Friends with benefits"
+#: include/contact_widgets.php:36 mod/directory.php:202 mod/contacts.php:809
+msgid "Find"
+msgstr "Find"
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: include/contact_widgets.php:37 mod/suggest.php:116
+#: view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Friend suggestions"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Engaged"
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Similar interests"
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Married"
+#: include/contact_widgets.php:39
+msgid "Random Profile"
+msgstr "Random profile"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Imaginarily married"
+#: include/contact_widgets.php:40 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Invite friends"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: include/contact_widgets.php:127
+msgid "Networks"
+msgstr "Networks"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Cohabiting"
+#: include/contact_widgets.php:130
+msgid "All Networks"
+msgstr "All networks"
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Common law spouse"
+#: include/contact_widgets.php:165 include/contact_widgets.php:200
+msgid "Everything"
+msgstr "Everything"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Happy"
+#: include/contact_widgets.php:197
+msgid "Categories"
+msgstr "Categories"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Not looking"
+#: include/contact_widgets.php:266
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact in common"
+msgstr[1] "%d contacts in common"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: include/conversation.php:134 include/conversation.php:286
+#: include/like.php:183 include/text.php:1871
+msgid "event"
+msgstr "event"
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrayed"
+#: include/conversation.php:137 include/conversation.php:147
+#: include/conversation.php:289 include/conversation.php:298
+#: include/like.php:181 include/diaspora.php:1653 mod/subthread.php:89
+#: mod/tagger.php:63
+msgid "status"
+msgstr "status"
 
-#: include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separated"
+#: include/conversation.php:142 include/conversation.php:294
+#: include/like.php:181 include/text.php:1873 mod/subthread.php:89
+#: mod/tagger.php:63
+msgid "photo"
+msgstr "photo"
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstable"
+#: include/conversation.php:154 include/like.php:30 include/diaspora.php:1649
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s likes %2$s's %3$s"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorced"
+#: include/conversation.php:157 include/like.php:34 include/like.php:39
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s doesn't like %2$s's %3$s"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Imaginarily divorced"
+#: include/conversation.php:160
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s goes to %2$s's %3$s"
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Widowed"
+#: include/conversation.php:163
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s doesn't go %2$s's %3$s"
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Uncertain"
+#: include/conversation.php:166
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s might go to %2$s's %3$s"
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "It's complicated"
+#: include/conversation.php:199 mod/dfrn_confirm.php:480
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s is now friends with %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Don't care"
+#: include/conversation.php:240
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s poked %2$s"
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Ask me"
+#: include/conversation.php:261 mod/mood.php:64
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s is currently %2$s"
 
-#: include/security.php:61
-msgid "Welcome "
-msgstr "Welcome "
+#: include/conversation.php:308 mod/tagger.php:96
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s tagged %2$s's %3$s with %4$s"
 
-#: include/security.php:62
-msgid "Please upload a profile photo."
-msgstr "Please upload a profile photo."
+#: include/conversation.php:335
+msgid "post/item"
+msgstr "Post/Item"
 
-#: include/security.php:65
-msgid "Welcome back "
-msgstr "Welcome back "
+#: include/conversation.php:336
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marked %2$s's %3$s as favourite"
 
-#: include/security.php:429
-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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664
+#: mod/profiles.php:344
+msgid "Likes"
+msgstr "Likes"
 
-#: include/uimport.php:91
-msgid "Error decoding account file"
-msgstr "Error decoding account file"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1664
+#: mod/profiles.php:348
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/uimport.php:97
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Error! No version data in file! Is this a Friendica account file?"
+#: include/conversation.php:616 include/conversation.php:1542
+#: mod/content.php:374 mod/photos.php:1665
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Attending"
+msgstr[1] "Attending"
 
-#: include/uimport.php:113 include/uimport.php:124
-msgid "Error! Cannot check nickname"
-msgstr "Error! Cannot check nickname."
+#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665
+msgid "Not attending"
+msgstr "Not attending"
+
+#: include/conversation.php:616 mod/content.php:374 mod/photos.php:1665
+msgid "Might attend"
+msgstr "Might attend"
+
+#: include/conversation.php:748 mod/content.php:454 mod/content.php:760
+#: mod/photos.php:1730 object/Item.php:137
+msgid "Select"
+msgstr "Select"
+
+#: include/conversation.php:749 mod/content.php:455 mod/content.php:761
+#: mod/photos.php:1731 mod/admin.php:1514 mod/contacts.php:819
+#: mod/contacts.php:1018 mod/settings.php:745 object/Item.php:138
+msgid "Delete"
+msgstr "Delete"
 
-#: include/uimport.php:117 include/uimport.php:128
+#: include/conversation.php:792 mod/content.php:488 mod/content.php:916
+#: mod/content.php:917 object/Item.php:353 object/Item.php:354
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' already exists on this server!"
+msgid "View %s's profile @ %s"
+msgstr "View %s's profile @ %s"
 
-#: include/uimport.php:150
-msgid "User creation error"
-msgstr "User creation error"
+#: include/conversation.php:804 object/Item.php:341
+msgid "Categories:"
+msgstr "Categories:"
 
-#: include/uimport.php:170
-msgid "User profile creation error"
-msgstr "User profile creation error"
+#: include/conversation.php:805 object/Item.php:342
+msgid "Filed under:"
+msgstr "Filed under:"
 
-#: include/uimport.php:219
+#: include/conversation.php:812 mod/content.php:498 mod/content.php:929
+#: object/Item.php:367
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contact not imported"
-msgstr[1] "%d contacts not imported"
+msgid "%s from %s"
+msgstr "%s from %s"
 
-#: include/uimport.php:289
-msgid "Done. You can now login with your username and password"
-msgstr "Done. You can now login with your username and password"
+#: include/conversation.php:828 mod/content.php:514
+msgid "View in context"
+msgstr "View in context"
 
-#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453
-#: include/conversation.php:1004 include/conversation.php:1020
-#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73
-#: mod/suggest.php:82 mod/dirfind.php:209
-msgid "View Profile"
-msgstr "View profile"
+#: include/conversation.php:830 include/conversation.php:1299
+#: mod/content.php:516 mod/content.php:954 mod/editpost.php:116
+#: mod/message.php:339 mod/message.php:524 mod/photos.php:1629
+#: mod/wallmessage.php:142 object/Item.php:392
+msgid "Please wait"
+msgstr "Please wait"
 
-#: include/Contact.php:409 include/contact_widgets.php:32
-#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610
-#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106
-msgid "Connect/Follow"
-msgstr "Connect/Follow"
+#: include/conversation.php:907
+msgid "remove"
+msgstr "Remove"
 
-#: include/Contact.php:452 include/conversation.php:1003
+#: include/conversation.php:911
+msgid "Delete Selected Items"
+msgstr "Delete selected items"
+
+#: include/conversation.php:1003
+msgid "Follow Thread"
+msgstr "Follow thread"
+
+#: include/conversation.php:1004 include/Contact.php:432
 msgid "View Status"
 msgstr "View status"
 
-#: include/Contact.php:454 include/conversation.php:1005
+#: include/conversation.php:1005 include/conversation.php:1021
+#: include/Contact.php:375 include/Contact.php:388 include/Contact.php:433
+#: mod/allfriends.php:70 mod/directory.php:153 mod/dirfind.php:211
+#: mod/match.php:76 mod/suggest.php:84
+msgid "View Profile"
+msgstr "View profile"
+
+#: include/conversation.php:1006 include/Contact.php:434
 msgid "View Photos"
 msgstr "View photos"
 
-#: include/Contact.php:455 include/conversation.php:1006
+#: include/conversation.php:1007 include/Contact.php:435
 msgid "Network Posts"
 msgstr "Network posts"
 
-#: include/Contact.php:456 include/conversation.php:1007
+#: include/conversation.php:1008 include/Contact.php:436
 msgid "View Contact"
 msgstr "View contact"
 
-#: include/Contact.php:457
-msgid "Drop Contact"
-msgstr "Drop contact"
-
-#: include/Contact.php:458 include/conversation.php:1008
+#: include/conversation.php:1009 include/Contact.php:438
 msgid "Send PM"
 msgstr "Send PM"
 
-#: include/Contact.php:459 include/conversation.php:1012
+#: include/conversation.php:1013 include/Contact.php:439
 msgid "Poke"
 msgstr "Poke"
 
-#: include/Contact.php:840
-msgid "Organisation"
-msgstr "Organisation"
+#: include/conversation.php:1140
+#, php-format
+msgid "%s likes this."
+msgstr "%s likes this."
 
-#: include/Contact.php:843
-msgid "News"
-msgstr "News"
+#: include/conversation.php:1143
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s doesn't like this."
 
-#: include/Contact.php:846
-msgid "Forum"
-msgstr "Forum"
+#: include/conversation.php:1146
+#, php-format
+msgid "%s attends."
+msgstr "%s attends."
 
-#: include/acl_selectors.php:353
-msgid "Post to Email"
-msgstr "Post to email"
+#: include/conversation.php:1149
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s doesn't attend."
 
-#: include/acl_selectors.php:358
+#: include/conversation.php:1152
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Connectors are disabled since \"%s\" is enabled."
+msgid "%s attends maybe."
+msgstr "%s may attend."
 
-#: include/acl_selectors.php:359 mod/settings.php:1188
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Hide profile details from unknown viewers?"
+#: include/conversation.php:1163
+msgid "and"
+msgstr "and"
 
-#: include/acl_selectors.php:365
-msgid "Visible to everybody"
-msgstr "Visible to everybody"
+#: include/conversation.php:1169
+#, php-format
+msgid ", and %d other people"
+msgstr ", and %d other people"
 
-#: include/acl_selectors.php:366 view/theme/vier/config.php:108
-msgid "show"
-msgstr "show"
+#: include/conversation.php:1178
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d people</span> like this"
 
-#: include/acl_selectors.php:367 view/theme/vier/config.php:108
-msgid "don't show"
-msgstr "don't show"
+#: include/conversation.php:1179
+#, php-format
+msgid "%s like this."
+msgstr "%s like this."
 
-#: include/acl_selectors.php:373 mod/editpost.php:123
-msgid "CC: email addresses"
-msgstr "CC: email addresses"
+#: include/conversation.php:1182
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d people</span> don't like this"
 
-#: include/acl_selectors.php:374 mod/editpost.php:130
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Example: bob@example.com, mary@example.com"
+#: include/conversation.php:1183
+#, php-format
+msgid "%s don't like this."
+msgstr "%s don't like this."
 
-#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196
-#: mod/photos.php:1593
-msgid "Permissions"
-msgstr "Permissions"
+#: include/conversation.php:1186
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d people</span> attend"
 
-#: include/acl_selectors.php:377
-msgid "Close"
-msgstr "Close"
+#: include/conversation.php:1187
+#, php-format
+msgid "%s attend."
+msgstr "%s attend."
 
-#: include/api.php:1089
+#: include/conversation.php:1190
 #, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Daily posting limit of %d posts reached. This post was rejected."
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d people</span> don't attend"
 
-#: include/api.php:1110
+#: include/conversation.php:1191
 #, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Weekly posting limit of %d posts reached. This post was rejected."
+msgid "%s don't attend."
+msgstr "%s don't attend."
 
-#: include/api.php:1131
+#: include/conversation.php:1194
 #, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Monthly posting limit of %d posts reached. This post was rejected."
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d people</span> attend maybe"
 
-#: include/auth.php:51
-msgid "Logged out."
-msgstr "Logged out."
+#: include/conversation.php:1195
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s attend maybe."
 
-#: include/auth.php:122 include/auth.php:184 mod/openid.php:110
-msgid "Login failed."
-msgstr "Login failed."
+#: include/conversation.php:1224 include/conversation.php:1240
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible to <strong>everybody</strong>"
 
-#: include/auth.php:138 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
-
-#: include/auth.php:138 include/user.php:75
-msgid "The error message was:"
-msgstr "The error message was:"
+#: include/conversation.php:1225 include/conversation.php:1241
+#: mod/message.php:273 mod/message.php:280 mod/message.php:420
+#: mod/message.php:427 mod/wallmessage.php:116 mod/wallmessage.php:123
+msgid "Please enter a link URL:"
+msgstr "Please enter a link URL:"
 
-#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: include/conversation.php:1226 include/conversation.php:1242
+msgid "Please enter a video link/URL:"
+msgstr "Please enter a video link/URL:"
 
-#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54
-#: include/event.php:525
-msgid "Starts:"
-msgstr "Starts:"
+#: include/conversation.php:1227 include/conversation.php:1243
+msgid "Please enter an audio link/URL:"
+msgstr "Please enter an audio link/URL:"
 
-#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60
-#: include/event.php:526
-msgid "Finishes:"
-msgstr "Finishes:"
+#: include/conversation.php:1228 include/conversation.php:1244
+msgid "Tag term:"
+msgstr "Tag term:"
 
-#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
-#: include/event.php:527 include/identity.php:336 mod/contacts.php:636
-#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
-msgid "Location:"
-msgstr "Location:"
+#: include/conversation.php:1229 include/conversation.php:1245
+#: mod/filer.php:31
+msgid "Save to Folder:"
+msgstr "Save to folder:"
 
-#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133
-msgid "Image/photo"
-msgstr "Image/Photo"
+#: include/conversation.php:1230 include/conversation.php:1246
+msgid "Where are you right now?"
+msgstr "Where are you right now?"
 
-#: include/bbcode.php:497
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/conversation.php:1231
+msgid "Delete item(s)?"
+msgstr "Delete item(s)?"
 
-#: include/bbcode.php:1089 include/bbcode.php:1111
-msgid "$1 wrote:"
-msgstr "$1 wrote:"
+#: include/conversation.php:1280
+msgid "Share"
+msgstr "Share"
 
-#: include/bbcode.php:1141 include/bbcode.php:1142
-msgid "Encrypted content"
-msgstr "Encrypted content"
+#: include/conversation.php:1281 mod/editpost.php:102 mod/message.php:337
+#: mod/message.php:521 mod/wallmessage.php:140
+msgid "Upload photo"
+msgstr "Upload photo"
 
-#: include/bbcode.php:1257
-msgid "Invalid source protocol"
-msgstr "Invalid source protocol"
+#: include/conversation.php:1282 mod/editpost.php:103
+msgid "upload photo"
+msgstr "upload photo"
 
-#: include/bbcode.php:1267
-msgid "Invalid link protocol"
-msgstr "Invalid link protocol"
+#: include/conversation.php:1283 mod/editpost.php:104
+msgid "Attach file"
+msgstr "Attach file"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unknown | Not categorised"
+#: include/conversation.php:1284 mod/editpost.php:105
+msgid "attach file"
+msgstr "attach file"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Block immediately"
+#: include/conversation.php:1285 mod/editpost.php:106 mod/message.php:338
+#: mod/message.php:522 mod/wallmessage.php:141
+msgid "Insert web link"
+msgstr "Insert web link"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Shady, spammer, self-marketer"
+#: include/conversation.php:1286 mod/editpost.php:107
+msgid "web link"
+msgstr "web link"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Known to me, but no opinion"
+#: include/conversation.php:1287 mod/editpost.php:108
+msgid "Insert video link"
+msgstr "Insert video link"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probably harmless"
+#: include/conversation.php:1288 mod/editpost.php:109
+msgid "video link"
+msgstr "video link"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Reputable, has my trust"
+#: include/conversation.php:1289 mod/editpost.php:110
+msgid "Insert audio link"
+msgstr "Insert audio link"
 
-#: include/contact_selectors.php:56 mod/admin.php:980
-msgid "Frequently"
-msgstr "Frequently"
+#: include/conversation.php:1290 mod/editpost.php:111
+msgid "audio link"
+msgstr "audio link"
 
-#: include/contact_selectors.php:57 mod/admin.php:981
-msgid "Hourly"
-msgstr "Hourly"
+#: include/conversation.php:1291 mod/editpost.php:112
+msgid "Set your location"
+msgstr "Set your location"
 
-#: include/contact_selectors.php:58 mod/admin.php:982
-msgid "Twice daily"
-msgstr "Twice daily"
+#: include/conversation.php:1292 mod/editpost.php:113
+msgid "set location"
+msgstr "set location"
 
-#: include/contact_selectors.php:59 mod/admin.php:983
-msgid "Daily"
-msgstr "Daily"
+#: include/conversation.php:1293 mod/editpost.php:114
+msgid "Clear browser location"
+msgstr "Clear browser location"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Weekly"
+#: include/conversation.php:1294 mod/editpost.php:115
+msgid "clear location"
+msgstr "clear location"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monthly"
+#: include/conversation.php:1296 mod/editpost.php:129
+msgid "Set title"
+msgstr "Set title"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:886
-msgid "Friendica"
-msgstr "Friendica"
+#: include/conversation.php:1298 mod/editpost.php:131
+msgid "Categories (comma-separated list)"
+msgstr "Categories (comma-separated list)"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/conversation.php:1300 mod/editpost.php:117
+msgid "Permission settings"
+msgstr "Permission settings"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/conversation.php:1301 mod/editpost.php:146
+msgid "permissions"
+msgstr "permissions"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
-msgid "Email"
-msgstr "Email"
+#: include/conversation.php:1309 mod/editpost.php:126
+msgid "Public post"
+msgstr "Public post"
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:888
-#: mod/settings.php:848
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/conversation.php:1314 mod/content.php:738 mod/editpost.php:137
+#: mod/events.php:506 mod/photos.php:1649 mod/photos.php:1691
+#: mod/photos.php:1771 object/Item.php:711
+msgid "Preview"
+msgstr "Preview"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/conversation.php:1318 include/items.php:2165 mod/editpost.php:140
+#: mod/fbrowser.php:102 mod/fbrowser.php:137 mod/follow.php:126
+#: mod/message.php:211 mod/photos.php:247 mod/photos.php:339
+#: mod/suggest.php:34 mod/tagrm.php:13 mod/tagrm.php:98 mod/videos.php:134
+#: mod/dfrn_request.php:894 mod/contacts.php:458 mod/settings.php:683
+#: mod/settings.php:709
+msgid "Cancel"
+msgstr "Cancel"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: include/conversation.php:1324
+msgid "Post to Groups"
+msgstr "Post to groups"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/conversation.php:1325
+msgid "Post to Contacts"
+msgstr "Post to contacts"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: include/conversation.php:1326
+msgid "Private post"
+msgstr "Private post"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/conversation.php:1331 include/identity.php:270 mod/editpost.php:144
+msgid "Message"
+msgstr "Message"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/conversation.php:1332 mod/editpost.php:145
+msgid "Browser"
+msgstr "Browser"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "Pump.io"
+#: include/conversation.php:1514
+msgid "View all"
+msgstr "View all"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/conversation.php:1536
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Like"
+msgstr[1] "Likes"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora connector"
+#: include/conversation.php:1539
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Dislike"
+msgstr[1] "Dislikes"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social Connector"
-msgstr "GNU Social connector"
+#: include/conversation.php:1545
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Not attending"
+msgstr[1] "Not attending"
 
-#: include/contact_selectors.php:92
-msgid "pnut"
-msgstr "Pnut"
+#: include/conversation.php:1548 include/profile_selectors.php:6
+msgid "Undecided"
+msgid_plural "Undecided"
+msgstr[0] "Undecided"
+msgstr[1] "Undecided"
 
-#: include/contact_selectors.php:93
-msgid "App.net"
-msgstr "App.net"
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:701
+msgid "Miscellaneous"
+msgstr "Miscellaneous"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Add new contact"
+#: include/datetime.php:196 include/identity.php:656
+msgid "Birthday:"
+msgstr "Birthday:"
 
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Enter address or web location"
+#: include/datetime.php:198 mod/profiles.php:724
+msgid "Age: "
+msgstr "Age: "
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Example: jo@example.com, http://example.com/jo"
+#: include/datetime.php:200
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD or MM-DD"
 
-#: include/contact_widgets.php:10 include/identity.php:224
-#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101
-#: mod/dirfind.php:207
-msgid "Connect"
-msgstr "Connect"
+#: include/datetime.php:370
+msgid "never"
+msgstr "never"
 
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation available"
-msgstr[1] "%d invitations available"
+#: include/datetime.php:376
+msgid "less than a second ago"
+msgstr "less than a second ago"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Find people"
+#: include/datetime.php:379
+msgid "year"
+msgstr "year"
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Enter name or interest"
+#: include/datetime.php:379
+msgid "years"
+msgstr "years"
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examples: Robert Morgenstein, fishing"
+#: include/datetime.php:380 include/event.php:453 mod/cal.php:281
+#: mod/events.php:387
+msgid "month"
+msgstr "month"
 
-#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
-msgid "Find"
-msgstr "Find"
+#: include/datetime.php:380
+msgid "months"
+msgstr "months"
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:201
-msgid "Friend Suggestions"
-msgstr "Friend suggestions"
+#: include/datetime.php:381 include/event.php:454 mod/cal.php:282
+#: mod/events.php:388
+msgid "week"
+msgstr "week"
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:200
-msgid "Similar Interests"
-msgstr "Similar interests"
+#: include/datetime.php:381
+msgid "weeks"
+msgstr "weeks"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Random profile"
+#: include/datetime.php:382 include/event.php:455 mod/cal.php:283
+#: mod/events.php:389
+msgid "day"
+msgstr "day"
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
-msgid "Invite Friends"
-msgstr "Invite friends"
+#: include/datetime.php:382
+msgid "days"
+msgstr "days"
 
-#: include/contact_widgets.php:125
-msgid "Networks"
-msgstr "Networks"
+#: include/datetime.php:383
+msgid "hour"
+msgstr "hour"
 
-#: include/contact_widgets.php:128
-msgid "All Networks"
-msgstr "All networks"
+#: include/datetime.php:383
+msgid "hours"
+msgstr "hours"
 
-#: include/contact_widgets.php:160 include/features.php:104
-msgid "Saved Folders"
-msgstr "Saved Folders"
+#: include/datetime.php:384
+msgid "minute"
+msgstr "minute"
 
-#: include/contact_widgets.php:163 include/contact_widgets.php:198
-msgid "Everything"
-msgstr "Everything"
+#: include/datetime.php:384
+msgid "minutes"
+msgstr "minutes"
 
-#: include/contact_widgets.php:195
-msgid "Categories"
-msgstr "Categories"
+#: include/datetime.php:385
+msgid "second"
+msgstr "second"
 
-#: include/contact_widgets.php:264
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact in common"
-msgstr[1] "%d contacts in common"
+#: include/datetime.php:385
+msgid "seconds"
+msgstr "seconds"
 
-#: include/conversation.php:159
+#: include/datetime.php:394
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s goes to %2$s's %3$s"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s ago"
 
-#: include/conversation.php:162
+#: include/datetime.php:620
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s doesn't go %2$s's %3$s"
+msgid "%s's birthday"
+msgstr "%s's birthday"
 
-#: include/conversation.php:165
+#: include/datetime.php:621 include/dfrn.php:1254
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s might go to %2$s's %3$s"
+msgid "Happy Birthday %s"
+msgstr "Happy Birthday, %s!"
 
-#: include/conversation.php:198 mod/dfrn_confirm.php:478
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s is now friends with %2$s"
+#: include/delivery.php:428
+msgid "(no subject)"
+msgstr "(no subject)"
 
-#: include/conversation.php:239
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s poked %2$s"
+#: include/delivery.php:440 include/enotify.php:46
+msgid "noreply"
+msgstr "noreply"
 
-#: include/conversation.php:260 mod/mood.php:63
+#: include/dfrn.php:1253
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s is currently %2$s"
+msgid "%s\\'s birthday"
+msgstr "%s\\'s birthday"
 
-#: include/conversation.php:307 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s tagged %2$s's %3$s with %4$s"
+#: include/event.php:408
+msgid "all-day"
+msgstr "All-day"
 
-#: include/conversation.php:334
-msgid "post/item"
-msgstr "Post/Item"
+#: include/event.php:410
+msgid "Sun"
+msgstr "Sun"
 
-#: include/conversation.php:335
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marked %2$s's %3$s as favourite"
+#: include/event.php:411
+msgid "Mon"
+msgstr "Mon"
 
-#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
-#: mod/profiles.php:340
-msgid "Likes"
-msgstr "Likes"
+#: include/event.php:412
+msgid "Tue"
+msgstr "Tue"
 
-#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
-#: mod/profiles.php:344
-msgid "Dislikes"
-msgstr "Dislikes"
+#: include/event.php:413
+msgid "Wed"
+msgstr "Wed"
 
-#: include/conversation.php:615 include/conversation.php:1541
-#: mod/content.php:373 mod/photos.php:1663
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Attending"
-msgstr[1] "Attending"
+#: include/event.php:414
+msgid "Thu"
+msgstr "Thu"
 
-#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
-msgid "Not attending"
-msgstr "Not attending"
+#: include/event.php:415
+msgid "Fri"
+msgstr "Fri"
 
-#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
-msgid "Might attend"
-msgstr "Might attend"
+#: include/event.php:416
+msgid "Sat"
+msgstr "Sat"
 
-#: include/conversation.php:747 mod/content.php:453 mod/content.php:759
-#: mod/photos.php:1728 object/Item.php:137
-msgid "Select"
-msgstr "Select"
+#: include/event.php:418 include/text.php:1199 mod/settings.php:982
+msgid "Sunday"
+msgstr "Sunday"
 
-#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
-#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
-#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
-msgid "Delete"
-msgstr "Delete"
+#: include/event.php:419 include/text.php:1199 mod/settings.php:982
+msgid "Monday"
+msgstr "Monday"
 
-#: include/conversation.php:791 mod/content.php:487 mod/content.php:915
-#: mod/content.php:916 object/Item.php:356 object/Item.php:357
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "View %s's profile @ %s"
+#: include/event.php:420 include/text.php:1199
+msgid "Tuesday"
+msgstr "Tuesday"
 
-#: include/conversation.php:803 object/Item.php:344
-msgid "Categories:"
-msgstr "Categories:"
+#: include/event.php:421 include/text.php:1199
+msgid "Wednesday"
+msgstr "Wednesday"
 
-#: include/conversation.php:804 object/Item.php:345
-msgid "Filed under:"
-msgstr "Filed under:"
+#: include/event.php:422 include/text.php:1199
+msgid "Thursday"
+msgstr "Thursday"
 
-#: include/conversation.php:811 mod/content.php:497 mod/content.php:928
-#: object/Item.php:370
-#, php-format
-msgid "%s from %s"
-msgstr "%s from %s"
+#: include/event.php:423 include/text.php:1199
+msgid "Friday"
+msgstr "Friday"
 
-#: include/conversation.php:827 mod/content.php:513
-msgid "View in context"
-msgstr "View in context"
+#: include/event.php:424 include/text.php:1199
+msgid "Saturday"
+msgstr "Saturday"
 
-#: include/conversation.php:829 include/conversation.php:1298
-#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
-#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522
-#: mod/photos.php:1627 object/Item.php:395
-msgid "Please wait"
-msgstr "Please wait"
+#: include/event.php:426
+msgid "Jan"
+msgstr "Jan"
 
-#: include/conversation.php:906
-msgid "remove"
-msgstr "Remove"
+#: include/event.php:427
+msgid "Feb"
+msgstr "Feb"
 
-#: include/conversation.php:910
-msgid "Delete Selected Items"
-msgstr "Delete selected items"
+#: include/event.php:428
+msgid "Mar"
+msgstr "Mar"
 
-#: include/conversation.php:1002
-msgid "Follow Thread"
-msgstr "Follow thread"
+#: include/event.php:429
+msgid "Apr"
+msgstr "Apr"
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s likes this."
-msgstr "%s likes this."
+#: include/event.php:430 include/event.php:443 include/text.php:1203
+msgid "May"
+msgstr "May"
 
-#: include/conversation.php:1142
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s doesn't like this."
+#: include/event.php:431
+msgid "Jun"
+msgstr "Jun"
 
-#: include/conversation.php:1145
-#, php-format
-msgid "%s attends."
-msgstr "%s attends."
+#: include/event.php:432
+msgid "Jul"
+msgstr "Jul"
 
-#: include/conversation.php:1148
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s doesn't attend."
+#: include/event.php:433
+msgid "Aug"
+msgstr "Aug"
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s may attend."
+#: include/event.php:434
+msgid "Sept"
+msgstr "Sep"
 
-#: include/conversation.php:1162
-msgid "and"
-msgstr "and"
+#: include/event.php:435
+msgid "Oct"
+msgstr "Oct"
 
-#: include/conversation.php:1168
-#, php-format
-msgid ", and %d other people"
-msgstr ", and %d other people"
+#: include/event.php:436
+msgid "Nov"
+msgstr "Nov"
 
-#: include/conversation.php:1177
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d people</span> like this"
+#: include/event.php:437
+msgid "Dec"
+msgstr "Dec"
 
-#: include/conversation.php:1178
-#, php-format
-msgid "%s like this."
-msgstr "%s like this."
+#: include/event.php:439 include/text.php:1203
+msgid "January"
+msgstr "January"
 
-#: include/conversation.php:1181
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d people</span> don't like this"
+#: include/event.php:440 include/text.php:1203
+msgid "February"
+msgstr "February"
 
-#: include/conversation.php:1182
-#, php-format
-msgid "%s don't like this."
-msgstr "%s don't like this."
+#: include/event.php:441 include/text.php:1203
+msgid "March"
+msgstr "March"
 
-#: include/conversation.php:1185
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span  %1$s>%2$d people</span> attend"
+#: include/event.php:442 include/text.php:1203
+msgid "April"
+msgstr "April"
 
-#: include/conversation.php:1186
-#, php-format
-msgid "%s attend."
-msgstr "%s attend."
+#: include/event.php:444 include/text.php:1203
+msgid "June"
+msgstr "June"
 
-#: include/conversation.php:1189
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d people</span> don't attend"
+#: include/event.php:445 include/text.php:1203
+msgid "July"
+msgstr "July"
 
-#: include/conversation.php:1190
-#, php-format
-msgid "%s don't attend."
-msgstr "%s don't attend."
+#: include/event.php:446 include/text.php:1203
+msgid "August"
+msgstr "August"
 
-#: include/conversation.php:1193
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d people</span> attend maybe"
+#: include/event.php:447 include/text.php:1203
+msgid "September"
+msgstr "September"
 
-#: include/conversation.php:1194
-#, php-format
-msgid "%s anttend maybe."
-msgstr "%s attend maybe."
+#: include/event.php:448 include/text.php:1203
+msgid "October"
+msgstr "October"
 
-#: include/conversation.php:1223 include/conversation.php:1239
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible to <strong>everybody</strong>"
+#: include/event.php:449 include/text.php:1203
+msgid "November"
+msgstr "November"
 
-#: include/conversation.php:1224 include/conversation.php:1240
-#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271
-#: mod/message.php:278 mod/message.php:418 mod/message.php:425
-msgid "Please enter a link URL:"
-msgstr "Please enter a link URL:"
-
-#: include/conversation.php:1225 include/conversation.php:1241
-msgid "Please enter a video link/URL:"
-msgstr "Please enter a video link/URL:"
+#: include/event.php:450 include/text.php:1203
+msgid "December"
+msgstr "December"
 
-#: include/conversation.php:1226 include/conversation.php:1242
-msgid "Please enter an audio link/URL:"
-msgstr "Please enter an audio link/URL:"
+#: include/event.php:452 mod/cal.php:280 mod/events.php:386
+msgid "today"
+msgstr "today"
 
-#: include/conversation.php:1227 include/conversation.php:1243
-msgid "Tag term:"
-msgstr "Tag term:"
+#: include/event.php:457
+msgid "No events to display"
+msgstr "No events to display"
 
-#: include/conversation.php:1228 include/conversation.php:1244
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Save to folder:"
+#: include/event.php:570
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/conversation.php:1229 include/conversation.php:1245
-msgid "Where are you right now?"
-msgstr "Where are you right now?"
+#: include/event.php:592
+msgid "Edit event"
+msgstr "Edit event"
 
-#: include/conversation.php:1230
-msgid "Delete item(s)?"
-msgstr "Delete item(s)?"
+#: include/event.php:593
+msgid "Delete event"
+msgstr "Delete event"
 
-#: include/conversation.php:1279
-msgid "Share"
-msgstr "Share"
+#: include/event.php:619 include/text.php:1601 include/text.php:1608
+msgid "link to source"
+msgstr "Link to source"
 
-#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138
-#: mod/message.php:335 mod/message.php:519
-msgid "Upload photo"
-msgstr "Upload photo"
+#: include/event.php:873
+msgid "Export"
+msgstr "Export"
 
-#: include/conversation.php:1281 mod/editpost.php:101
-msgid "upload photo"
-msgstr "upload photo"
+#: include/event.php:874
+msgid "Export calendar as ical"
+msgstr "Export calendar as ical"
 
-#: include/conversation.php:1282 mod/editpost.php:102
-msgid "Attach file"
-msgstr "Attach file"
+#: include/event.php:875
+msgid "Export calendar as csv"
+msgstr "Export calendar as csv"
 
-#: include/conversation.php:1283 mod/editpost.php:103
-msgid "attach file"
-msgstr "attach file"
+#: include/follow.php:84 mod/dfrn_request.php:514
+msgid "Disallowed profile URL."
+msgstr "Disallowed profile URL."
 
-#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139
-#: mod/message.php:336 mod/message.php:520
-msgid "Insert web link"
-msgstr "Insert web link"
+#: include/follow.php:89 mod/friendica.php:115 mod/dfrn_request.php:520
+#: mod/admin.php:280 mod/admin.php:298
+msgid "Blocked domain"
+msgstr "Blocked domain"
 
-#: include/conversation.php:1285 mod/editpost.php:105
-msgid "web link"
-msgstr "web link"
+#: include/follow.php:94
+msgid "Connect URL missing."
+msgstr "Connect URL missing."
 
-#: include/conversation.php:1286 mod/editpost.php:106
-msgid "Insert video link"
-msgstr "Insert video link"
+#: include/follow.php:122
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "This site is not configured to allow communications with other networks."
 
-#: include/conversation.php:1287 mod/editpost.php:107
-msgid "video link"
-msgstr "video link"
+#: include/follow.php:123 include/follow.php:137
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "No compatible communication protocols or feeds were discovered."
 
-#: include/conversation.php:1288 mod/editpost.php:108
-msgid "Insert audio link"
-msgstr "Insert audio link"
+#: include/follow.php:135
+msgid "The profile address specified does not provide adequate information."
+msgstr "The profile address specified does not provide adequate information."
 
-#: include/conversation.php:1289 mod/editpost.php:109
-msgid "audio link"
-msgstr "audio link"
+#: include/follow.php:140
+msgid "An author or name was not found."
+msgstr "An author or name was not found."
 
-#: include/conversation.php:1290 mod/editpost.php:110
-msgid "Set your location"
-msgstr "Set your location"
+#: include/follow.php:143
+msgid "No browser URL could be matched to this address."
+msgstr "No browser URL could be matched to this address."
 
-#: include/conversation.php:1291 mod/editpost.php:111
-msgid "set location"
-msgstr "set location"
+#: include/follow.php:146
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Unable to match @-style identity address with a known protocol or email contact."
 
-#: include/conversation.php:1292 mod/editpost.php:112
-msgid "Clear browser location"
-msgstr "Clear browser location"
+#: include/follow.php:147
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: in front of address to force email check."
 
-#: include/conversation.php:1293 mod/editpost.php:113
-msgid "clear location"
-msgstr "clear location"
+#: include/follow.php:153
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "The profile address specified belongs to a network which has been disabled on this site."
 
-#: include/conversation.php:1295 mod/editpost.php:127
-msgid "Set title"
-msgstr "Set title"
+#: include/follow.php:158
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
 
-#: include/conversation.php:1297 mod/editpost.php:129
-msgid "Categories (comma-separated list)"
-msgstr "Categories (comma-separated list)"
+#: include/follow.php:259
+msgid "Unable to retrieve contact information."
+msgstr "Unable to retrieve contact information."
 
-#: include/conversation.php:1299 mod/editpost.php:115
-msgid "Permission settings"
-msgstr "Permission settings"
+#: include/like.php:44
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s is going to %2$s's %3$s"
 
-#: include/conversation.php:1300 mod/editpost.php:144
-msgid "permissions"
-msgstr "permissions"
+#: include/like.php:49
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s is not going to %2$s's %3$s"
 
-#: include/conversation.php:1308 mod/editpost.php:124
-msgid "Public post"
-msgstr "Public post"
+#: include/like.php:54
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s may go to %2$s's %3$s"
 
-#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135
-#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689
-#: mod/photos.php:1769 object/Item.php:714
-msgid "Preview"
-msgstr "Preview"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:42
+#: mod/fbrowser.php:63 mod/photos.php:189 mod/photos.php:1125
+#: mod/photos.php:1258 mod/photos.php:1279 mod/photos.php:1841
+#: mod/photos.php:1855
+msgid "Contact Photos"
+msgstr "Contact photos"
 
-#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
-#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
-#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
-#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
-#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682
-#: mod/settings.php:708 mod/videos.php:132
-msgid "Cancel"
-msgstr "Cancel"
+#: include/security.php:63
+msgid "Welcome "
+msgstr "Welcome "
 
-#: include/conversation.php:1323
-msgid "Post to Groups"
-msgstr "Post to groups"
+#: include/security.php:64
+msgid "Please upload a profile photo."
+msgstr "Please upload a profile photo."
 
-#: include/conversation.php:1324
-msgid "Post to Contacts"
-msgstr "Post to contacts"
+#: include/security.php:67
+msgid "Welcome back "
+msgstr "Welcome back "
 
-#: include/conversation.php:1325
-msgid "Private post"
-msgstr "Private post"
+#: include/security.php:431
+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 "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours."
 
-#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142
-msgid "Message"
-msgstr "Message"
+#: include/text.php:308
+msgid "newer"
+msgstr "Later posts"
 
-#: include/conversation.php:1331 mod/editpost.php:143
-msgid "Browser"
-msgstr "Browser"
+#: include/text.php:309
+msgid "older"
+msgstr "Earlier posts"
 
-#: include/conversation.php:1513
-msgid "View all"
-msgstr "View all"
+#: include/text.php:314
+msgid "first"
+msgstr "first"
 
-#: include/conversation.php:1535
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Like"
-msgstr[1] "Likes"
+#: include/text.php:315
+msgid "prev"
+msgstr "prev"
 
-#: include/conversation.php:1538
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Dislike"
-msgstr[1] "Dislikes"
+#: include/text.php:349
+msgid "next"
+msgstr "next"
 
-#: include/conversation.php:1544
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Not attending"
-msgstr[1] "Not attending"
+#: include/text.php:350
+msgid "last"
+msgstr "last"
 
-#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698
-msgid "Miscellaneous"
-msgstr "Miscellaneous"
+#: include/text.php:404
+msgid "Loading more entries..."
+msgstr "Loading more entries..."
 
-#: include/datetime.php:196 include/identity.php:644
-msgid "Birthday:"
-msgstr "Birthday:"
+#: include/text.php:405
+msgid "The end"
+msgstr "The end"
 
-#: include/datetime.php:198 mod/profiles.php:721
-msgid "Age: "
-msgstr "Age: "
+#: include/text.php:956
+msgid "No contacts"
+msgstr "No contacts"
 
-#: include/datetime.php:200
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD or MM-DD"
+#: include/text.php:981
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacts"
 
-#: include/datetime.php:370
-msgid "never"
-msgstr "never"
+#: include/text.php:994
+msgid "View Contacts"
+msgstr "View contacts"
 
-#: include/datetime.php:376
-msgid "less than a second ago"
-msgstr "less than a second ago"
+#: include/text.php:1081 include/nav.php:125 mod/search.php:152
+msgid "Search"
+msgstr "Search"
 
-#: include/datetime.php:379
-msgid "year"
-msgstr "year"
+#: include/text.php:1082 mod/editpost.php:101 mod/filer.php:32
+#: mod/notes.php:64
+msgid "Save"
+msgstr "Save"
 
-#: include/datetime.php:379
-msgid "years"
-msgstr "years"
+#: include/text.php:1084 include/nav.php:42
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/datetime.php:380 include/event.php:519 mod/cal.php:279
-#: mod/events.php:384
-msgid "month"
-msgstr "month"
+#: include/text.php:1089 include/nav.php:128
+msgid "Full Text"
+msgstr "Full text"
 
-#: include/datetime.php:380
-msgid "months"
-msgstr "months"
+#: include/text.php:1090 include/nav.php:129
+msgid "Tags"
+msgstr "Tags"
 
-#: include/datetime.php:381 include/event.php:520 mod/cal.php:280
-#: mod/events.php:385
-msgid "week"
-msgstr "week"
+#: include/text.php:1091 include/nav.php:130 include/nav.php:194
+#: include/identity.php:853 include/identity.php:856 mod/viewcontacts.php:124
+#: mod/contacts.php:803 mod/contacts.php:864 view/theme/frio/theme.php:259
+msgid "Contacts"
+msgstr "Contacts"
 
-#: include/datetime.php:381
-msgid "weeks"
-msgstr "weeks"
+#: include/text.php:1145
+msgid "poke"
+msgstr "poke"
 
-#: include/datetime.php:382 include/event.php:521 mod/cal.php:281
-#: mod/events.php:386
-msgid "day"
-msgstr "day"
+#: include/text.php:1145
+msgid "poked"
+msgstr "poked"
 
-#: include/datetime.php:382
-msgid "days"
-msgstr "days"
+#: include/text.php:1146
+msgid "ping"
+msgstr "ping"
 
-#: include/datetime.php:383
-msgid "hour"
-msgstr "hour"
+#: include/text.php:1146
+msgid "pinged"
+msgstr "pinged"
 
-#: include/datetime.php:383
-msgid "hours"
-msgstr "hours"
+#: include/text.php:1147
+msgid "prod"
+msgstr "prod"
 
-#: include/datetime.php:384
-msgid "minute"
-msgstr "minute"
+#: include/text.php:1147
+msgid "prodded"
+msgstr "prodded"
 
-#: include/datetime.php:384
-msgid "minutes"
-msgstr "minutes"
+#: include/text.php:1148
+msgid "slap"
+msgstr "slap"
 
-#: include/datetime.php:385
-msgid "second"
-msgstr "second"
+#: include/text.php:1148
+msgid "slapped"
+msgstr "slapped"
 
-#: include/datetime.php:385
-msgid "seconds"
-msgstr "seconds"
+#: include/text.php:1149
+msgid "finger"
+msgstr "finger"
 
-#: include/datetime.php:394
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s ago"
+#: include/text.php:1149
+msgid "fingered"
+msgstr "fingered"
 
-#: include/datetime.php:620
-#, php-format
-msgid "%s's birthday"
-msgstr "%s's birthday"
+#: include/text.php:1150
+msgid "rebuff"
+msgstr "rebuff"
 
-#: include/datetime.php:621 include/dfrn.php:1252
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Happy Birthday, %s!"
+#: include/text.php:1150
+msgid "rebuffed"
+msgstr "rebuffed"
+
+#: include/text.php:1164
+msgid "happy"
+msgstr "happy"
+
+#: include/text.php:1165
+msgid "sad"
+msgstr "sad"
+
+#: include/text.php:1166
+msgid "mellow"
+msgstr "mellow"
+
+#: include/text.php:1167
+msgid "tired"
+msgstr "tired"
+
+#: include/text.php:1168
+msgid "perky"
+msgstr "perky"
+
+#: include/text.php:1169
+msgid "angry"
+msgstr "angry"
+
+#: include/text.php:1170
+msgid "stupified"
+msgstr "stupified"
+
+#: include/text.php:1171
+msgid "puzzled"
+msgstr "puzzled"
+
+#: include/text.php:1172
+msgid "interested"
+msgstr "interested"
+
+#: include/text.php:1173
+msgid "bitter"
+msgstr "bitter"
+
+#: include/text.php:1174
+msgid "cheerful"
+msgstr "cheerful"
+
+#: include/text.php:1175
+msgid "alive"
+msgstr "alive"
+
+#: include/text.php:1176
+msgid "annoyed"
+msgstr "annoyed"
+
+#: include/text.php:1177
+msgid "anxious"
+msgstr "anxious"
+
+#: include/text.php:1178
+msgid "cranky"
+msgstr "cranky"
+
+#: include/text.php:1179
+msgid "disturbed"
+msgstr "disturbed"
+
+#: include/text.php:1180
+msgid "frustrated"
+msgstr "frustrated"
+
+#: include/text.php:1181
+msgid "motivated"
+msgstr "motivated"
+
+#: include/text.php:1182
+msgid "relaxed"
+msgstr "relaxed"
+
+#: include/text.php:1183
+msgid "surprised"
+msgstr "surprised"
+
+#: include/text.php:1393 mod/videos.php:388
+msgid "View Video"
+msgstr "View video"
+
+#: include/text.php:1425
+msgid "bytes"
+msgstr "bytes"
+
+#: include/text.php:1457 include/text.php:1469
+msgid "Click to open/close"
+msgstr "Click to open/close"
+
+#: include/text.php:1595
+msgid "View on separate page"
+msgstr "View on separate page"
+
+#: include/text.php:1596
+msgid "view on separate page"
+msgstr "view on separate page"
+
+#: include/text.php:1875
+msgid "activity"
+msgstr "activity"
+
+#: include/text.php:1877 mod/content.php:624 object/Item.php:416
+#: object/Item.php:428
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "comment"
+msgstr[1] "comments"
+
+#: include/text.php:1878
+msgid "post"
+msgstr "post"
+
+#: include/text.php:2046
+msgid "Item filed"
+msgstr "Item filed"
+
+#: include/Contact.php:437
+msgid "Drop Contact"
+msgstr "Drop contact"
 
-#: include/dba_pdo.php:72 include/dba.php:47
+#: include/Contact.php:819
+msgid "Organisation"
+msgstr "Organisation"
+
+#: include/Contact.php:822
+msgid "News"
+msgstr "News"
+
+#: include/Contact.php:825
+msgid "Forum"
+msgstr "Forum"
+
+#: include/bbcode.php:419 include/bbcode.php:1178 include/bbcode.php:1179
+msgid "Image/photo"
+msgstr "Image/Photo"
+
+#: include/bbcode.php:536
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Cannot locate DNS info for database server '%s'"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/enotify.php:24
+#: include/bbcode.php:1135 include/bbcode.php:1157
+msgid "$1 wrote:"
+msgstr "$1 wrote:"
+
+#: include/bbcode.php:1187 include/bbcode.php:1188
+msgid "Encrypted content"
+msgstr "Encrypted content"
+
+#: include/bbcode.php:1303
+msgid "Invalid source protocol"
+msgstr "Invalid source protocol"
+
+#: include/bbcode.php:1313
+msgid "Invalid link protocol"
+msgstr "Invalid link protocol"
+
+#: include/enotify.php:27
 msgid "Friendica Notification"
 msgstr "Friendica notification"
 
-#: include/enotify.php:27
+#: include/enotify.php:30
 msgid "Thank You,"
 msgstr "Thank you"
 
-#: include/enotify.php:30
+#: include/enotify.php:33
 #, php-format
 msgid "%s Administrator"
 msgstr "%s Administrator"
 
-#: include/enotify.php:32
+#: include/enotify.php:35
 #, php-format
 msgid "%1$s, %2$s Administrator"
 msgstr "%1$s, %2$s Administrator"
 
-#: include/enotify.php:70
+#: include/enotify.php:73
 #, php-format
 msgid "%s <!item_type!>"
 msgstr "%s <!item_type!>"
 
-#: include/enotify.php:83
+#: include/enotify.php:86
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr "[Friendica:Notify] New mail received at %s"
 
-#: include/enotify.php:85
+#: include/enotify.php:88
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr "%1$s sent you a new private message at %2$s."
 
-#: include/enotify.php:86
+#: include/enotify.php:89
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr "%1$s sent you %2$s."
 
-#: include/enotify.php:86
+#: include/enotify.php:89
 msgid "a private message"
 msgstr "a private message"
 
-#: include/enotify.php:88
+#: include/enotify.php:91
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr "Please visit %s to view or reply to your private messages."
 
-#: include/enotify.php:134
+#: include/enotify.php:137
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr "%1$s commented on [url=%2$s]a %3$s[/url]"
 
-#: include/enotify.php:141
+#: include/enotify.php:144
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 
-#: include/enotify.php:149
+#: include/enotify.php:152
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: include/enotify.php:159
+#: include/enotify.php:162
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 
-#: include/enotify.php:161
+#: include/enotify.php:164
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr "%s commented on an item/conversation you have been following."
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#: include/enotify.php:167 include/enotify.php:181 include/enotify.php:195
+#: include/enotify.php:209 include/enotify.php:227 include/enotify.php:241
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr "Please visit %s to view or reply to the conversation."
 
-#: include/enotify.php:171
+#: include/enotify.php:174
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr "[Friendica:Notify] %s posted to your profile wall"
 
-#: include/enotify.php:173
+#: include/enotify.php:176
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr "%1$s posted to your profile wall at %2$s"
 
-#: include/enotify.php:174
+#: include/enotify.php:177
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr "%1$s posted to [url=%2$s]your wall[/url]"
 
-#: include/enotify.php:185
+#: include/enotify.php:188
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr "[Friendica:Notify] %s tagged you"
 
-#: include/enotify.php:187
+#: include/enotify.php:190
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr "%1$s tagged you at %2$s"
 
-#: include/enotify.php:188
+#: include/enotify.php:191
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr "%1$s [url=%2$s]tagged you[/url]."
 
-#: include/enotify.php:199
+#: include/enotify.php:202
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr "[Friendica:Notify] %s shared a new post"
 
-#: include/enotify.php:201
+#: include/enotify.php:204
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr "%1$s shared a new post at %2$s"
 
-#: include/enotify.php:202
+#: include/enotify.php:205
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr "%1$s [url=%2$s]shared a post[/url]."
 
-#: include/enotify.php:213
+#: include/enotify.php:216
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr "[Friendica:Notify] %1$s poked you"
 
-#: include/enotify.php:215
+#: include/enotify.php:218
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr "%1$s poked you at %2$s"
 
-#: include/enotify.php:216
+#: include/enotify.php:219
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr "%1$s [url=%2$s]poked you[/url]."
 
-#: include/enotify.php:231
+#: include/enotify.php:234
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr "[Friendica:Notify] %s tagged your post"
 
-#: include/enotify.php:233
+#: include/enotify.php:236
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr "%1$s tagged your post at %2$s"
 
-#: include/enotify.php:234
+#: include/enotify.php:237
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr "%1$s tagged [url=%2$s]your post[/url]"
 
-#: include/enotify.php:245
+#: include/enotify.php:248
 msgid "[Friendica:Notify] Introduction received"
 msgstr "[Friendica:Notify] Introduction received"
 
-#: include/enotify.php:247
+#: include/enotify.php:250
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr "You've received an introduction from '%1$s' at %2$s"
 
-#: include/enotify.php:248
+#: include/enotify.php:251
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr "You've received [url=%1$s]an introduction[/url] from %2$s."
 
-#: include/enotify.php:252 include/enotify.php:295
+#: include/enotify.php:255 include/enotify.php:298
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr "You may visit their profile at %s"
 
-#: include/enotify.php:254
+#: include/enotify.php:257
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr "Please visit %s to approve or reject the introduction."
 
-#: include/enotify.php:262
+#: include/enotify.php:265
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr "[Friendica:Notify] A new person is sharing with you"
 
-#: include/enotify.php:264 include/enotify.php:265
+#: include/enotify.php:267 include/enotify.php:268
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr "%1$s is sharing with you at %2$s"
 
-#: include/enotify.php:271
+#: include/enotify.php:274
 msgid "[Friendica:Notify] You have a new follower"
 msgstr "[Friendica:Notify] You have a new follower"
 
-#: include/enotify.php:273 include/enotify.php:274
+#: include/enotify.php:276 include/enotify.php:277
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr "You have a new follower at %2$s : %1$s"
 
-#: include/enotify.php:285
+#: include/enotify.php:288
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr "[Friendica:Notify] Friend suggestion received"
 
-#: include/enotify.php:287
+#: include/enotify.php:290
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr "You've received a friend suggestion from '%1$s' at %2$s"
 
-#: include/enotify.php:288
+#: include/enotify.php:291
 #, php-format
 msgid ""
 "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 
-#: include/enotify.php:293
+#: include/enotify.php:296
 msgid "Name:"
 msgstr "Name:"
 
-#: include/enotify.php:294
+#: include/enotify.php:297
 msgid "Photo:"
 msgstr "Photo:"
 
-#: include/enotify.php:297
+#: include/enotify.php:300
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr "Please visit %s to approve or reject the suggestion."
 
-#: include/enotify.php:305 include/enotify.php:319
+#: include/enotify.php:308 include/enotify.php:322
 msgid "[Friendica:Notify] Connection accepted"
 msgstr "[Friendica:Notify] Connection accepted"
 
-#: include/enotify.php:307 include/enotify.php:321
+#: include/enotify.php:310 include/enotify.php:324
 #, php-format
 msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr "'%1$s' has accepted your connection request at %2$s"
 
-#: include/enotify.php:308 include/enotify.php:322
+#: include/enotify.php:311 include/enotify.php:325
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr "%2$s has accepted your [url=%1$s]connection request[/url]."
 
-#: include/enotify.php:312
+#: include/enotify.php:315
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and "
 "email without restriction."
 msgstr "You are now mutual friends and may exchange status updates, photos, and email without restriction."
 
-#: include/enotify.php:314
+#: include/enotify.php:317
 #, php-format
 msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr "Please visit %s if you wish to make any changes to this relationship."
 
-#: include/enotify.php:326
+#: include/enotify.php:329
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
@@ -1857,769 +2023,350 @@ msgid ""
 "automatically."
 msgstr "'%1$s' has chosen to accept you as \"Follower\". This restricts some forms of communication, such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."
 
-#: include/enotify.php:328
+#: include/enotify.php:331
 #, php-format
 msgid ""
 "'%1$s' may choose to extend this into a two-way or more permissive "
 "relationship in the future."
 msgstr "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future."
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Please visit %s  if you wish to make any changes to this relationship."
-
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica:Notify] registration request"
-
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "You've received a registration request from '%1$s' at %2$s."
-
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "You've received a [url=%1$s]registration request[/url] from %2$s."
-
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-
-#: include/enotify.php:350
+#: include/enotify.php:333
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Please visit %s to approve or reject the request."
-
-#: include/event.php:474
-msgid "all-day"
-msgstr "All-day"
-
-#: include/event.php:476
-msgid "Sun"
-msgstr "Sun"
-
-#: include/event.php:477
-msgid "Mon"
-msgstr "Mon"
-
-#: include/event.php:478
-msgid "Tue"
-msgstr "Tue"
-
-#: include/event.php:479
-msgid "Wed"
-msgstr "Wed"
-
-#: include/event.php:480
-msgid "Thu"
-msgstr "Thu"
-
-#: include/event.php:481
-msgid "Fri"
-msgstr "Fri"
-
-#: include/event.php:482
-msgid "Sat"
-msgstr "Sat"
-
-#: include/event.php:484 include/text.php:1198 mod/settings.php:981
-msgid "Sunday"
-msgstr "Sunday"
-
-#: include/event.php:485 include/text.php:1198 mod/settings.php:981
-msgid "Monday"
-msgstr "Monday"
-
-#: include/event.php:486 include/text.php:1198
-msgid "Tuesday"
-msgstr "Tuesday"
-
-#: include/event.php:487 include/text.php:1198
-msgid "Wednesday"
-msgstr "Wednesday"
-
-#: include/event.php:488 include/text.php:1198
-msgid "Thursday"
-msgstr "Thursday"
-
-#: include/event.php:489 include/text.php:1198
-msgid "Friday"
-msgstr "Friday"
-
-#: include/event.php:490 include/text.php:1198
-msgid "Saturday"
-msgstr "Saturday"
-
-#: include/event.php:492
-msgid "Jan"
-msgstr "Jan"
-
-#: include/event.php:493
-msgid "Feb"
-msgstr "Feb"
-
-#: include/event.php:494
-msgid "Mar"
-msgstr "Mar"
-
-#: include/event.php:495
-msgid "Apr"
-msgstr "Apr"
-
-#: include/event.php:496 include/event.php:509 include/text.php:1202
-msgid "May"
-msgstr "May"
-
-#: include/event.php:497
-msgid "Jun"
-msgstr "Jun"
-
-#: include/event.php:498
-msgid "Jul"
-msgstr "Jul"
-
-#: include/event.php:499
-msgid "Aug"
-msgstr "Aug"
-
-#: include/event.php:500
-msgid "Sept"
-msgstr "Sep"
-
-#: include/event.php:501
-msgid "Oct"
-msgstr "Oct"
-
-#: include/event.php:502
-msgid "Nov"
-msgstr "Nov"
-
-#: include/event.php:503
-msgid "Dec"
-msgstr "Dec"
-
-#: include/event.php:505 include/text.php:1202
-msgid "January"
-msgstr "January"
-
-#: include/event.php:506 include/text.php:1202
-msgid "February"
-msgstr "February"
-
-#: include/event.php:507 include/text.php:1202
-msgid "March"
-msgstr "March"
-
-#: include/event.php:508 include/text.php:1202
-msgid "April"
-msgstr "April"
-
-#: include/event.php:510 include/text.php:1202
-msgid "June"
-msgstr "June"
-
-#: include/event.php:511 include/text.php:1202
-msgid "July"
-msgstr "July"
-
-#: include/event.php:512 include/text.php:1202
-msgid "August"
-msgstr "August"
-
-#: include/event.php:513 include/text.php:1202
-msgid "September"
-msgstr "September"
-
-#: include/event.php:514 include/text.php:1202
-msgid "October"
-msgstr "October"
-
-#: include/event.php:515 include/text.php:1202
-msgid "November"
-msgstr "November"
-
-#: include/event.php:516 include/text.php:1202
-msgid "December"
-msgstr "December"
-
-#: include/event.php:518 mod/cal.php:278 mod/events.php:383
-msgid "today"
-msgstr "today"
-
-#: include/event.php:523
-msgid "No events to display"
-msgstr "No events to display"
-
-#: include/event.php:636
-msgid "l, F j"
-msgstr "l, F j"
-
-#: include/event.php:658
-msgid "Edit event"
-msgstr "Edit event"
-
-#: include/event.php:659
-msgid "Delete event"
-msgstr "Delete event"
-
-#: include/event.php:685 include/text.php:1600 include/text.php:1607
-msgid "link to source"
-msgstr "Link to source"
-
-#: include/event.php:939
-msgid "Export"
-msgstr "Export"
-
-#: include/event.php:940
-msgid "Export calendar as ical"
-msgstr "Export calendar as ical"
-
-#: include/event.php:941
-msgid "Export calendar as csv"
-msgstr "Export calendar as csv"
-
-#: include/features.php:65
-msgid "General Features"
-msgstr "General"
-
-#: include/features.php:67
-msgid "Multiple Profiles"
-msgstr "Multiple profiles"
-
-#: include/features.php:67
-msgid "Ability to create multiple profiles"
-msgstr "Ability to create multiple profiles"
-
-#: include/features.php:68
-msgid "Photo Location"
-msgstr "Photo location"
-
-#: include/features.php:68
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map."
-
-#: include/features.php:69
-msgid "Export Public Calendar"
-msgstr "Export public calendar"
-
-#: include/features.php:69
-msgid "Ability for visitors to download the public calendar"
-msgstr "Ability for visitors to download the public calendar"
-
-#: include/features.php:74
-msgid "Post Composition Features"
-msgstr "Post composition"
-
-#: include/features.php:75
-msgid "Post Preview"
-msgstr "Post preview"
-
-#: include/features.php:75
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Allow previewing posts and comments before publishing them"
-
-#: include/features.php:76
-msgid "Auto-mention Forums"
-msgstr "Auto-mention forums"
-
-#: include/features.php:76
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Add/Remove mention when a forum page is selected or deselected in the ACL window."
-
-#: include/features.php:81
-msgid "Network Sidebar Widgets"
-msgstr "Network sidebars"
-
-#: include/features.php:82
-msgid "Search by Date"
-msgstr "Search by date"
-
-#: include/features.php:82
-msgid "Ability to select posts by date ranges"
-msgstr "Ability to select posts by date ranges"
-
-#: include/features.php:83 include/features.php:113
-msgid "List Forums"
-msgstr "List forums"
-
-#: include/features.php:83
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Enable widget to display the forums your are connected with"
-
-#: include/features.php:84
-msgid "Group Filter"
-msgstr "Group filter"
-
-#: include/features.php:84
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Enable widget to display network posts only from selected group"
-
-#: include/features.php:85
-msgid "Network Filter"
-msgstr "Network filter"
-
-#: include/features.php:85
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Enable widget to display network posts only from selected network"
-
-#: include/features.php:86 mod/network.php:206 mod/search.php:34
-msgid "Saved Searches"
-msgstr "Saved searches"
-
-#: include/features.php:86
-msgid "Save search terms for re-use"
-msgstr "Save search terms for re-use"
-
-#: include/features.php:91
-msgid "Network Tabs"
-msgstr "Network tabs"
-
-#: include/features.php:92
-msgid "Network Personal Tab"
-msgstr "Network personal tab"
-
-#: include/features.php:92
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Enable tab to display only network posts that you've interacted with"
-
-#: include/features.php:93
-msgid "Network New Tab"
-msgstr "Network new tab"
-
-#: include/features.php:93
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Enable tab to display only new network posts (last 12 hours)"
-
-#: include/features.php:94
-msgid "Network Shared Links Tab"
-msgstr "Network shared links tab"
-
-#: include/features.php:94
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Enable tab to display only network posts with links in them"
-
-#: include/features.php:99
-msgid "Post/Comment Tools"
-msgstr "Post/Comment tools"
-
-#: include/features.php:100
-msgid "Multiple Deletion"
-msgstr "Multiple deletion"
-
-#: include/features.php:100
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Select and delete multiple posts/comments at once"
-
-#: include/features.php:101
-msgid "Edit Sent Posts"
-msgstr "Edit sent posts"
-
-#: include/features.php:101
-msgid "Edit and correct posts and comments after sending"
-msgstr "Ability to editing posts and comments after sending"
-
-#: include/features.php:102
-msgid "Tagging"
-msgstr "Tagging"
-
-#: include/features.php:102
-msgid "Ability to tag existing posts"
-msgstr "Ability to tag existing posts"
-
-#: include/features.php:103
-msgid "Post Categories"
-msgstr "Post categories"
-
-#: include/features.php:103
-msgid "Add categories to your posts"
-msgstr "Add categories to your posts"
-
-#: include/features.php:104
-msgid "Ability to file posts under folders"
-msgstr "Ability to file posts under folders"
-
-#: include/features.php:105
-msgid "Dislike Posts"
-msgstr "Dislike posts"
-
-#: include/features.php:105
-msgid "Ability to dislike posts/comments"
-msgstr "Ability to dislike posts/comments"
-
-#: include/features.php:106
-msgid "Star Posts"
-msgstr "Star posts"
-
-#: include/features.php:106
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Ability to highlight posts with a star"
-
-#: include/features.php:107
-msgid "Mute Post Notifications"
-msgstr "Mute post notifications"
-
-#: include/features.php:107
-msgid "Ability to mute notifications for a thread"
-msgstr "Ability to mute notifications for a thread"
-
-#: include/features.php:112
-msgid "Advanced Profile Settings"
-msgstr "Advanced profiles"
-
-#: include/features.php:113
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Show visitors of public community forums at the advanced profile page"
-
-#: include/follow.php:81 mod/dfrn_request.php:512
-msgid "Disallowed profile URL."
-msgstr "Disallowed profile URL."
-
-#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
-#: mod/admin.php:279 mod/admin.php:297
-msgid "Blocked domain"
-msgstr "Blocked domain"
-
-#: include/follow.php:91
-msgid "Connect URL missing."
-msgstr "Connect URL missing."
-
-#: include/follow.php:119
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "This site is not configured to allow communications with other networks."
-
-#: include/follow.php:120 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "No compatible communication protocols or feeds were discovered."
-
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
-msgstr "The profile address specified does not provide adequate information."
-
-#: include/follow.php:137
-msgid "An author or name was not found."
-msgstr "An author or name was not found."
-
-#: include/follow.php:140
-msgid "No browser URL could be matched to this address."
-msgstr "No browser URL could be matched to this address."
-
-#: include/follow.php:143
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Unable to match @-style identity address with a known protocol or email contact."
-
-#: include/follow.php:144
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: in front of address to force email check."
-
-#: include/follow.php:150
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "The profile address specified belongs to a network which has been disabled on this site."
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Please visit %s  if you wish to make any changes to this relationship."
 
-#: include/follow.php:155
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Limited profile: This person will be unable to receive direct/private messages from you."
+#: include/enotify.php:343
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica:Notify] registration request"
 
-#: include/follow.php:256
-msgid "Unable to retrieve contact information."
-msgstr "Unable to retrieve contact information."
+#: include/enotify.php:345
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "You've received a registration request from '%1$s' at %2$s."
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "A deleted group with this name has been revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."
+#: include/enotify.php:346
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "You've received a [url=%1$s]registration request[/url] from %2$s."
 
-#: include/group.php:210
-msgid "Default privacy group for new contacts"
-msgstr "Default privacy group for new contacts"
+#: include/enotify.php:350
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/group.php:243
-msgid "Everybody"
-msgstr "Everybody"
+#: include/enotify.php:353
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Please visit %s to approve or reject the request."
 
-#: include/group.php:266
-msgid "edit"
-msgstr "edit"
+#: include/message.php:14 include/message.php:168
+msgid "[no subject]"
+msgstr "[no subject]"
 
-#: include/group.php:287 mod/newmember.php:61
-msgid "Groups"
-msgstr "Groups"
+#: include/message.php:145 include/Photo.php:1075 include/Photo.php:1091
+#: include/Photo.php:1099 include/Photo.php:1124 mod/wall_upload.php:249
+#: mod/item.php:468
+msgid "Wall Photos"
+msgstr "Wall photos"
 
-#: include/group.php:289
-msgid "Edit groups"
-msgstr "Edit groups"
+#: include/nav.php:37 mod/navigation.php:21
+msgid "Nothing new here"
+msgstr "Nothing new here"
 
-#: include/group.php:291
-msgid "Edit group"
-msgstr "Edit group"
+#: include/nav.php:41 mod/navigation.php:25
+msgid "Clear notifications"
+msgstr "Clear notifications"
 
-#: include/group.php:292
-msgid "Create a new group"
-msgstr "Create new group"
+#: include/nav.php:80 view/theme/frio/theme.php:245 boot.php:862
+msgid "Logout"
+msgstr "Logout"
 
-#: include/group.php:293 mod/group.php:99 mod/group.php:196
-msgid "Group Name: "
-msgstr "Group name: "
+#: include/nav.php:80 view/theme/frio/theme.php:245
+msgid "End this session"
+msgstr "End this session"
 
-#: include/group.php:295
-msgid "Contacts not in any group"
-msgstr "Contacts not in any group"
+#: include/nav.php:83 include/identity.php:784 mod/contacts.php:648
+#: mod/contacts.php:844 view/theme/frio/theme.php:248
+msgid "Status"
+msgstr "Status"
 
-#: include/group.php:297 mod/network.php:207
-msgid "add"
-msgstr "add"
+#: include/nav.php:83 include/nav.php:163 view/theme/frio/theme.php:248
+msgid "Your posts and conversations"
+msgstr "My posts and conversations"
 
-#: include/identity.php:43
-msgid "Requested account is not available."
-msgstr "Requested account is unavailable."
+#: include/nav.php:84 include/identity.php:632 include/identity.php:759
+#: include/identity.php:792 mod/newmember.php:20 mod/profperm.php:107
+#: mod/contacts.php:650 mod/contacts.php:852 view/theme/frio/theme.php:249
+msgid "Profile"
+msgstr "Profile"
 
-#: include/identity.php:52 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Requested profile is unavailable."
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your profile page"
+msgstr "My profile page"
 
-#: include/identity.php:96 include/identity.php:319 include/identity.php:740
-msgid "Edit profile"
-msgstr "Edit profile"
+#: include/nav.php:85 include/identity.php:800 mod/fbrowser.php:33
+#: view/theme/frio/theme.php:250
+msgid "Photos"
+msgstr "Photos"
 
-#: include/identity.php:259
-msgid "Atom feed"
-msgstr "Atom feed"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your photos"
+msgstr "My photos"
 
-#: include/identity.php:290
-msgid "Manage/edit profiles"
-msgstr "Manage/Edit profiles"
+#: include/nav.php:86 include/identity.php:808 include/identity.php:811
+#: view/theme/frio/theme.php:251
+msgid "Videos"
+msgstr "Videos"
 
-#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787
-msgid "Change profile photo"
-msgstr "Change profile photo"
+#: include/nav.php:86 view/theme/frio/theme.php:251
+msgid "Your videos"
+msgstr "My videos"
 
-#: include/identity.php:296 mod/profiles.php:788
-msgid "Create New Profile"
-msgstr "Create new profile"
+#: include/nav.php:87 include/nav.php:151 include/identity.php:820
+#: include/identity.php:831 mod/cal.php:272 mod/events.php:377
+#: view/theme/frio/theme.php:252 view/theme/frio/theme.php:256
+msgid "Events"
+msgstr "Events"
 
-#: include/identity.php:306 mod/profiles.php:777
-msgid "Profile Image"
-msgstr "Profile image"
+#: include/nav.php:87 view/theme/frio/theme.php:252
+msgid "Your events"
+msgstr "My events"
 
-#: include/identity.php:309 mod/profiles.php:779
-msgid "visible to everybody"
-msgstr "Visible to everybody"
+#: include/nav.php:88
+msgid "Personal notes"
+msgstr "Personal notes"
 
-#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780
-msgid "Edit visibility"
-msgstr "Edit visibility"
+#: include/nav.php:88
+msgid "Your personal notes"
+msgstr "My personal notes"
 
-#: include/identity.php:338 include/identity.php:633 mod/directory.php:141
-#: mod/notifications.php:250
-msgid "Gender:"
-msgstr "Gender:"
+#: include/nav.php:97 mod/bookmarklet.php:14 boot.php:863
+msgid "Login"
+msgstr "Login"
 
-#: include/identity.php:341 include/identity.php:651 mod/directory.php:143
-msgid "Status:"
-msgstr "Status:"
+#: include/nav.php:97
+msgid "Sign in"
+msgstr "Sign in"
 
-#: include/identity.php:343 include/identity.php:667 mod/directory.php:145
-msgid "Homepage:"
-msgstr "Home page:"
+#: include/nav.php:107
+msgid "Home Page"
+msgstr "Home page"
 
-#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
-#: mod/directory.php:147 mod/notifications.php:246
-msgid "About:"
-msgstr "About:"
+#: include/nav.php:111 mod/register.php:291 boot.php:839
+msgid "Register"
+msgstr "Register"
 
-#: include/identity.php:347 mod/contacts.php:638
-msgid "XMPP:"
-msgstr "XMPP:"
+#: include/nav.php:111
+msgid "Create an account"
+msgstr "Create account"
 
-#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
-msgid "Network:"
-msgstr "Network:"
+#: include/nav.php:117 mod/help.php:50 view/theme/vier/theme.php:299
+msgid "Help"
+msgstr "Help"
 
-#: include/identity.php:462 include/identity.php:552
-msgid "g A l F d"
-msgstr "g A l F d"
+#: include/nav.php:117
+msgid "Help and documentation"
+msgstr "Help and documentation"
 
-#: include/identity.php:463 include/identity.php:553
-msgid "F d"
-msgstr "F d"
+#: include/nav.php:121
+msgid "Apps"
+msgstr "Apps"
 
-#: include/identity.php:514 include/identity.php:599
-msgid "[today]"
-msgstr "[today]"
+#: include/nav.php:121
+msgid "Addon applications, utilities, games"
+msgstr "Addon applications, utilities, games"
 
-#: include/identity.php:526
-msgid "Birthday Reminders"
-msgstr "Birthday reminders"
+#: include/nav.php:125
+msgid "Search site content"
+msgstr "Search site content"
 
-#: include/identity.php:527
-msgid "Birthdays this week:"
-msgstr "Birthdays this week:"
+#: include/nav.php:145 include/nav.php:147 mod/community.php:32
+msgid "Community"
+msgstr "Community"
 
-#: include/identity.php:586
-msgid "[No description]"
-msgstr "[No description]"
+#: include/nav.php:145
+msgid "Conversations on this site"
+msgstr "Public conversations on this site"
 
-#: include/identity.php:610
-msgid "Event Reminders"
-msgstr "Event reminders"
+#: include/nav.php:147
+msgid "Conversations on the network"
+msgstr "Conversations on the network"
 
-#: include/identity.php:611
-msgid "Events this week:"
-msgstr "Events this week:"
+#: include/nav.php:151 include/identity.php:823 include/identity.php:834
+#: view/theme/frio/theme.php:256
+msgid "Events and Calendar"
+msgstr "Events and calendar"
 
-#: include/identity.php:631 mod/settings.php:1286
-msgid "Full Name:"
-msgstr "Full name:"
+#: include/nav.php:154
+msgid "Directory"
+msgstr "Directory"
 
-#: include/identity.php:636
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/nav.php:154
+msgid "People directory"
+msgstr "People directory"
 
-#: include/identity.php:637
-msgid "j F"
-msgstr "j F"
+#: include/nav.php:156
+msgid "Information"
+msgstr "Information"
 
-#: include/identity.php:648
-msgid "Age:"
-msgstr "Age:"
+#: include/nav.php:156
+msgid "Information about this friendica instance"
+msgstr "Information about this Friendica instance"
 
-#: include/identity.php:659
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "for %1$d %2$s"
+#: include/nav.php:160 view/theme/frio/theme.php:255
+msgid "Conversations from your friends"
+msgstr "My friends' conversations"
 
-#: include/identity.php:663 mod/profiles.php:703
-msgid "Sexual Preference:"
-msgstr "Sexual preference:"
+#: include/nav.php:161
+msgid "Network Reset"
+msgstr "Network reset"
 
-#: include/identity.php:671 mod/profiles.php:730
-msgid "Hometown:"
-msgstr "Home town:"
+#: include/nav.php:161
+msgid "Load Network page with no filters"
+msgstr "Load network page without filters"
 
-#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
-#: mod/notifications.php:248
-msgid "Tags:"
-msgstr "Tags:"
+#: include/nav.php:168
+msgid "Friend Requests"
+msgstr "Friend requests"
 
-#: include/identity.php:679 mod/profiles.php:731
-msgid "Political Views:"
-msgstr "Political views:"
+#: include/nav.php:171 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Notifications"
 
-#: include/identity.php:683
-msgid "Religion:"
-msgstr "Religion:"
+#: include/nav.php:172
+msgid "See all notifications"
+msgstr "See all notifications"
 
-#: include/identity.php:691
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interests:"
+#: include/nav.php:173 mod/settings.php:907
+msgid "Mark as seen"
+msgstr "Mark as seen"
 
-#: include/identity.php:695 mod/profiles.php:735
-msgid "Likes:"
-msgstr "Likes:"
+#: include/nav.php:173
+msgid "Mark all system notifications seen"
+msgstr "Mark all system notifications seen"
 
-#: include/identity.php:699 mod/profiles.php:736
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: include/nav.php:177 mod/message.php:181 view/theme/frio/theme.php:257
+msgid "Messages"
+msgstr "Messages"
 
-#: include/identity.php:703
-msgid "Contact information and Social Networks:"
-msgstr "Contact information and social networks:"
+#: include/nav.php:177 view/theme/frio/theme.php:257
+msgid "Private mail"
+msgstr "Private messages"
 
-#: include/identity.php:707
-msgid "Musical interests:"
-msgstr "Musical interests:"
+#: include/nav.php:178
+msgid "Inbox"
+msgstr "Inbox"
 
-#: include/identity.php:711
-msgid "Books, literature:"
-msgstr "Books/Literature:"
+#: include/nav.php:179
+msgid "Outbox"
+msgstr "Outbox"
 
-#: include/identity.php:715
-msgid "Television:"
-msgstr "Television:"
+#: include/nav.php:180 mod/message.php:18
+msgid "New Message"
+msgstr "New Message"
 
-#: include/identity.php:719
-msgid "Film/dance/culture/entertainment:"
-msgstr "Arts, film, dance, culture, entertainment:"
+#: include/nav.php:183
+msgid "Manage"
+msgstr "Manage"
 
-#: include/identity.php:723
-msgid "Love/Romance:"
-msgstr "Love/Romance:"
+#: include/nav.php:183
+msgid "Manage other pages"
+msgstr "Manage other pages"
 
-#: include/identity.php:727
-msgid "Work/employment:"
-msgstr "Work/Employment:"
+#: include/nav.php:186 mod/settings.php:83
+msgid "Delegations"
+msgstr "Delegations"
 
-#: include/identity.php:731
-msgid "School/education:"
-msgstr "School/Education:"
+#: include/nav.php:186 mod/delegate.php:132
+msgid "Delegate Page Management"
+msgstr "Delegate page management"
 
-#: include/identity.php:736
-msgid "Forums:"
-msgstr "Forums:"
+#: include/nav.php:188 mod/newmember.php:15 mod/admin.php:1624
+#: mod/admin.php:1900 mod/settings.php:113 view/theme/frio/theme.php:258
+msgid "Settings"
+msgstr "Settings"
 
-#: include/identity.php:745 mod/events.php:506
-msgid "Basic"
-msgstr "Basic"
+#: include/nav.php:188 view/theme/frio/theme.php:258
+msgid "Account settings"
+msgstr "Account settings"
 
-#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
-#: mod/admin.php:1059
-msgid "Advanced"
-msgstr "Advanced"
+#: include/nav.php:191 include/identity.php:296
+msgid "Profiles"
+msgstr "Profiles"
 
-#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145
-msgid "Status Messages and Posts"
-msgstr "Status Messages and Posts"
+#: include/nav.php:191
+msgid "Manage/Edit Profiles"
+msgstr "Manage/Edit profiles"
 
-#: include/identity.php:780 mod/contacts.php:852
-msgid "Profile Details"
-msgstr "Profile Details"
+#: include/nav.php:194 view/theme/frio/theme.php:259
+msgid "Manage/edit friends and contacts"
+msgstr "Manage/Edit friends and contacts"
 
-#: include/identity.php:788 mod/photos.php:93
-msgid "Photo Albums"
-msgstr "Photo Albums"
+#: include/nav.php:199 mod/admin.php:197
+msgid "Admin"
+msgstr "Admin"
 
-#: include/identity.php:827 mod/notes.php:47
-msgid "Personal Notes"
-msgstr "Personal notes"
+#: include/nav.php:199
+msgid "Site setup and configuration"
+msgstr "Site setup and configuration"
 
-#: include/identity.php:830
-msgid "Only You Can See This"
-msgstr "Only you can see this."
+#: include/nav.php:202
+msgid "Navigation"
+msgstr "Navigation"
+
+#: include/nav.php:202
+msgid "Site map"
+msgstr "Site map"
 
 #: include/network.php:687
 msgid "view full size"
 msgstr "view full size"
 
-#: include/oembed.php:255
+#: include/oembed.php:256
 msgid "Embedded content"
 msgstr "Embedded content"
 
-#: include/oembed.php:263
+#: include/oembed.php:264
 msgid "Embedding disabled"
 msgstr "Embedding disabled"
 
-#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
-#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
-#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
-#: mod/photos.php:1853
-msgid "Contact Photos"
-msgstr "Contact photos"
+#: include/uimport.php:85
+msgid "Error decoding account file"
+msgstr "Error decoding account file"
+
+#: include/uimport.php:91
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Error! No version data in file! Is this a Friendica account file?"
+
+#: include/uimport.php:108 include/uimport.php:119
+msgid "Error! Cannot check nickname"
+msgstr "Error! Cannot check nickname."
+
+#: include/uimport.php:112 include/uimport.php:123
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' already exists on this server!"
+
+#: include/uimport.php:145
+msgid "User creation error"
+msgstr "User creation error"
+
+#: include/uimport.php:166
+msgid "User profile creation error"
+msgstr "User profile creation error"
+
+#: include/uimport.php:215
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contact not imported"
+msgstr[1] "%d contacts not imported"
+
+#: include/uimport.php:281
+msgid "Done. You can now login with your username and password"
+msgstr "Done. You can now login with your username and password"
 
-#: include/user.php:39 mod/settings.php:375
+#: include/user.php:39 mod/settings.php:377
 msgid "Passwords do not match. Password unchanged."
 msgstr "Passwords do not match. Password unchanged."
 
@@ -2685,24 +2432,28 @@ msgstr "SERIOUS ERROR: Generation of security keys failed."
 msgid "An error occurred during registration. Please try again."
 msgstr "An error occurred during registration. Please try again."
 
-#: include/user.php:239 view/theme/duepuntozero/config.php:43
+#: include/user.php:237 view/theme/duepuntozero/config.php:46
 msgid "default"
 msgstr "default"
 
-#: include/user.php:249
+#: include/user.php:247
 msgid "An error occurred creating your default profile. Please try again."
 msgstr "An error occurred creating your default profile. Please try again."
 
-#: include/user.php:309 include/user.php:317 include/user.php:325
-#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
-#: mod/profile_photo.php:215 mod/profile_photo.php:310
-#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187
-#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
-#: mod/photos.php:1863
+#: include/user.php:260 include/user.php:264 include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Friends"
+
+#: include/user.php:306 include/user.php:314 include/user.php:322
+#: include/api.php:3697 mod/photos.php:73 mod/photos.php:189
+#: mod/photos.php:776 mod/photos.php:1258 mod/photos.php:1279
+#: mod/photos.php:1865 mod/profile_photo.php:74 mod/profile_photo.php:82
+#: mod/profile_photo.php:90 mod/profile_photo.php:214
+#: mod/profile_photo.php:309 mod/profile_photo.php:319
 msgid "Profile Photos"
 msgstr "Profile photos"
 
-#: include/user.php:400
+#: include/user.php:397
 #, php-format
 msgid ""
 "\n"
@@ -2711,12 +2462,12 @@ msgid ""
 "\t"
 msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account is pending approval by the administrator.\n\t"
 
-#: include/user.php:410
+#: include/user.php:407
 #, php-format
 msgid "Registration at %s"
 msgstr "Registration at %s"
 
-#: include/user.php:420
+#: include/user.php:417
 #, php-format
 msgid ""
 "\n"
@@ -2725,7 +2476,7 @@ msgid ""
 "\t"
 msgstr "\n\t\tDear %1$s,\n\t\t\tThank you for registering at %2$s. Your account has been created.\n\t"
 
-#: include/user.php:424
+#: include/user.php:421
 #, php-format
 msgid ""
 "\n"
@@ -2755,16 +2506,36 @@ msgid ""
 "\t\tThank you and welcome to %2$s."
 msgstr "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3$s\n\t\t\tLogin Name:\t%1$s\n\t\t\tPassword:\t%5$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2$s."
 
-#: include/user.php:456 mod/admin.php:1308
+#: include/user.php:453 mod/admin.php:1314
 #, php-format
 msgid "Registration details for %s"
 msgstr "Registration details for %s"
 
-#: include/dbstructure.php:20
+#: include/api.php:1102
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Daily posting limit of %d posts reached. This post was rejected."
+
+#: include/api.php:1123
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Weekly posting limit of %d posts reached. This post was rejected."
+
+#: include/api.php:1144
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Monthly posting limit of %d posts reached. This post was rejected."
+
+#: include/dba.php:57 include/dba_pdo.php:75
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Cannot locate DNS info for database server '%s'"
+
+#: include/dbstructure.php:25
 msgid "There are no tables on MyISAM."
 msgstr "There are no tables on MyISAM."
 
-#: include/dbstructure.php:61
+#: include/dbstructure.php:66
 #, php-format
 msgid ""
 "\n"
@@ -2774,14 +2545,14 @@ msgid ""
 "\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
 msgstr "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid."
 
-#: include/dbstructure.php:66
+#: include/dbstructure.php:71
 #, php-format
 msgid ""
 "The error message is\n"
 "[pre]%s[/pre]"
 msgstr "The error message is\n[pre]%s[/pre]"
 
-#: include/dbstructure.php:190
+#: include/dbstructure.php:195
 #, php-format
 msgid ""
 "\n"
@@ -2789,2658 +2560,2553 @@ msgid ""
 "%s\n"
 msgstr "\nError %d occurred during database update:\n%s\n"
 
-#: include/dbstructure.php:193
+#: include/dbstructure.php:198
 msgid "Errors encountered performing database changes: "
 msgstr "Errors encountered performing database changes: "
 
-#: include/dbstructure.php:201
+#: include/dbstructure.php:206
 msgid ": Database update"
 msgstr ": Database update"
 
-#: include/dbstructure.php:425
+#: include/dbstructure.php:438
 #, php-format
 msgid "%s: updating %s table."
 msgstr "%s: updating %s table."
 
-#: include/dfrn.php:1251
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\'s birthday"
-
-#: include/diaspora.php:2137
+#: include/diaspora.php:2214
 msgid "Sharing notification from Diaspora network"
 msgstr "Sharing notification from Diaspora network"
 
-#: include/diaspora.php:3146
+#: include/diaspora.php:3234
 msgid "Attachments:"
 msgstr "Attachments:"
 
-#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
-msgid "[Name Withheld]"
-msgstr "[Name Withheld]"
-
-#: include/items.php:2123 mod/display.php:103 mod/display.php:279
-#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
-#: mod/admin.php:1565 mod/admin.php:1816
-msgid "Item not found."
-msgstr "Item not found."
-
-#: include/items.php:2162
-msgid "Do you really want to delete this item?"
-msgstr "Do you really want to delete this item?"
-
-#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
-#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
-#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171
-#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188
-#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203
-#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235
-#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
-msgid "Yes"
-msgstr "Yes"
-
-#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
-#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
-#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
-#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
-#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
-#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
-#: mod/profile_photo.php:180 mod/profile_photo.php:191
-#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9
-#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
-#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
-#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
-#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
-#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
-#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
-#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
-#: mod/item.php:208 mod/notifications.php:71 index.php:407
-msgid "Permission denied."
-msgstr "Permission denied."
-
-#: include/items.php:2444
-msgid "Archives"
-msgstr "Archives"
-
-#: include/ostatus.php:1947
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s is now following %s."
+#: include/identity.php:45
+msgid "Requested account is not available."
+msgstr "Requested account is unavailable."
 
-#: include/ostatus.php:1948
-msgid "following"
-msgstr "following"
+#: include/identity.php:54 mod/profile.php:22
+msgid "Requested profile is not available."
+msgstr "Requested profile is unavailable."
 
-#: include/ostatus.php:1951
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s stopped following %s."
+#: include/identity.php:98 include/identity.php:325 include/identity.php:755
+msgid "Edit profile"
+msgstr "Edit profile"
 
-#: include/ostatus.php:1952
-msgid "stopped following"
-msgstr "stopped following"
+#: include/identity.php:265
+msgid "Atom feed"
+msgstr "Atom feed"
 
-#: include/text.php:307
-msgid "newer"
-msgstr "Later posts"
+#: include/identity.php:296
+msgid "Manage/edit profiles"
+msgstr "Manage/Edit profiles"
 
-#: include/text.php:308
-msgid "older"
-msgstr "Earlier posts"
+#: include/identity.php:301 include/identity.php:327 mod/profiles.php:790
+msgid "Change profile photo"
+msgstr "Change profile photo"
 
-#: include/text.php:313
-msgid "first"
-msgstr "first"
+#: include/identity.php:302 mod/profiles.php:791
+msgid "Create New Profile"
+msgstr "Create new profile"
 
-#: include/text.php:314
-msgid "prev"
-msgstr "prev"
+#: include/identity.php:312 mod/profiles.php:780
+msgid "Profile Image"
+msgstr "Profile image"
 
-#: include/text.php:348
-msgid "next"
-msgstr "next"
+#: include/identity.php:315 mod/profiles.php:782
+msgid "visible to everybody"
+msgstr "Visible to everybody"
 
-#: include/text.php:349
-msgid "last"
-msgstr "last"
+#: include/identity.php:316 mod/profiles.php:687 mod/profiles.php:783
+msgid "Edit visibility"
+msgstr "Edit visibility"
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr "Loading more entries..."
+#: include/identity.php:344 include/identity.php:644 mod/directory.php:137
+#: mod/notifications.php:252
+msgid "Gender:"
+msgstr "Gender:"
 
-#: include/text.php:404
-msgid "The end"
-msgstr "The end"
+#: include/identity.php:347 include/identity.php:665 mod/directory.php:139
+msgid "Status:"
+msgstr "Status:"
 
-#: include/text.php:955
-msgid "No contacts"
-msgstr "No contacts"
+#: include/identity.php:349 include/identity.php:682 mod/directory.php:141
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/text.php:980
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacts"
+#: include/identity.php:351 include/identity.php:702 mod/directory.php:143
+#: mod/notifications.php:248 mod/contacts.php:643
+msgid "About:"
+msgstr "About:"
 
-#: include/text.php:993
-msgid "View Contacts"
-msgstr "View contacts"
+#: include/identity.php:353 mod/contacts.php:641
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
-msgid "Save"
-msgstr "Save"
+#: include/identity.php:439 mod/notifications.php:260 mod/contacts.php:58
+msgid "Network:"
+msgstr "Network:"
 
-#: include/text.php:1144
-msgid "poke"
-msgstr "poke"
+#: include/identity.php:468 include/identity.php:558
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: include/text.php:1144
-msgid "poked"
-msgstr "poked"
+#: include/identity.php:469 include/identity.php:559
+msgid "d"
+msgstr "d"
 
-#: include/text.php:1145
-msgid "ping"
-msgstr "ping"
+#: include/identity.php:520 include/identity.php:609
+msgid "[today]"
+msgstr "[today]"
 
-#: include/text.php:1145
-msgid "pinged"
-msgstr "pinged"
+#: include/identity.php:532
+msgid "Birthday Reminders"
+msgstr "Birthday reminders"
 
-#: include/text.php:1146
-msgid "prod"
-msgstr "prod"
+#: include/identity.php:533
+msgid "Birthdays this week:"
+msgstr "Birthdays this week:"
 
-#: include/text.php:1146
-msgid "prodded"
-msgstr "prodded"
+#: include/identity.php:595
+msgid "[No description]"
+msgstr "[No description]"
 
-#: include/text.php:1147
-msgid "slap"
-msgstr "slap"
+#: include/identity.php:620
+msgid "Event Reminders"
+msgstr "Event reminders"
 
-#: include/text.php:1147
-msgid "slapped"
-msgstr "slapped"
+#: include/identity.php:621
+msgid "Events this week:"
+msgstr "Events this week:"
 
-#: include/text.php:1148
-msgid "finger"
-msgstr "finger"
+#: include/identity.php:641 mod/settings.php:1287
+msgid "Full Name:"
+msgstr "Full name:"
 
-#: include/text.php:1148
-msgid "fingered"
-msgstr "fingered"
+#: include/identity.php:648
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/text.php:1149
-msgid "rebuff"
-msgstr "rebuff"
+#: include/identity.php:649
+msgid "j F"
+msgstr "j F"
 
-#: include/text.php:1149
-msgid "rebuffed"
-msgstr "rebuffed"
+#: include/identity.php:661
+msgid "Age:"
+msgstr "Age:"
 
-#: include/text.php:1163
-msgid "happy"
-msgstr "happy"
+#: include/identity.php:674
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "for %1$d %2$s"
 
-#: include/text.php:1164
-msgid "sad"
-msgstr "sad"
+#: include/identity.php:678 mod/profiles.php:706
+msgid "Sexual Preference:"
+msgstr "Sexual preference:"
 
-#: include/text.php:1165
-msgid "mellow"
-msgstr "mellow"
+#: include/identity.php:686 mod/profiles.php:733
+msgid "Hometown:"
+msgstr "Home town:"
 
-#: include/text.php:1166
-msgid "tired"
-msgstr "tired"
+#: include/identity.php:690 mod/follow.php:139 mod/notifications.php:250
+#: mod/contacts.php:645
+msgid "Tags:"
+msgstr "Tags:"
 
-#: include/text.php:1167
-msgid "perky"
-msgstr "perky"
+#: include/identity.php:694 mod/profiles.php:734
+msgid "Political Views:"
+msgstr "Political views:"
 
-#: include/text.php:1168
-msgid "angry"
-msgstr "angry"
+#: include/identity.php:698
+msgid "Religion:"
+msgstr "Religion:"
 
-#: include/text.php:1169
-msgid "stupified"
-msgstr "stupified"
+#: include/identity.php:706
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interests:"
 
-#: include/text.php:1170
-msgid "puzzled"
-msgstr "puzzled"
+#: include/identity.php:710 mod/profiles.php:738
+msgid "Likes:"
+msgstr "Likes:"
 
-#: include/text.php:1171
-msgid "interested"
-msgstr "interested"
+#: include/identity.php:714 mod/profiles.php:739
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: include/text.php:1172
-msgid "bitter"
-msgstr "bitter"
+#: include/identity.php:718
+msgid "Contact information and Social Networks:"
+msgstr "Contact information and social networks:"
 
-#: include/text.php:1173
-msgid "cheerful"
-msgstr "cheerful"
+#: include/identity.php:722
+msgid "Musical interests:"
+msgstr "Musical interests:"
 
-#: include/text.php:1174
-msgid "alive"
-msgstr "alive"
+#: include/identity.php:726
+msgid "Books, literature:"
+msgstr "Books/Literature:"
 
-#: include/text.php:1175
-msgid "annoyed"
-msgstr "annoyed"
+#: include/identity.php:730
+msgid "Television:"
+msgstr "Television:"
 
-#: include/text.php:1176
-msgid "anxious"
-msgstr "anxious"
+#: include/identity.php:734
+msgid "Film/dance/culture/entertainment:"
+msgstr "Arts, film, dance, culture, entertainment:"
 
-#: include/text.php:1177
-msgid "cranky"
-msgstr "cranky"
+#: include/identity.php:738
+msgid "Love/Romance:"
+msgstr "Love/Romance:"
 
-#: include/text.php:1178
-msgid "disturbed"
-msgstr "disturbed"
+#: include/identity.php:742
+msgid "Work/employment:"
+msgstr "Work/Employment:"
 
-#: include/text.php:1179
-msgid "frustrated"
-msgstr "frustrated"
+#: include/identity.php:746
+msgid "School/education:"
+msgstr "School/Education:"
 
-#: include/text.php:1180
-msgid "motivated"
-msgstr "motivated"
+#: include/identity.php:751
+msgid "Forums:"
+msgstr "Forums:"
 
-#: include/text.php:1181
-msgid "relaxed"
-msgstr "relaxed"
+#: include/identity.php:760 mod/events.php:509
+msgid "Basic"
+msgstr "Basic"
 
-#: include/text.php:1182
-msgid "surprised"
-msgstr "surprised"
+#: include/identity.php:761 mod/events.php:510 mod/admin.php:1065
+#: mod/contacts.php:881
+msgid "Advanced"
+msgstr "Advanced"
 
-#: include/text.php:1392 mod/videos.php:386
-msgid "View Video"
-msgstr "View video"
+#: include/identity.php:787 mod/follow.php:147 mod/contacts.php:847
+msgid "Status Messages and Posts"
+msgstr "Status Messages and Posts"
 
-#: include/text.php:1424
-msgid "bytes"
-msgstr "bytes"
+#: include/identity.php:795 mod/contacts.php:855
+msgid "Profile Details"
+msgstr "Profile Details"
 
-#: include/text.php:1456 include/text.php:1468
-msgid "Click to open/close"
-msgstr "Click to open/close"
+#: include/identity.php:803 mod/photos.php:95
+msgid "Photo Albums"
+msgstr "Photo Albums"
 
-#: include/text.php:1594
-msgid "View on separate page"
-msgstr "View on separate page"
+#: include/identity.php:842 mod/notes.php:49
+msgid "Personal Notes"
+msgstr "Personal notes"
 
-#: include/text.php:1595
-msgid "view on separate page"
-msgstr "view on separate page"
+#: include/identity.php:845
+msgid "Only You Can See This"
+msgstr "Only you can see this."
 
-#: include/text.php:1874
-msgid "activity"
-msgstr "activity"
+#: include/items.php:1736 mod/dfrn_confirm.php:738 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
+msgstr "[Name Withheld]"
 
-#: include/text.php:1876 mod/content.php:623 object/Item.php:419
-#: object/Item.php:431
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "comment"
-msgstr[1] "comments"
+#: include/items.php:2121 mod/display.php:105 mod/display.php:280
+#: mod/display.php:485 mod/notice.php:17 mod/viewsrc.php:16 mod/admin.php:248
+#: mod/admin.php:1571 mod/admin.php:1822
+msgid "Item not found."
+msgstr "Item not found."
 
-#: include/text.php:1877
-msgid "post"
-msgstr "post"
+#: include/items.php:2160
+msgid "Do you really want to delete this item?"
+msgstr "Do you really want to delete this item?"
 
-#: include/text.php:2045
-msgid "Item filed"
-msgstr "Item filed"
+#: include/items.php:2162 mod/api.php:107 mod/follow.php:115
+#: mod/message.php:208 mod/register.php:247 mod/suggest.php:31
+#: mod/dfrn_request.php:880 mod/contacts.php:455 mod/profiles.php:643
+#: mod/profiles.php:646 mod/profiles.php:673 mod/settings.php:1172
+#: mod/settings.php:1178 mod/settings.php:1185 mod/settings.php:1189
+#: mod/settings.php:1194 mod/settings.php:1199 mod/settings.php:1204
+#: mod/settings.php:1209 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238 mod/settings.php:1239
+msgid "Yes"
+msgstr "Yes"
 
-#: mod/allfriends.php:46
-msgid "No friends to display."
-msgstr "No friends to display."
+#: include/items.php:2309 mod/allfriends.php:14 mod/api.php:28 mod/api.php:33
+#: mod/attach.php:35 mod/cal.php:301 mod/common.php:20 mod/crepair.php:105
+#: mod/delegate.php:14 mod/dfrn_confirm.php:63 mod/dirfind.php:15
+#: mod/display.php:482 mod/editpost.php:12 mod/events.php:188
+#: mod/follow.php:13 mod/follow.php:76 mod/follow.php:160 mod/fsuggest.php:80
+#: mod/group.php:20 mod/invite.php:17 mod/invite.php:105 mod/manage.php:103
+#: mod/message.php:48 mod/message.php:173 mod/mood.php:116 mod/network.php:7
+#: mod/nogroup.php:29 mod/notes.php:25 mod/notifications.php:73
+#: mod/ostatus_subscribe.php:11 mod/photos.php:168 mod/photos.php:1111
+#: mod/poke.php:155 mod/register.php:44 mod/repair_ostatus.php:11
+#: mod/suggest.php:60 mod/viewcontacts.php:49 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/wall_upload.php:101 mod/wall_upload.php:104
+#: mod/wallmessage.php:11 mod/wallmessage.php:35 mod/wallmessage.php:75
+#: mod/wallmessage.php:99 mod/item.php:197 mod/item.php:209 mod/regmod.php:106
+#: mod/uimport.php:26 mod/contacts.php:363 mod/profile_photo.php:19
+#: mod/profile_photo.php:179 mod/profile_photo.php:190
+#: mod/profile_photo.php:203 mod/profiles.php:172 mod/profiles.php:610
+#: mod/settings.php:24 mod/settings.php:132 mod/settings.php:669 index.php:410
+msgid "Permission denied."
+msgstr "Permission denied."
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Authorize application connection"
+#: include/items.php:2426
+msgid "Archives"
+msgstr "Archives"
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Return to your app and insert this security code:"
+#: include/ostatus.php:1962
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s is now following %s."
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Please login to continue."
+#: include/ostatus.php:1963
+msgid "following"
+msgstr "following"
 
-#: mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?"
+#: include/ostatus.php:1966
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s stopped following %s."
 
-#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
-#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
-#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
-#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
-#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238
-msgid "No"
-msgstr "No"
+#: include/ostatus.php:1967
+msgid "stopped following"
+msgstr "stopped following"
 
-#: mod/apps.php:7 index.php:254
-msgid "You must be logged in to use addons. "
-msgstr "You must be logged in to use addons. "
+#: include/plugin.php:531 include/plugin.php:533
+msgid "Click here to upgrade."
+msgstr "Click here to upgrade."
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Applications"
+#: include/plugin.php:539
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "This action exceeds the limits set by your subscription plan."
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "No installed applications."
+#: include/plugin.php:544
+msgid "This action is not available under your subscription plan."
+msgstr "This action is not available under your subscription plan."
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Item not available."
+#: include/profile_selectors.php:6
+msgid "Male"
+msgstr "Male"
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Item was not found."
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "Female"
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "The post was created"
+#: include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Currently Male"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "No contacts in common."
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Currently Female"
 
-#: mod/common.php:141 mod/contacts.php:871
-msgid "Common Friends"
-msgstr "Common friends"
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Mostly Male"
 
-#: mod/contacts.php:134
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contact edited."
-msgstr[1] "%d contacts edited."
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Mostly Female"
 
-#: mod/contacts.php:169 mod/contacts.php:378
-msgid "Could not access contact record."
-msgstr "Could not access contact record."
+#: include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: mod/contacts.php:183
-msgid "Could not locate selected profile."
-msgstr "Could not locate selected profile."
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: mod/contacts.php:216
-msgid "Contact updated."
-msgstr "Contact updated."
+#: include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexual"
 
-#: mod/contacts.php:218 mod/dfrn_request.php:593
-msgid "Failed to update contact record."
-msgstr "Failed to update contact record."
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
 
-#: mod/contacts.php:399
-msgid "Contact has been blocked"
-msgstr "Contact has been blocked"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: mod/contacts.php:399
-msgid "Contact has been unblocked"
-msgstr "Contact has been unblocked"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-specific"
 
-#: mod/contacts.php:410
-msgid "Contact has been ignored"
-msgstr "Contact has been ignored"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "Other"
 
-#: mod/contacts.php:410
-msgid "Contact has been unignored"
-msgstr "Contact has been unignored"
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "Males"
 
-#: mod/contacts.php:422
-msgid "Contact has been archived"
-msgstr "Contact has been archived"
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "Females"
 
-#: mod/contacts.php:422
-msgid "Contact has been unarchived"
-msgstr "Contact has been unarchived"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: mod/contacts.php:447
-msgid "Drop contact"
-msgstr "Drop contact"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbian"
 
-#: mod/contacts.php:450 mod/contacts.php:809
-msgid "Do you really want to delete this contact?"
-msgstr "Do you really want to delete this contact?"
+#: include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "No Preference"
 
-#: mod/contacts.php:469
-msgid "Contact has been removed."
-msgstr "Contact has been removed."
+#: include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexual"
 
-#: mod/contacts.php:506
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "You are mutual friends with %s"
+#: include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Auto-sexual"
 
-#: mod/contacts.php:510
-#, php-format
-msgid "You are sharing with %s"
-msgstr "You are sharing with %s"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: mod/contacts.php:515
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s is sharing with you"
+#: include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Virgin"
 
-#: mod/contacts.php:535
-msgid "Private communications are not available for this contact."
-msgstr "Private communications are not available for this contact."
+#: include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: mod/contacts.php:538 mod/admin.php:978
-msgid "Never"
-msgstr "Never"
+#: include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: mod/contacts.php:542
-msgid "(Update was successful)"
-msgstr "(Update was successful)"
+#: include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: mod/contacts.php:542
-msgid "(Update was not successful)"
-msgstr "(Update was not successful)"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Asexual"
 
-#: mod/contacts.php:544 mod/contacts.php:972
-msgid "Suggest friends"
-msgstr "Suggest friends"
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: mod/contacts.php:548
-#, php-format
-msgid "Network type: %s"
-msgstr "Network type: %s"
+#: include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Lonely"
 
-#: mod/contacts.php:561
-msgid "Communications lost with this contact!"
-msgstr "Communications lost with this contact!"
+#: include/profile_selectors.php:42
+msgid "Available"
+msgstr "Available"
 
-#: mod/contacts.php:564
-msgid "Fetch further information for feeds"
-msgstr "Fetch further information for feeds"
+#: include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Unavailable"
 
-#: mod/contacts.php:565 mod/admin.php:987
-msgid "Disabled"
-msgstr "Disabled"
+#: include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Having a crush"
 
-#: mod/contacts.php:565
-msgid "Fetch information"
-msgstr "Fetch information"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Infatuated"
 
-#: mod/contacts.php:565
-msgid "Fetch information and keywords"
-msgstr "Fetch information and keywords"
+#: include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: mod/contacts.php:583
-msgid "Contact"
-msgstr "Contact"
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Unfaithful"
 
-#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
-#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
-#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
-#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
-#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
-#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
-#: mod/install.php:242 mod/install.php:282 object/Item.php:705
-#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
-#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
-msgid "Submit"
-msgstr "Submit"
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sex addict"
 
-#: mod/contacts.php:586
-msgid "Profile Visibility"
-msgstr "Profile visibility"
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Friends with benefits"
 
-#: mod/contacts.php:587
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Please choose the profile you would like to display to %s when viewing your profile securely."
+#: include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: mod/contacts.php:588
-msgid "Contact Information / Notes"
-msgstr "Personal note"
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Engaged"
 
-#: mod/contacts.php:589
-msgid "Edit contact notes"
-msgstr "Edit contact notes"
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "Married"
 
-#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
-#: mod/viewcontacts.php:102
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visit %s's profile [%s]"
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Imaginarily married"
 
-#: mod/contacts.php:595
-msgid "Block/Unblock contact"
-msgstr "Block/Unblock contact"
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: mod/contacts.php:596
-msgid "Ignore contact"
-msgstr "Ignore contact"
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Cohabiting"
 
-#: mod/contacts.php:597
-msgid "Repair URL settings"
-msgstr "Repair URL settings"
+#: include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Common law spouse"
 
-#: mod/contacts.php:598
-msgid "View conversations"
-msgstr "View conversations"
+#: include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Happy"
 
-#: mod/contacts.php:604
-msgid "Last update:"
-msgstr "Last update:"
+#: include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Not looking"
 
-#: mod/contacts.php:606
-msgid "Update public posts"
-msgstr "Update public posts"
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: mod/contacts.php:608 mod/contacts.php:982
-msgid "Update now"
-msgstr "Update now"
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrayed"
 
-#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1510
-msgid "Unblock"
-msgstr "Unblock"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separated"
 
-#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1509
-msgid "Block"
-msgstr "Block"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstable"
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-msgid "Unignore"
-msgstr "Unignore"
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorced"
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:263
-msgid "Ignore"
-msgstr "Ignore"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Imaginarily divorced"
 
-#: mod/contacts.php:618
-msgid "Currently blocked"
-msgstr "Currently blocked"
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Widowed"
 
-#: mod/contacts.php:619
-msgid "Currently ignored"
-msgstr "Currently ignored"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Uncertain"
 
-#: mod/contacts.php:620
-msgid "Currently archived"
-msgstr "Currently archived"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "It's complicated"
 
-#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
-msgid "Hide this contact from others"
-msgstr "Hide this contact from others"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Don't care"
 
-#: mod/contacts.php:621
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Replies/Likes to your public posts <strong>may</strong> still be visible"
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Ask me"
 
-#: mod/contacts.php:622
-msgid "Notification for new posts"
-msgstr "Notification for new posts"
+#: mod/allfriends.php:48
+msgid "No friends to display."
+msgstr "No friends to display."
 
-#: mod/contacts.php:622
-msgid "Send a notification of every new post of this contact"
-msgstr "Send notification for every new post from this contact"
+#: mod/api.php:78 mod/api.php:104
+msgid "Authorize application connection"
+msgstr "Authorize application connection"
 
-#: mod/contacts.php:625
-msgid "Blacklisted keywords"
-msgstr "Blacklisted keywords"
+#: mod/api.php:79
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Return to your app and insert this security code:"
 
-#: mod/contacts.php:625
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
+#: mod/api.php:91
+msgid "Please login to continue."
+msgstr "Please login to continue."
 
-#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
-msgid "Profile URL"
-msgstr "Profile URL:"
+#: mod/api.php:106
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Do you want to authorize this application to access your posts and contacts and create new posts for you?"
 
-#: mod/contacts.php:643
-msgid "Actions"
-msgstr "Actions"
+#: mod/api.php:108 mod/follow.php:115 mod/register.php:248
+#: mod/dfrn_request.php:880 mod/profiles.php:643 mod/profiles.php:647
+#: mod/profiles.php:673 mod/settings.php:1172 mod/settings.php:1178
+#: mod/settings.php:1185 mod/settings.php:1189 mod/settings.php:1194
+#: mod/settings.php:1199 mod/settings.php:1204 mod/settings.php:1209
+#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
+#: mod/settings.php:1238 mod/settings.php:1239
+msgid "No"
+msgstr "No"
 
-#: mod/contacts.php:646
-msgid "Contact Settings"
-msgstr "Notification and privacy "
+#: mod/apps.php:9 index.php:257
+msgid "You must be logged in to use addons. "
+msgstr "You must be logged in to use addons. "
 
-#: mod/contacts.php:692
-msgid "Suggestions"
-msgstr "Suggestions"
+#: mod/apps.php:14
+msgid "Applications"
+msgstr "Applications"
 
-#: mod/contacts.php:695
-msgid "Suggest potential friends"
-msgstr "Suggest potential friends"
+#: mod/apps.php:17
+msgid "No installed applications."
+msgstr "No installed applications."
 
-#: mod/contacts.php:700 mod/group.php:212
-msgid "All Contacts"
-msgstr "All contacts"
+#: mod/attach.php:10
+msgid "Item not available."
+msgstr "Item not available."
 
-#: mod/contacts.php:703
-msgid "Show all contacts"
-msgstr "Show all contacts"
+#: mod/attach.php:22
+msgid "Item was not found."
+msgstr "Item was not found."
 
-#: mod/contacts.php:708
-msgid "Unblocked"
-msgstr "Unblocked"
+#: mod/babel.php:18
+msgid "Source (bbcode) text:"
+msgstr "Source (bbcode) text:"
 
-#: mod/contacts.php:711
-msgid "Only show unblocked contacts"
-msgstr "Only show unblocked contacts"
+#: mod/babel.php:25
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Source (Diaspora) text to convert to BBcode:"
 
-#: mod/contacts.php:717
-msgid "Blocked"
-msgstr "Blocked"
+#: mod/babel.php:33
+msgid "Source input: "
+msgstr "Source input: "
 
-#: mod/contacts.php:720
-msgid "Only show blocked contacts"
-msgstr "Only show blocked contacts"
+#: mod/babel.php:37
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
 
-#: mod/contacts.php:726
-msgid "Ignored"
-msgstr "Ignored"
+#: mod/babel.php:41
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: mod/contacts.php:729
-msgid "Only show ignored contacts"
-msgstr "Only show ignored contacts"
+#: mod/babel.php:45
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: mod/contacts.php:735
-msgid "Archived"
-msgstr "Archived"
+#: mod/babel.php:49
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: mod/contacts.php:738
-msgid "Only show archived contacts"
-msgstr "Only show archived contacts"
+#: mod/babel.php:53
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: mod/contacts.php:744
-msgid "Hidden"
-msgstr "Hidden"
+#: mod/babel.php:57
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: mod/contacts.php:747
-msgid "Only show hidden contacts"
-msgstr "Only show hidden contacts"
+#: mod/babel.php:61
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: mod/contacts.php:804
-msgid "Search your contacts"
-msgstr "Search your contacts"
+#: mod/babel.php:67
+msgid "Source input (Diaspora format): "
+msgstr "Source input (Diaspora format): "
 
-#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227
-#, php-format
-msgid "Results for: %s"
-msgstr "Results for: %s"
+#: mod/babel.php:71
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
-msgid "Update"
-msgstr "Update"
+#: mod/bookmarklet.php:43
+msgid "The post was created"
+msgstr "The post was created"
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Archive"
-msgstr "Archive"
+#: mod/cal.php:145 mod/display.php:329 mod/profile.php:156
+msgid "Access to this profile has been restricted."
+msgstr "Access to this profile has been restricted."
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Unarchive"
-msgstr "Unarchive"
+#: mod/cal.php:273 mod/events.php:378
+msgid "View"
+msgstr "View"
 
-#: mod/contacts.php:818
-msgid "Batch Actions"
-msgstr "Batch actions"
+#: mod/cal.php:274 mod/events.php:380
+msgid "Previous"
+msgstr "Previous"
 
-#: mod/contacts.php:864
-msgid "View all contacts"
-msgstr "View all contacts"
+#: mod/cal.php:275 mod/events.php:381 mod/install.php:203
+msgid "Next"
+msgstr "Next"
 
-#: mod/contacts.php:874
-msgid "View all common friends"
-msgstr "View all common friends"
+#: mod/cal.php:284 mod/events.php:390
+msgid "list"
+msgstr "List"
 
-#: mod/contacts.php:881
-msgid "Advanced Contact Settings"
-msgstr "Advanced contact settings"
+#: mod/cal.php:294
+msgid "User not found"
+msgstr "User not found"
 
-#: mod/contacts.php:915
-msgid "Mutual Friendship"
-msgstr "Mutual friendship"
+#: mod/cal.php:310
+msgid "This calendar format is not supported"
+msgstr "This calendar format is not supported"
 
-#: mod/contacts.php:919
-msgid "is a fan of yours"
-msgstr "is a fan of yours"
+#: mod/cal.php:312
+msgid "No exportable data found"
+msgstr "No exportable data found"
 
-#: mod/contacts.php:923
-msgid "you are a fan of"
-msgstr "I follow them"
+#: mod/cal.php:327
+msgid "calendar"
+msgstr "calendar"
 
-#: mod/contacts.php:939 mod/nogroup.php:44
-msgid "Edit contact"
-msgstr "Edit contact"
+#: mod/common.php:93
+msgid "No contacts in common."
+msgstr "No contacts in common."
 
-#: mod/contacts.php:993
-msgid "Toggle Blocked status"
-msgstr "Toggle blocked status"
+#: mod/common.php:143 mod/contacts.php:874
+msgid "Common Friends"
+msgstr "Common friends"
 
-#: mod/contacts.php:1001
-msgid "Toggle Ignored status"
-msgstr "Toggle ignored status"
+#: mod/community.php:18 mod/directory.php:33 mod/display.php:201
+#: mod/photos.php:981 mod/search.php:96 mod/search.php:102 mod/videos.php:200
+#: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/dfrn_request.php:804
+#: mod/probe.php:9
+msgid "Public access denied."
+msgstr "Public access denied."
 
-#: mod/contacts.php:1009
-msgid "Toggle Archive status"
-msgstr "Toggle archive status"
+#: mod/community.php:23
+msgid "Not available."
+msgstr "Not available."
 
-#: mod/contacts.php:1017
-msgid "Delete contact"
-msgstr "Delete contact"
+#: mod/community.php:50 mod/search.php:222
+msgid "No results."
+msgstr "No results."
 
-#: mod/content.php:119 mod/network.php:475
+#: mod/content.php:120 mod/network.php:478
 msgid "No such group"
 msgstr "No such group"
 
-#: mod/content.php:130 mod/group.php:213 mod/network.php:502
+#: mod/content.php:131 mod/group.php:214 mod/network.php:505
 msgid "Group is empty"
 msgstr "Group is empty"
 
-#: mod/content.php:135 mod/network.php:506
+#: mod/content.php:136 mod/network.php:509
 #, php-format
 msgid "Group: %s"
 msgstr "Group: %s"
 
-#: mod/content.php:325 object/Item.php:96
+#: mod/content.php:326 object/Item.php:96
 msgid "This entry was edited"
 msgstr "This entry was edited"
 
-#: mod/content.php:621 object/Item.php:417
+#: mod/content.php:622 object/Item.php:414
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] "%d comment"
 msgstr[1] "%d comments:"
 
-#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117
+#: mod/content.php:639 mod/photos.php:1431 object/Item.php:117
 msgid "Private Message"
 msgstr "Private message"
 
-#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274
+#: mod/content.php:703 mod/photos.php:1627 object/Item.php:271
 msgid "I like this (toggle)"
 msgstr "I like this (toggle)"
 
-#: mod/content.php:702 object/Item.php:274
+#: mod/content.php:703 object/Item.php:271
 msgid "like"
 msgstr "Like"
 
-#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275
+#: mod/content.php:704 mod/photos.php:1628 object/Item.php:272
 msgid "I don't like this (toggle)"
 msgstr "I don't like this (toggle)"
 
-#: mod/content.php:703 object/Item.php:275
+#: mod/content.php:704 object/Item.php:272
 msgid "dislike"
 msgstr "Dislike"
 
-#: mod/content.php:705 object/Item.php:278
+#: mod/content.php:706 object/Item.php:275
 msgid "Share this"
 msgstr "Share this"
 
-#: mod/content.php:705 object/Item.php:278
+#: mod/content.php:706 object/Item.php:275
 msgid "share"
 msgstr "Share"
 
-#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685
-#: mod/photos.php:1765 object/Item.php:702
+#: mod/content.php:726 mod/photos.php:1645 mod/photos.php:1687
+#: mod/photos.php:1767 object/Item.php:699
 msgid "This is you"
 msgstr "This is me"
 
-#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645
-#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392
-#: object/Item.php:704
+#: mod/content.php:728 mod/content.php:951 mod/photos.php:1647
+#: mod/photos.php:1689 mod/photos.php:1769 object/Item.php:389
+#: object/Item.php:701
 msgid "Comment"
 msgstr "Comment"
 
-#: mod/content.php:729 object/Item.php:706
+#: mod/content.php:729 mod/crepair.php:159 mod/events.php:508
+#: mod/fsuggest.php:109 mod/install.php:244 mod/install.php:284
+#: mod/invite.php:144 mod/localtime.php:46 mod/manage.php:156
+#: mod/message.php:340 mod/message.php:523 mod/mood.php:139
+#: mod/photos.php:1143 mod/photos.php:1273 mod/photos.php:1599
+#: mod/photos.php:1648 mod/photos.php:1690 mod/photos.php:1770
+#: mod/poke.php:204 mod/contacts.php:588 mod/profiles.php:684
+#: object/Item.php:702 view/theme/duepuntozero/config.php:64
+#: view/theme/frio/config.php:67 view/theme/quattro/config.php:70
+#: view/theme/vier/config.php:113
+msgid "Submit"
+msgstr "Submit"
+
+#: mod/content.php:730 object/Item.php:703
 msgid "Bold"
 msgstr "Bold"
 
-#: mod/content.php:730 object/Item.php:707
+#: mod/content.php:731 object/Item.php:704
 msgid "Italic"
 msgstr "Italic"
 
-#: mod/content.php:731 object/Item.php:708
+#: mod/content.php:732 object/Item.php:705
 msgid "Underline"
 msgstr "Underline"
 
-#: mod/content.php:732 object/Item.php:709
+#: mod/content.php:733 object/Item.php:706
 msgid "Quote"
 msgstr "Quote"
 
-#: mod/content.php:733 object/Item.php:710
+#: mod/content.php:734 object/Item.php:707
 msgid "Code"
 msgstr "Code"
 
-#: mod/content.php:734 object/Item.php:711
+#: mod/content.php:735 object/Item.php:708
 msgid "Image"
 msgstr "Image"
 
-#: mod/content.php:735 object/Item.php:712
+#: mod/content.php:736 object/Item.php:709
 msgid "Link"
 msgstr "Link"
 
-#: mod/content.php:736 object/Item.php:713
+#: mod/content.php:737 object/Item.php:710
 msgid "Video"
 msgstr "Video"
 
-#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
+#: mod/content.php:747 mod/settings.php:744 object/Item.php:122
 #: object/Item.php:124
 msgid "Edit"
 msgstr "Edit"
 
-#: mod/content.php:772 object/Item.php:238
+#: mod/content.php:773 object/Item.php:238
 msgid "add star"
 msgstr "Add star"
 
-#: mod/content.php:773 object/Item.php:239
+#: mod/content.php:774 object/Item.php:239
 msgid "remove star"
 msgstr "Remove star"
 
-#: mod/content.php:774 object/Item.php:240
+#: mod/content.php:775 object/Item.php:240
 msgid "toggle star status"
 msgstr "Toggle star status"
 
-#: mod/content.php:777 object/Item.php:243
+#: mod/content.php:778 object/Item.php:243
 msgid "starred"
 msgstr "Starred"
 
-#: mod/content.php:778 mod/content.php:800 object/Item.php:263
+#: mod/content.php:779 mod/content.php:801 object/Item.php:260
 msgid "add tag"
 msgstr "Add tag"
 
-#: mod/content.php:789 object/Item.php:251
+#: mod/content.php:790 object/Item.php:248
 msgid "ignore thread"
 msgstr "Ignore thread"
 
-#: mod/content.php:790 object/Item.php:252
+#: mod/content.php:791 object/Item.php:249
 msgid "unignore thread"
 msgstr "Unignore thread"
 
-#: mod/content.php:791 object/Item.php:253
+#: mod/content.php:792 object/Item.php:250
 msgid "toggle ignore status"
 msgstr "Toggle ignore status"
 
-#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
+#: mod/content.php:795 mod/ostatus_subscribe.php:75 object/Item.php:253
 msgid "ignored"
 msgstr "Ignored"
 
-#: mod/content.php:805 object/Item.php:141
+#: mod/content.php:806 object/Item.php:141
 msgid "save to folder"
 msgstr "Save to folder"
 
-#: mod/content.php:853 object/Item.php:212
+#: mod/content.php:854 object/Item.php:212
 msgid "I will attend"
 msgstr "I will attend"
 
-#: mod/content.php:853 object/Item.php:212
+#: mod/content.php:854 object/Item.php:212
 msgid "I will not attend"
 msgstr "I will not attend"
 
-#: mod/content.php:853 object/Item.php:212
+#: mod/content.php:854 object/Item.php:212
 msgid "I might attend"
 msgstr "I might attend"
 
-#: mod/content.php:917 object/Item.php:358
+#: mod/content.php:918 object/Item.php:355
 msgid "to"
 msgstr "to"
 
-#: mod/content.php:918 object/Item.php:360
+#: mod/content.php:919 object/Item.php:357
 msgid "Wall-to-Wall"
 msgstr "Wall-to-wall"
 
-#: mod/content.php:919 object/Item.php:361
+#: mod/content.php:920 object/Item.php:358
 msgid "via Wall-To-Wall:"
 msgstr "via wall-to-wall:"
 
-#: mod/credits.php:16
+#: mod/credits.php:19
 msgid "Credits"
 msgstr "Credits"
 
-#: mod/credits.php:17
+#: mod/credits.php:20
 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 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!"
 
-#: mod/crepair.php:89
+#: mod/crepair.php:92
 msgid "Contact settings applied."
 msgstr "Contact settings applied."
 
-#: mod/crepair.php:91
+#: mod/crepair.php:94
 msgid "Contact update failed."
 msgstr "Contact update failed."
 
-#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
-#: mod/dfrn_confirm.php:126
+#: mod/crepair.php:119 mod/dfrn_confirm.php:128 mod/fsuggest.php:22
+#: mod/fsuggest.php:94
 msgid "Contact not found."
 msgstr "Contact not found."
 
-#: mod/crepair.php:122
+#: mod/crepair.php:125
 msgid ""
 "<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
 " information your communications with this contact may stop working."
 msgstr "<strong>Warning: These are highly advanced settings.</strong> If you enter incorrect information your communications with this contact may not working."
 
-#: mod/crepair.php:123
+#: mod/crepair.php:126
 msgid ""
 "Please use your browser 'Back' button <strong>now</strong> if you are "
 "uncertain what to do on this page."
 msgstr "Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."
 
-#: mod/crepair.php:136 mod/crepair.php:138
+#: mod/crepair.php:139 mod/crepair.php:141
 msgid "No mirroring"
 msgstr "No mirroring"
 
-#: mod/crepair.php:136
-msgid "Mirror as forwarded posting"
-msgstr "Mirror as forwarded posting"
-
-#: mod/crepair.php:136 mod/crepair.php:138
-msgid "Mirror as my own posting"
-msgstr "Mirror as my own posting"
-
-#: mod/crepair.php:152
-msgid "Return to contact editor"
-msgstr "Return to contact editor"
-
-#: mod/crepair.php:154
-msgid "Refetch contact data"
-msgstr "Re-fetch contact data."
-
-#: mod/crepair.php:158
-msgid "Remote Self"
-msgstr "Remote self"
-
-#: mod/crepair.php:161
-msgid "Mirror postings from this contact"
-msgstr "Mirror postings from this contact:"
-
-#: mod/crepair.php:163
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "This will cause Friendica to repost new entries from this contact."
-
-#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
-#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
-msgid "Name"
-msgstr "Name:"
-
-#: mod/crepair.php:168
-msgid "Account Nickname"
-msgstr "Account nickname:"
-
-#: mod/crepair.php:169
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tag name - overrides name/nickname:"
-
-#: mod/crepair.php:170
-msgid "Account URL"
-msgstr "Account URL:"
-
-#: mod/crepair.php:171
-msgid "Friend Request URL"
-msgstr "Friend request URL:"
-
-#: mod/crepair.php:172
-msgid "Friend Confirm URL"
-msgstr "Friend confirm URL:"
-
-#: mod/crepair.php:173
-msgid "Notification Endpoint URL"
-msgstr "Notification endpoint URL"
-
-#: mod/crepair.php:174
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL:"
-
-#: mod/crepair.php:175
-msgid "New photo from this URL"
-msgstr "New photo from this URL:"
-
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "No potential page delegates found."
-
-#: mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."
-
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Existing page managers"
-
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Existing page delegates"
-
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potential delegates"
-
-#: mod/delegate.php:139 mod/tagrm.php:95
-msgid "Remove"
-msgstr "Remove"
-
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Add"
-
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "No entries."
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s welcomes %2$s"
-
-#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36
-#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979
-#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198
-#: mod/webfinger.php:8
-msgid "Public access denied."
-msgstr "Public access denied."
-
-#: mod/directory.php:199 view/theme/vier/theme.php:199
-msgid "Global Directory"
-msgstr "Global Directory"
-
-#: mod/directory.php:201
-msgid "Find on this site"
-msgstr "Find on this site"
-
-#: mod/directory.php:203
-msgid "Results for:"
-msgstr "Results for:"
-
-#: mod/directory.php:205
-msgid "Site Directory"
-msgstr "Site directory"
-
-#: mod/directory.php:212
-msgid "No entries (some entries may be hidden)."
-msgstr "No entries (entries may be hidden)."
-
-#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Access to this profile has been restricted."
-
-#: mod/display.php:479
-msgid "Item has been removed."
-msgstr "Item has been removed."
-
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Item not found"
-
-#: mod/editpost.php:32
-msgid "Edit post"
-msgstr "Edit post"
-
-#: mod/fbrowser.php:132
-msgid "Files"
-msgstr "Files"
-
-#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53
-#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298
-msgid "Not Found"
-msgstr "Not found"
+#: mod/crepair.php:139
+msgid "Mirror as forwarded posting"
+msgstr "Mirror as forwarded posting"
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- select -"
+#: mod/crepair.php:139 mod/crepair.php:141
+msgid "Mirror as my own posting"
+msgstr "Mirror as my own posting"
 
-#: mod/fsuggest.php:64
-msgid "Friend suggestion sent."
-msgstr "Friend suggestion sent"
+#: mod/crepair.php:155
+msgid "Return to contact editor"
+msgstr "Return to contact editor"
 
-#: mod/fsuggest.php:98
-msgid "Suggest Friends"
-msgstr "Suggest friends"
+#: mod/crepair.php:157
+msgid "Refetch contact data"
+msgstr "Re-fetch contact data."
 
-#: mod/fsuggest.php:100
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggest a friend for %s"
+#: mod/crepair.php:161
+msgid "Remote Self"
+msgstr "Remote self"
 
-#: mod/hcard.php:11
-msgid "No profile"
-msgstr "No profile"
+#: mod/crepair.php:164
+msgid "Mirror postings from this contact"
+msgstr "Mirror postings from this contact:"
 
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Help:"
+#: mod/crepair.php:166
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "This will cause Friendica to repost new entries from this contact."
 
-#: mod/help.php:56 index.php:301
-msgid "Page not found."
-msgstr "Page not found"
+#: mod/crepair.php:170 mod/admin.php:1496 mod/admin.php:1509
+#: mod/admin.php:1522 mod/admin.php:1538 mod/settings.php:684
+#: mod/settings.php:710
+msgid "Name"
+msgstr "Name:"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Welcome to %s"
+#: mod/crepair.php:171
+msgid "Account Nickname"
+msgstr "Account nickname:"
 
-#: mod/invite.php:28
-msgid "Total invitation limit exceeded."
-msgstr "Total invitation limit exceeded"
+#: mod/crepair.php:172
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tag name - overrides name/nickname:"
 
-#: mod/invite.php:51
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Not a valid email address"
+#: mod/crepair.php:173
+msgid "Account URL"
+msgstr "Account URL:"
 
-#: mod/invite.php:76
-msgid "Please join us on Friendica"
-msgstr "Please join us on Friendica."
+#: mod/crepair.php:174
+msgid "Friend Request URL"
+msgstr "Friend request URL:"
 
-#: mod/invite.php:87
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Invitation limit is exceeded. Please contact your site administrator."
+#: mod/crepair.php:175
+msgid "Friend Confirm URL"
+msgstr "Friend confirm URL:"
 
-#: mod/invite.php:91
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Message delivery failed"
+#: mod/crepair.php:176
+msgid "Notification Endpoint URL"
+msgstr "Notification endpoint URL"
 
-#: mod/invite.php:95
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message sent."
-msgstr[1] "%d messages sent."
+#: mod/crepair.php:177
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL:"
 
-#: mod/invite.php:114
-msgid "You have no more invitations available"
-msgstr "You have no more invitations available."
+#: mod/crepair.php:178
+msgid "New photo from this URL"
+msgstr "New photo from this URL:"
 
-#: mod/invite.php:122
-#, 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 "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."
+#: mod/delegate.php:103
+msgid "No potential page delegates located."
+msgstr "No potential page delegates found."
 
-#: mod/invite.php:124
-#, php-format
+#: mod/delegate.php:134
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "To accept this invitation, please register at %s or any other public Friendica website."
+"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 "Delegates are able to manage all aspects of this account except for key setting features. Please do not delegate your personal account to anybody that you do not trust completely."
 
-#: mod/invite.php:125
-#, 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 sites are all inter-connect to create a large 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."
+#: mod/delegate.php:135
+msgid "Existing Page Managers"
+msgstr "Existing page managers"
 
-#: mod/invite.php:128
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members."
+#: mod/delegate.php:137
+msgid "Existing Page Delegates"
+msgstr "Existing page delegates"
 
-#: mod/invite.php:134
-msgid "Send invitations"
-msgstr "Send invitations"
+#: mod/delegate.php:139
+msgid "Potential Delegates"
+msgstr "Potential delegates"
 
-#: mod/invite.php:135
-msgid "Enter email addresses, one per line:"
-msgstr "Enter email addresses, one per line:"
+#: mod/delegate.php:141 mod/tagrm.php:97
+msgid "Remove"
+msgstr "Remove"
 
-#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332
-#: mod/message.php:515
-msgid "Your message:"
-msgstr "Your message:"
+#: mod/delegate.php:142
+msgid "Add"
+msgstr "Add"
 
-#: mod/invite.php:137
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
+#: mod/delegate.php:143
+msgid "No entries."
+msgstr "No entries."
 
-#: mod/invite.php:139
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "You will need to supply this invitation code: $invite_code"
+#: mod/dfrn_confirm.php:72 mod/profiles.php:23 mod/profiles.php:139
+#: mod/profiles.php:186 mod/profiles.php:622
+msgid "Profile not found."
+msgstr "Profile not found."
 
-#: mod/invite.php:139
+#: mod/dfrn_confirm.php:129
 msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Once you have registered, please connect with me via my profile page at:"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved."
 
-#: mod/invite.php:141
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"
+#: mod/dfrn_confirm.php:246
+msgid "Response from remote site was not understood."
+msgstr "Response from remote site was not understood."
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Time conversion"
+#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
+msgid "Unexpected response from remote site: "
+msgstr "Unexpected response from remote site: "
 
-#: mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones."
+#: mod/dfrn_confirm.php:269
+msgid "Confirmation completed successfully."
+msgstr "Confirmation completed successfully."
 
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC time: %s"
+#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
+msgid "Remote site reported: "
+msgstr "Remote site reported: "
 
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Current time zone: %s"
+#: mod/dfrn_confirm.php:283
+msgid "Temporary failure. Please wait and try again."
+msgstr "Temporary failure. Please wait and try again."
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Converted local time: %s"
+#: mod/dfrn_confirm.php:290
+msgid "Introduction failed or was revoked."
+msgstr "Introduction failed or was revoked."
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Please select your time zone:"
+#: mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Unable to set contact photo."
 
-#: mod/lockview.php:32 mod/lockview.php:40
-msgid "Remote privacy information not available."
-msgstr "Remote privacy information not available."
+#: mod/dfrn_confirm.php:561
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "No user record found for '%s' "
 
-#: mod/lockview.php:49
-msgid "Visible to:"
-msgstr "Visible to:"
+#: mod/dfrn_confirm.php:571
+msgid "Our site encryption key is apparently messed up."
+msgstr "Our site encryption key is apparently messed up."
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "No valid account found."
+#: mod/dfrn_confirm.php:582
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "An empty URL was provided or the URL could not be decrypted by us."
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Password reset request issued. Please check your email."
+#: mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Contact record was not found for you on our site."
 
-#: mod/lostpass.php:41
+#: mod/dfrn_confirm.php:618
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Site public key not available in contact record for URL %s."
 
-#: mod/lostpass.php:52
-#, php-format
+#: mod/dfrn_confirm.php:638
 msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\tFollow this link to verify your identity:\n\n\t\t%1$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2$s\n\t\tLogin Name:\t%3$s"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again."
 
-#: mod/lostpass.php:71
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Password reset requested at %s"
+#: mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Unable to set your contact credentials on our system."
 
-#: mod/lostpass.php:91
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed."
+#: mod/dfrn_confirm.php:711
+msgid "Unable to update your contact profile details on our system"
+msgstr "Unable to update your contact profile details on our system"
 
-#: mod/lostpass.php:110 boot.php:1882
-msgid "Password Reset"
-msgstr "Password reset"
+#: mod/dfrn_confirm.php:783
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s has joined %2$s"
 
-#: mod/lostpass.php:111
-msgid "Your password has been reset as requested."
-msgstr "Your password has been reset as requested."
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s welcomes %2$s"
 
-#: mod/lostpass.php:112
-msgid "Your new password is"
-msgstr "Your new password is"
+#: mod/directory.php:195 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Global Directory"
 
-#: mod/lostpass.php:113
-msgid "Save or copy your new password - and then"
-msgstr "Save or copy your new password - and then"
+#: mod/directory.php:197
+msgid "Find on this site"
+msgstr "Find on this site"
 
-#: mod/lostpass.php:114
-msgid "click here to login"
-msgstr "click here to login"
+#: mod/directory.php:199
+msgid "Results for:"
+msgstr "Results for:"
 
-#: mod/lostpass.php:115
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Your password may be changed from the <em>Settings</em> page after successful login."
+#: mod/directory.php:201
+msgid "Site Directory"
+msgstr "Site directory"
 
-#: mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"
+#: mod/directory.php:208
+msgid "No entries (some entries may be hidden)."
+msgstr "No entries (entries may be hidden)."
 
-#: mod/lostpass.php:131
+#: mod/dirfind.php:39
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1$s\n\t\t\t\tLogin Name:\t%2$s\n\t\t\t\tPassword:\t%3$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"
+msgid "People Search - %s"
+msgstr "People search - %s"
 
-#: mod/lostpass.php:147
+#: mod/dirfind.php:50
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Your password has been changed at %s"
+msgid "Forum Search - %s"
+msgstr "Forum search - %s"
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Forgot your password?"
+#: mod/dirfind.php:247 mod/match.php:112
+msgid "No matches"
+msgstr "No matches"
 
-#: mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Enter your email address and submit to reset your password. Then check your email for further instructions."
+#: mod/display.php:480
+msgid "Item has been removed."
+msgstr "Item has been removed."
 
-#: mod/lostpass.php:161 boot.php:1870
-msgid "Nickname or Email: "
-msgstr "Nickname or Email: "
+#: mod/editpost.php:19 mod/editpost.php:29
+msgid "Item not found"
+msgstr "Item not found"
 
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reset"
+#: mod/editpost.php:34
+msgid "Edit post"
+msgstr "Edit post"
 
-#: mod/maintenance.php:20
-msgid "System down for maintenance"
-msgstr "Sorry, the system is currently down for maintenance."
+#: mod/events.php:96 mod/events.php:98
+msgid "Event can not end before it has started."
+msgstr "Event cannot end before it has started."
 
-#: mod/match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "No keywords to match. Please add keywords to your default profile."
+#: mod/events.php:105 mod/events.php:107
+msgid "Event title and start time are required."
+msgstr "Event title and starting time are required."
 
-#: mod/match.php:88
-msgid "is interested in:"
-msgstr "is interested in:"
+#: mod/events.php:379
+msgid "Create New Event"
+msgstr "Create new event"
 
-#: mod/match.php:102
-msgid "Profile Match"
-msgstr "Profile Match"
+#: mod/events.php:484
+msgid "Event details"
+msgstr "Event details"
 
-#: mod/match.php:109 mod/dirfind.php:245
-msgid "No matches"
-msgstr "No matches"
+#: mod/events.php:485
+msgid "Starting date and Title are required."
+msgstr "Starting date and title are required."
 
-#: mod/mood.php:134
-msgid "Mood"
-msgstr "Mood"
+#: mod/events.php:486 mod/events.php:487
+msgid "Event Starts:"
+msgstr "Event starts:"
 
-#: mod/mood.php:135
-msgid "Set your current mood and tell your friends"
-msgstr "Set your current mood and tell your friends"
+#: mod/events.php:486 mod/events.php:498 mod/profiles.php:712
+msgid "Required"
+msgstr "Required"
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Welcome to Friendica"
+#: mod/events.php:488 mod/events.php:504
+msgid "Finish date/time is not known or not relevant"
+msgstr "Finish date/time is not known or not relevant"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "New Member Checklist"
+#: mod/events.php:490 mod/events.php:491
+msgid "Event Finishes:"
+msgstr "Event finishes:"
 
-#: mod/newmember.php:12
-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 "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."
+#: mod/events.php:492 mod/events.php:505
+msgid "Adjust for viewer timezone"
+msgstr "Adjust for viewer's time zone"
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Getting started"
+#: mod/events.php:494
+msgid "Description:"
+msgstr "Description:"
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica walk-through"
+#: mod/events.php:498 mod/events.php:500
+msgid "Title:"
+msgstr "Title:"
 
-#: mod/newmember.php:18
-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 "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."
+#: mod/events.php:501 mod/events.php:502
+msgid "Share this event"
+msgstr "Share this event"
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Go to your settings"
+#: mod/events.php:531
+msgid "Failed to remove event"
+msgstr "Failed to remove event"
 
-#: mod/newmember.php:26
-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 "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."
+#: mod/events.php:533
+msgid "Event removed"
+msgstr "Event removed"
 
-#: mod/newmember.php:28
-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 "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."
+#: mod/fbrowser.php:134
+msgid "Files"
+msgstr "Files"
 
-#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700
-msgid "Upload Profile Photo"
-msgstr "Upload profile photo"
+#: mod/fetch.php:15 mod/fetch.php:42 mod/fetch.php:51 mod/help.php:56
+#: mod/p.php:19 mod/p.php:46 mod/p.php:55 index.php:301
+msgid "Not Found"
+msgstr "Not found"
 
-#: mod/newmember.php:36
-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 "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."
+#: mod/filer.php:31
+msgid "- select -"
+msgstr "- select -"
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Edit your profile"
+#: mod/follow.php:21 mod/dfrn_request.php:893
+msgid "Submit Request"
+msgstr "Submit request"
 
-#: mod/newmember.php:38
-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 "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."
+#: mod/follow.php:32
+msgid "You already added this contact."
+msgstr "You already added this contact."
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profile keywords"
+#: mod/follow.php:41
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora support isn't enabled. Contact can't be added."
 
-#: mod/newmember.php:40
-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 "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."
+#: mod/follow.php:48
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus support is disabled. Contact can't be added."
 
-#: mod/newmember.php:44
-msgid "Connecting"
-msgstr "Connecting"
+#: mod/follow.php:55
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "The network type couldn't be detected. Contact can't be added."
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
-msgstr "Importing emails"
+#: mod/follow.php:114 mod/dfrn_request.php:879
+msgid "Please answer the following:"
+msgstr "Please answer the following:"
 
-#: mod/newmember.php:51
-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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"
+#: mod/follow.php:115 mod/dfrn_request.php:880
+#, php-format
+msgid "Does %s know you?"
+msgstr "Does %s know you?"
 
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Go to your contacts page"
+#: mod/follow.php:116 mod/dfrn_request.php:884
+msgid "Add a personal note:"
+msgstr "Add a personal note:"
 
-#: mod/newmember.php:53
-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 "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."
+#: mod/follow.php:122 mod/dfrn_request.php:890
+msgid "Your Identity Address:"
+msgstr "My identity address:"
 
-#: mod/newmember.php:55
-msgid "Go to Your Site's Directory"
-msgstr "Go to your site's directory"
+#: mod/follow.php:131 mod/notifications.php:257 mod/contacts.php:635
+msgid "Profile URL"
+msgstr "Profile URL:"
 
-#: mod/newmember.php:55
-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 "The directory 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 when requested."
+#: mod/follow.php:188
+msgid "Contact added"
+msgstr "Contact added"
 
-#: mod/newmember.php:57
-msgid "Finding New People"
-msgstr "Finding new people"
+#: mod/friendica.php:69
+msgid "This is Friendica, version"
+msgstr "This is Friendica, version"
+
+#: mod/friendica.php:70
+msgid "running at web location"
+msgstr "running at web location"
 
-#: mod/newmember.php:57
+#: mod/friendica.php:74
 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 "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."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."
 
-#: mod/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Group your contacts"
+#: mod/friendica.php:78
+msgid "Bug reports and issues: please visit"
+msgstr "Bug reports and issues: please visit"
+
+#: mod/friendica.php:78
+msgid "the bugtracker at github"
+msgstr "the bugtracker at github"
 
-#: mod/newmember.php:65
+#: mod/friendica.php:81
 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 "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."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"
+
+#: mod/friendica.php:95
+msgid "Installed plugins/addons/apps:"
+msgstr "Installed plugins/addons/apps:"
+
+#: mod/friendica.php:109
+msgid "No installed plugins/addons/apps"
+msgstr "No installed plugins/addons/apps"
+
+#: mod/friendica.php:114
+msgid "On this server the following remote servers are blocked."
+msgstr "On this server the following remote servers are blocked."
 
-#: mod/newmember.php:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Why aren't my posts public?"
+#: mod/friendica.php:115 mod/admin.php:281 mod/admin.php:299
+msgid "Reason for the block"
+msgstr "Reason for the block"
 
-#: mod/newmember.php:68
-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 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."
+#: mod/fsuggest.php:65
+msgid "Friend suggestion sent."
+msgstr "Friend suggestion sent"
 
-#: mod/newmember.php:73
-msgid "Getting Help"
-msgstr "Getting help"
+#: mod/fsuggest.php:99
+msgid "Suggest Friends"
+msgstr "Suggest friends"
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Go to the help section"
+#: mod/fsuggest.php:101
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggest a friend for %s"
 
-#: mod/newmember.php:77
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
+#: mod/group.php:30
+msgid "Group created."
+msgstr "Group created."
 
-#: mod/nogroup.php:65
-msgid "Contacts who are not members of a group"
-msgstr "Contacts who are not members of a group"
+#: mod/group.php:36
+msgid "Could not create group."
+msgstr "Could not create group."
 
-#: mod/notify.php:65
-msgid "No more system notifications."
-msgstr "No more system notifications."
+#: mod/group.php:50 mod/group.php:155
+msgid "Group not found."
+msgstr "Group not found."
 
-#: mod/notify.php:69 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "System notifications"
+#: mod/group.php:64
+msgid "Group name changed."
+msgstr "Group name changed."
 
-#: mod/oexchange.php:21
-msgid "Post successful."
-msgstr "Post successful."
+#: mod/group.php:77 mod/profperm.php:22 index.php:409
+msgid "Permission denied"
+msgstr "Permission denied"
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr "Subscribing to OStatus contacts"
+#: mod/group.php:94
+msgid "Save Group"
+msgstr "Save group"
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr "No contact provided."
+#: mod/group.php:99
+msgid "Create a group of contacts/friends."
+msgstr "Create a group of contacts/friends."
 
-#: mod/ostatus_subscribe.php:31
-msgid "Couldn't fetch information for contact."
-msgstr "Couldn't fetch information for contact."
+#: mod/group.php:124
+msgid "Group removed."
+msgstr "Group removed."
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch friends for contact."
-msgstr "Couldn't fetch friends for contact."
+#: mod/group.php:126
+msgid "Unable to remove group."
+msgstr "Unable to remove group."
 
-#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
-msgid "Done"
-msgstr "Done"
+#: mod/group.php:190
+msgid "Delete Group"
+msgstr "Delete group"
 
-#: mod/ostatus_subscribe.php:68
-msgid "success"
-msgstr "success"
+#: mod/group.php:196
+msgid "Group Editor"
+msgstr "Group Editor"
 
-#: mod/ostatus_subscribe.php:70
-msgid "failed"
-msgstr "failed"
+#: mod/group.php:201
+msgid "Edit Group Name"
+msgstr "Edit group name"
 
-#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
-msgid "Keep this window open until done."
-msgstr "Keep this window open until done."
+#: mod/group.php:211
+msgid "Members"
+msgstr "Members"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Not extended"
+#: mod/group.php:213 mod/contacts.php:703
+msgid "All Contacts"
+msgstr "All contacts"
 
-#: mod/poke.php:196
-msgid "Poke/Prod"
-msgstr "Poke/Prod"
+#: mod/group.php:227
+msgid "Remove Contact"
+msgstr "Remove contact"
 
-#: mod/poke.php:197
-msgid "poke, prod or do other things to somebody"
-msgstr "Poke, prod or do other things to somebody"
+#: mod/group.php:251
+msgid "Add Contact"
+msgstr "Add contact"
 
-#: mod/poke.php:198
-msgid "Recipient"
-msgstr "Recipient:"
+#: mod/group.php:263 mod/profperm.php:109
+msgid "Click on a contact to add or remove."
+msgstr "Click on a contact to add or remove."
 
-#: mod/poke.php:199
-msgid "Choose what you wish to do to recipient"
-msgstr "Choose what you wish to do:"
+#: mod/hcard.php:13
+msgid "No profile"
+msgstr "No profile"
 
-#: mod/poke.php:202
-msgid "Make this post private"
-msgstr "Make this post private"
+#: mod/help.php:44
+msgid "Help:"
+msgstr "Help:"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image uploaded but image cropping failed."
+#: mod/help.php:59 index.php:304
+msgid "Page not found."
+msgstr "Page not found"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:323
+#: mod/home.php:41
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Image size reduction [%s] failed."
+msgid "Welcome to %s"
+msgstr "Welcome to %s"
 
-#: mod/profile_photo.php:127
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately."
+#: mod/install.php:108
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Communications Server - Setup"
 
-#: mod/profile_photo.php:137
-msgid "Unable to process image"
-msgstr "Unable to process image"
+#: mod/install.php:114
+msgid "Could not connect to database."
+msgstr "Could not connect to database."
 
-#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Image exceeds size limit of %s"
+#: mod/install.php:118
+msgid "Could not create table."
+msgstr "Could not create table."
 
-#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218
-msgid "Unable to process image."
-msgstr "Unable to process image."
+#: mod/install.php:124
+msgid "Your Friendica site database has been installed."
+msgstr "Your Friendica site database has been installed."
 
-#: mod/profile_photo.php:254
-msgid "Upload File:"
-msgstr "Upload File:"
+#: mod/install.php:129
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
 
-#: mod/profile_photo.php:255
-msgid "Select a profile:"
-msgstr "Select a profile:"
+#: mod/install.php:130 mod/install.php:202 mod/install.php:549
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Please see the file \"INSTALL.txt\"."
 
-#: mod/profile_photo.php:257
-msgid "Upload"
-msgstr "Upload"
+#: mod/install.php:142
+msgid "Database already in use."
+msgstr "Database already in use."
 
-#: mod/profile_photo.php:260
-msgid "or"
-msgstr "or"
+#: mod/install.php:199
+msgid "System check"
+msgstr "System check"
 
-#: mod/profile_photo.php:260
-msgid "skip this step"
-msgstr "skip this step"
+#: mod/install.php:204
+msgid "Check again"
+msgstr "Check again"
 
-#: mod/profile_photo.php:260
-msgid "select a photo from your photo albums"
-msgstr "select a photo from your photo albums"
+#: mod/install.php:223
+msgid "Database connection"
+msgstr "Database connection"
 
-#: mod/profile_photo.php:274
-msgid "Crop Image"
-msgstr "Crop Image"
+#: mod/install.php:224
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "In order to install Friendica we need to know how to connect to your database."
 
-#: mod/profile_photo.php:275
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Please adjust the image cropping for optimum viewing."
+#: mod/install.php:225
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Please contact your hosting provider or site administrator if you have questions about these settings."
 
-#: mod/profile_photo.php:277
-msgid "Done Editing"
-msgstr "Done editing"
+#: mod/install.php:226
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "The database you specify below should already exist. If it does not, please create it before continuing."
 
-#: mod/profile_photo.php:313
-msgid "Image uploaded successfully."
-msgstr "Image uploaded successfully."
+#: mod/install.php:230
+msgid "Database Server Name"
+msgstr "Database server name"
 
-#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257
-msgid "Image upload failed."
-msgstr "Image upload failed."
+#: mod/install.php:231
+msgid "Database Login Name"
+msgstr "Database login name"
 
-#: mod/profperm.php:20 mod/group.php:76 index.php:406
-msgid "Permission denied"
-msgstr "Permission denied"
+#: mod/install.php:232
+msgid "Database Login Password"
+msgstr "Database login password"
 
-#: mod/profperm.php:26 mod/profperm.php:57
-msgid "Invalid profile identifier."
-msgstr "Invalid profile identifier."
+#: mod/install.php:232
+msgid "For security reasons the password must not be empty"
+msgstr "For security reasons the password must not be empty"
 
-#: mod/profperm.php:103
-msgid "Profile Visibility Editor"
-msgstr "Profile Visibility Editor"
+#: mod/install.php:233
+msgid "Database Name"
+msgstr "Database name"
 
-#: mod/profperm.php:107 mod/group.php:262
-msgid "Click on a contact to add or remove."
-msgstr "Click on a contact to add or remove."
+#: mod/install.php:234 mod/install.php:275
+msgid "Site administrator email address"
+msgstr "Site administrator email address"
 
-#: mod/profperm.php:116
-msgid "Visible To"
-msgstr "Visible to"
+#: mod/install.php:234 mod/install.php:275
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Your account email address must match this in order to use the web admin panel."
 
-#: mod/profperm.php:132
-msgid "All Contacts (with secure profile access)"
-msgstr "All contacts with secure profile access"
+#: mod/install.php:238 mod/install.php:278
+msgid "Please select a default timezone for your website"
+msgstr "Please select a default time zone for your website"
 
-#: mod/regmod.php:58
-msgid "Account approved."
-msgstr "Account approved."
+#: mod/install.php:265
+msgid "Site settings"
+msgstr "Site settings"
 
-#: mod/regmod.php:95
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registration revoked for %s"
+#: mod/install.php:279
+msgid "System Language:"
+msgstr "System language:"
 
-#: mod/regmod.php:107
-msgid "Please login."
-msgstr "Please login."
+#: mod/install.php:279
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Set the default language for your Friendica installation interface and email communication."
 
-#: mod/removeme.php:52 mod/removeme.php:55
-msgid "Remove My Account"
-msgstr "Remove my account"
+#: mod/install.php:319
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Could not find a command line version of PHP in the web server PATH."
 
-#: mod/removeme.php:53
+#: mod/install.php:320
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "This will completely remove your account. Once this has been done it is not recoverable."
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "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-poller'>'Setup the poller'</a>"
 
-#: mod/removeme.php:54
-msgid "Please enter your password for verification:"
-msgstr "Please enter your password for verification:"
+#: mod/install.php:324
+msgid "PHP executable path"
+msgstr "PHP executable path"
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr "Resubscribing to OStatus contacts"
+#: mod/install.php:324
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Enter full path to php executable. You can leave this blank to continue the installation."
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr "Error"
+#: mod/install.php:329
+msgid "Command line PHP"
+msgstr "Command line PHP"
 
-#: mod/subthread.php:104
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s is following %2$s's %3$s"
+#: mod/install.php:338
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version."
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Do you really want to delete this suggestion?"
+#: mod/install.php:339
+msgid "Found PHP version: "
+msgstr "Found PHP version: "
 
-#: mod/suggest.php:71
+#: mod/install.php:341
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
+
+#: mod/install.php:352
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "No suggestions available. If this is a new site, please try again in 24 hours."
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
+
+#: mod/install.php:353
+msgid "This is required for message delivery to work."
+msgstr "This is required for message delivery to work."
+
+#: mod/install.php:355
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
+
+#: mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
+
+#: mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignore/Hide"
+#: mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generate encryption keys"
 
-#: mod/tagrm.php:43
-msgid "Tag removed"
-msgstr "Tag removed"
+#: mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP module"
 
-#: mod/tagrm.php:82
-msgid "Remove Item Tag"
-msgstr "Remove Item tag"
+#: mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP module"
 
-#: mod/tagrm.php:84
-msgid "Select a tag to remove: "
-msgstr "Select a tag to remove: "
+#: mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP module"
 
-#: mod/uimport.php:51 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
+#: mod/install.php:391
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO or MySQLi PHP module"
 
-#: mod/uimport.php:66 mod/register.php:295
-msgid "Import"
-msgstr "Import"
+#: mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP module"
 
-#: mod/uimport.php:68
-msgid "Move account"
-msgstr "Move account"
+#: mod/install.php:393
+msgid "XML PHP module"
+msgstr "XML PHP module"
 
-#: mod/uimport.php:69
-msgid "You can import an account from another Friendica server."
-msgstr "You can import an account from another Friendica server."
+#: mod/install.php:394
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/uimport.php:70
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
+#: mod/install.php:398 mod/install.php:400
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/uimport.php:71
+#: mod/install.php:398
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Error: Apache web server mod-rewrite module is required but not installed."
 
-#: mod/uimport.php:72
-msgid "Account file"
-msgstr "Account file"
+#: mod/install.php:406
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Error: libCURL PHP module required but not installed."
 
-#: mod/uimport.php:72
+#: mod/install.php:410
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Error: GD graphics PHP module with JPEG support required but not installed."
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Embedded content - reload page to view]"
+#: mod/install.php:414
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Error: openssl PHP module required but not installed."
 
-#: mod/viewcontacts.php:75
-msgid "No contacts."
-msgstr "No contacts."
+#: mod/install.php:418
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Error: PDO or MySQLi PHP module required but not installed."
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Access denied."
+#: mod/install.php:422
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Error: MySQL driver for PDO is not installed."
 
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
-#: mod/wall_upload.php:150 mod/wall_upload.php:153
-msgid "Invalid request."
-msgstr "Invalid request."
+#: mod/install.php:426
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Error: mb_string PHP module required but not installed."
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/install.php:430
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Error: iconv PHP module required but not installed."
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Or did you try to upload an empty file?"
+#: mod/install.php:440
+msgid "Error, XML PHP module required but not installed."
+msgstr "Error, XML PHP module required but not installed."
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "File exceeds size limit of %s"
+#: mod/install.php:452
+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 "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."
 
-#: mod/wall_attach.php:158 mod/wall_attach.php:174
-msgid "File upload failed."
-msgstr "File upload failed."
+#: mod/install.php:453
+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 "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:106
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/install.php:454
+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 "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
 
-#: mod/wallmessage.php:50 mod/message.php:60
-msgid "No recipient selected."
-msgstr "No recipient selected."
+#: mod/install.php:455
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."
 
-#: mod/wallmessage.php:53
-msgid "Unable to check your home location."
-msgstr "Unable to check your home location."
+#: mod/install.php:458
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is writeable"
 
-#: mod/wallmessage.php:56 mod/message.php:67
-msgid "Message could not be sent."
-msgstr "Message could not be sent."
+#: mod/install.php:468
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
 
-#: mod/wallmessage.php:59 mod/message.php:70
-msgid "Message collection failure."
-msgstr "Message collection failure."
+#: mod/install.php:469
+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 "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 directory."
 
-#: mod/wallmessage.php:62 mod/message.php:73
-msgid "Message sent."
-msgstr "Message sent."
+#: mod/install.php:470
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
 
-#: mod/wallmessage.php:80 mod/wallmessage.php:89
-msgid "No recipient."
-msgstr "No recipient."
+#: mod/install.php:471
+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 "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."
 
-#: mod/wallmessage.php:126 mod/message.php:322
-msgid "Send Private Message"
-msgstr "Send private message"
+#: mod/install.php:474
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 is writeable"
 
-#: mod/wallmessage.php:127
-#, php-format
+#: mod/install.php:490
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL rewrite in .htaccess is not working. Check your server configuration."
 
-#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510
-msgid "To:"
-msgstr "To:"
+#: mod/install.php:492
+msgid "Url rewrite is working"
+msgstr "URL rewrite is working"
 
-#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512
-msgid "Subject:"
-msgstr "Subject:"
+#: mod/install.php:511
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagick PHP extension is not installed"
 
-#: mod/babel.php:16
-msgid "Source (bbcode) text:"
-msgstr "Source (bbcode) text:"
+#: mod/install.php:513
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP extension is installed"
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Source (Diaspora) text to convert to BBcode:"
+#: mod/install.php:515
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick supports GIF"
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Source input: "
+#: mod/install.php:522
+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 "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."
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: mod/install.php:547
+msgid "<h1>What next</h1>"
+msgstr "<h1>What next</h1>"
 
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/install.php:548
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/invite.php:30
+msgid "Total invitation limit exceeded."
+msgstr "Total invitation limit exceeded"
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/invite.php:53
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Not a valid email address"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/invite.php:78
+msgid "Please join us on Friendica"
+msgstr "Please join us on Friendica."
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/invite.php:89
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Invitation limit is exceeded. Please contact your site administrator."
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/invite.php:93
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Message delivery failed"
 
-#: mod/babel.php:65
-msgid "Source input (Diaspora format): "
-msgstr "Source input (Diaspora format): "
+#: mod/invite.php:97
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message sent."
+msgstr[1] "%d messages sent."
 
-#: mod/babel.php:69
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/invite.php:116
+msgid "You have no more invitations available"
+msgstr "You have no more invitations available."
 
-#: mod/cal.php:271 mod/events.php:375
-msgid "View"
-msgstr "View"
+#: mod/invite.php:124
+#, 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 "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."
 
-#: mod/cal.php:272 mod/events.php:377
-msgid "Previous"
-msgstr "Previous"
+#: mod/invite.php:126
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "To accept this invitation, please register at %s or any other public Friendica website."
 
-#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
-msgid "Next"
-msgstr "Next"
+#: mod/invite.php:127
+#, 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 sites are all inter-connect to create a large 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."
 
-#: mod/cal.php:282 mod/events.php:387
-msgid "list"
-msgstr "List"
+#: mod/invite.php:130
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Our apologies. This system is not currently configured to connect with other public sites or invite members."
 
-#: mod/cal.php:292
-msgid "User not found"
-msgstr "User not found"
+#: mod/invite.php:136
+msgid "Send invitations"
+msgstr "Send invitations"
 
-#: mod/cal.php:308
-msgid "This calendar format is not supported"
-msgstr "This calendar format is not supported"
+#: mod/invite.php:137
+msgid "Enter email addresses, one per line:"
+msgstr "Enter email addresses, one per line:"
 
-#: mod/cal.php:310
-msgid "No exportable data found"
-msgstr "No exportable data found"
+#: mod/invite.php:138 mod/message.php:334 mod/message.php:517
+#: mod/wallmessage.php:137
+msgid "Your message:"
+msgstr "Your message:"
+
+#: mod/invite.php:139
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
+
+#: mod/invite.php:141
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "You will need to supply this invitation code: $invite_code"
+
+#: mod/invite.php:141
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Once you have registered, please connect with me via my profile page at:"
+
+#: mod/invite.php:143
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"
 
-#: mod/cal.php:325
-msgid "calendar"
-msgstr "calendar"
+#: mod/localtime.php:25
+msgid "Time Conversion"
+msgstr "Time conversion"
 
-#: mod/community.php:23
-msgid "Not available."
-msgstr "Not available."
+#: mod/localtime.php:27
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provides this service for sharing events with other networks and friends in unknown time zones."
 
-#: mod/community.php:50 mod/search.php:219
-msgid "No results."
-msgstr "No results."
+#: mod/localtime.php:31
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC time: %s"
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
-#: mod/profiles.php:182 mod/profiles.php:619
-msgid "Profile not found."
-msgstr "Profile not found."
+#: mod/localtime.php:34
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Current time zone: %s"
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "This may occasionally happen if contact was requested by both persons and it has already been approved."
+#: mod/localtime.php:37
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Converted local time: %s"
 
-#: mod/dfrn_confirm.php:244
-msgid "Response from remote site was not understood."
-msgstr "Response from remote site was not understood."
+#: mod/localtime.php:42
+msgid "Please select your timezone:"
+msgstr "Please select your time zone:"
 
-#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
-msgid "Unexpected response from remote site: "
-msgstr "Unexpected response from remote site: "
+#: mod/lockview.php:33 mod/lockview.php:41
+msgid "Remote privacy information not available."
+msgstr "Remote privacy information not available."
 
-#: mod/dfrn_confirm.php:267
-msgid "Confirmation completed successfully."
-msgstr "Confirmation completed successfully."
+#: mod/lockview.php:50
+msgid "Visible to:"
+msgstr "Visible to:"
 
-#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
-msgid "Remote site reported: "
-msgstr "Remote site reported: "
+#: mod/lostpass.php:21
+msgid "No valid account found."
+msgstr "No valid account found."
 
-#: mod/dfrn_confirm.php:281
-msgid "Temporary failure. Please wait and try again."
-msgstr "Temporary failure. Please wait and try again."
+#: mod/lostpass.php:37
+msgid "Password reset request issued. Check your email."
+msgstr "Password reset request issued. Please check your email."
 
-#: mod/dfrn_confirm.php:288
-msgid "Introduction failed or was revoked."
-msgstr "Introduction failed or was revoked."
+#: mod/lostpass.php:43
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tDear %1$s,\n\t\t\tA request was issued 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/delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."
 
-#: mod/dfrn_confirm.php:418
-msgid "Unable to set contact photo."
-msgstr "Unable to set contact photo."
+#: mod/lostpass.php:54
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tFollow this link to verify your identity:\n\n\t\t%1$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2$s\n\t\tLogin Name:\t%3$s"
 
-#: mod/dfrn_confirm.php:559
+#: mod/lostpass.php:73
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "No user record found for '%s' "
+msgid "Password reset requested at %s"
+msgstr "Password reset requested at %s"
 
-#: mod/dfrn_confirm.php:569
-msgid "Our site encryption key is apparently messed up."
-msgstr "Our site encryption key is apparently messed up."
+#: mod/lostpass.php:93
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Request could not be verified. (You may have previously submitted it.) Password reset failed."
 
-#: mod/dfrn_confirm.php:580
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "An empty URL was provided or the URL could not be decrypted by us."
+#: mod/lostpass.php:112 boot.php:877
+msgid "Password Reset"
+msgstr "Password reset"
 
-#: mod/dfrn_confirm.php:602
-msgid "Contact record was not found for you on our site."
-msgstr "Contact record was not found for you on our site."
+#: mod/lostpass.php:113
+msgid "Your password has been reset as requested."
+msgstr "Your password has been reset as requested."
 
-#: mod/dfrn_confirm.php:616
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Site public key not available in contact record for URL %s."
+#: mod/lostpass.php:114
+msgid "Your new password is"
+msgstr "Your new password is"
 
-#: mod/dfrn_confirm.php:636
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "The ID provided by your system is a duplicate on our system. It should work if you try again."
+#: mod/lostpass.php:115
+msgid "Save or copy your new password - and then"
+msgstr "Save or copy your new password - and then"
 
-#: mod/dfrn_confirm.php:647
-msgid "Unable to set your contact credentials on our system."
-msgstr "Unable to set your contact credentials on our system."
+#: mod/lostpass.php:116
+msgid "click here to login"
+msgstr "click here to login"
 
-#: mod/dfrn_confirm.php:709
-msgid "Unable to update your contact profile details on our system"
-msgstr "Unable to update your contact profile details on our system"
+#: mod/lostpass.php:117
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Your password may be changed from the <em>Settings</em> page after successful login."
 
-#: mod/dfrn_confirm.php:781
+#: mod/lostpass.php:127
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s has joined %2$s"
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tDear %1$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t"
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "This introduction has already been accepted."
+#: mod/lostpass.php:133
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1$s\n\t\t\t\tLogin Name:\t%2$s\n\t\t\t\tPassword:\t%3$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profile location is not valid or does not contain profile information."
+#: mod/lostpass.php:149
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Your password has been changed at %s"
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warning: profile location has no identifiable owner name."
+#: mod/lostpass.php:161
+msgid "Forgot your Password?"
+msgstr "Reset My Password"
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
-msgstr "Warning: profile location has no profile photo."
+#: mod/lostpass.php:162
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Enter email address or nickname to reset your password. You will receive further instruction via email."
 
-#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d required parameter was not found at the given location"
-msgstr[1] "%d required parameters were not found at the given location"
+#: mod/lostpass.php:163 boot.php:865
+msgid "Nickname or Email: "
+msgstr "Nickname or email: "
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Introduction complete."
+#: mod/lostpass.php:164
+msgid "Reset"
+msgstr "Reset"
 
-#: mod/dfrn_request.php:225
-msgid "Unrecoverable protocol error."
-msgstr "Unrecoverable protocol error."
+#: mod/maintenance.php:21
+msgid "System down for maintenance"
+msgstr "Sorry, the system is currently down for maintenance."
 
-#: mod/dfrn_request.php:253
-msgid "Profile unavailable."
-msgstr "Profile unavailable."
+#: mod/manage.php:152
+msgid "Manage Identities and/or Pages"
+msgstr "Manage Identities and Pages"
 
-#: mod/dfrn_request.php:280
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s has received too many connection requests today."
+#: mod/manage.php:153
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Accounts that I manage or own."
 
-#: mod/dfrn_request.php:281
-msgid "Spam protection measures have been invoked."
-msgstr "Spam protection measures have been invoked."
+#: mod/manage.php:154
+msgid "Select an identity to manage: "
+msgstr "Select identity:"
 
-#: mod/dfrn_request.php:282
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Friends are advised to please try again in 24 hours."
+#: mod/match.php:38
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "No keywords to match. Please add keywords to your default profile."
 
-#: mod/dfrn_request.php:344
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: mod/match.php:91
+msgid "is interested in:"
+msgstr "is interested in:"
 
-#: mod/dfrn_request.php:353
-msgid "Invalid email address."
-msgstr "Invalid email address."
+#: mod/match.php:105
+msgid "Profile Match"
+msgstr "Profile Match"
 
-#: mod/dfrn_request.php:378
-msgid "This account has not been configured for email. Request failed."
-msgstr "This account has not been configured for email. Request failed."
+#: mod/message.php:62 mod/wallmessage.php:52
+msgid "No recipient selected."
+msgstr "No recipient selected."
 
-#: mod/dfrn_request.php:481
-msgid "You have already introduced yourself here."
-msgstr "You have already introduced yourself here."
+#: mod/message.php:66
+msgid "Unable to locate contact information."
+msgstr "Unable to locate contact information."
 
-#: mod/dfrn_request.php:485
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Apparently you are already friends with %s."
+#: mod/message.php:69 mod/wallmessage.php:58
+msgid "Message could not be sent."
+msgstr "Message could not be sent."
 
-#: mod/dfrn_request.php:506
-msgid "Invalid profile URL."
-msgstr "Invalid profile URL."
+#: mod/message.php:72 mod/wallmessage.php:61
+msgid "Message collection failure."
+msgstr "Message collection failure."
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
-msgstr "Your introduction has been sent."
+#: mod/message.php:75 mod/wallmessage.php:64
+msgid "Message sent."
+msgstr "Message sent."
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system."
+#: mod/message.php:206
+msgid "Do you really want to delete this message?"
+msgstr "Do you really want to delete this message?"
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
-msgstr "Please login to confirm introduction."
+#: mod/message.php:226
+msgid "Message deleted."
+msgstr "Message deleted."
 
-#: mod/dfrn_request.php:687
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Incorrect identity currently logged in. Please login to <strong>this</strong> profile."
+#: mod/message.php:257
+msgid "Conversation removed."
+msgstr "Conversation removed."
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
-msgstr "Confirm"
+#: mod/message.php:324 mod/wallmessage.php:128
+msgid "Send Private Message"
+msgstr "Send private message"
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
-msgstr "Hide this contact"
+#: mod/message.php:325 mod/message.php:512 mod/wallmessage.php:130
+msgid "To:"
+msgstr "To:"
 
-#: mod/dfrn_request.php:716
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
+#: mod/message.php:330 mod/message.php:514 mod/wallmessage.php:131
+msgid "Subject:"
+msgstr "Subject:"
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Please confirm your introduction/connection request to %s."
+#: mod/message.php:366
+msgid "No messages."
+msgstr "No messages."
 
-#: mod/dfrn_request.php:848
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Please enter your 'Identity address' from one of the following supported communications networks:"
+#: mod/message.php:405
+msgid "Message not available."
+msgstr "Message not available."
 
-#: mod/dfrn_request.php:872
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."
+#: mod/message.php:479
+msgid "Delete message"
+msgstr "Delete message"
 
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
-msgstr "Friend/Connection request"
+#: mod/message.php:505 mod/message.php:593
+msgid "Delete conversation"
+msgstr "Delete conversation"
 
-#: mod/dfrn_request.php:878
+#: mod/message.php:507
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."
 
-#: mod/dfrn_request.php:879 mod/follow.php:112
-msgid "Please answer the following:"
-msgstr "Please answer the following:"
+#: mod/message.php:511
+msgid "Send Reply"
+msgstr "Send reply"
 
-#: mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/message.php:563
 #, php-format
-msgid "Does %s know you?"
-msgstr "Does %s know you?"
+msgid "Unknown sender - %s"
+msgstr "Unknown sender - %s"
 
-#: mod/dfrn_request.php:884 mod/follow.php:114
-msgid "Add a personal note:"
-msgstr "Add a personal note:"
+#: mod/message.php:565
+#, php-format
+msgid "You and %s"
+msgstr "Me and %s"
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated social web"
+#: mod/message.php:567
+#, php-format
+msgid "%s and You"
+msgstr "%s and me"
 
-#: mod/dfrn_request.php:889
+#: mod/message.php:596
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
+
+#: mod/message.php:599
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: mod/dfrn_request.php:890 mod/follow.php:120
-msgid "Your Identity Address:"
-msgstr "My identity address:"
+#: mod/mood.php:135
+msgid "Mood"
+msgstr "Mood"
 
-#: mod/dfrn_request.php:893 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Submit request"
+#: mod/mood.php:136
+msgid "Set your current mood and tell your friends"
+msgstr "Set your current mood and tell your friends"
 
-#: mod/dirfind.php:37
+#: mod/network.php:154 mod/search.php:230 mod/contacts.php:808
 #, php-format
-msgid "People Search - %s"
-msgstr "People search - %s"
+msgid "Results for: %s"
+msgstr "Results for: %s"
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forum search - %s"
+#: mod/network.php:200 mod/search.php:28
+msgid "Remove term"
+msgstr "Remove term"
 
-#: mod/events.php:93 mod/events.php:95
-msgid "Event can not end before it has started."
-msgstr "Event cannot end before it has started."
+#: mod/network.php:407
+#, 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] "Warning: This group contains %s member from a network that doesn't allow non public messages."
+msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
 
-#: mod/events.php:102 mod/events.php:104
-msgid "Event title and start time are required."
-msgstr "Event title and starting time are required."
+#: mod/network.php:410
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Messages in this group won't be send to these receivers."
 
-#: mod/events.php:376
-msgid "Create New Event"
-msgstr "Create new event"
+#: mod/network.php:538
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private messages to this person are at risk of public disclosure."
 
-#: mod/events.php:481
-msgid "Event details"
-msgstr "Event details"
+#: mod/network.php:543
+msgid "Invalid contact."
+msgstr "Invalid contact."
 
-#: mod/events.php:482
-msgid "Starting date and Title are required."
-msgstr "Starting date and title are required."
+#: mod/network.php:816
+msgid "Commented Order"
+msgstr "Commented last"
 
-#: mod/events.php:483 mod/events.php:484
-msgid "Event Starts:"
-msgstr "Event starts:"
+#: mod/network.php:819
+msgid "Sort by Comment Date"
+msgstr "Sort by comment date"
 
-#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
-msgid "Required"
-msgstr "Required"
+#: mod/network.php:824
+msgid "Posted Order"
+msgstr "Posted last"
 
-#: mod/events.php:485 mod/events.php:501
-msgid "Finish date/time is not known or not relevant"
-msgstr "Finish date/time is not known or not relevant"
+#: mod/network.php:827
+msgid "Sort by Post Date"
+msgstr "Sort by post date"
 
-#: mod/events.php:487 mod/events.php:488
-msgid "Event Finishes:"
-msgstr "Event finishes:"
+#: mod/network.php:838
+msgid "Posts that mention or involve you"
+msgstr "Posts mentioning or involving me"
 
-#: mod/events.php:489 mod/events.php:502
-msgid "Adjust for viewer timezone"
-msgstr "Adjust for viewer's time zone"
+#: mod/network.php:846
+msgid "New"
+msgstr "New"
 
-#: mod/events.php:491
-msgid "Description:"
-msgstr "Description:"
+#: mod/network.php:849
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - by date"
 
-#: mod/events.php:495 mod/events.php:497
-msgid "Title:"
-msgstr "Title:"
+#: mod/network.php:857
+msgid "Shared Links"
+msgstr "Shared links"
 
-#: mod/events.php:498 mod/events.php:499
-msgid "Share this event"
-msgstr "Share this event"
+#: mod/network.php:860
+msgid "Interesting Links"
+msgstr "Interesting links"
 
-#: mod/events.php:528
-msgid "Failed to remove event"
-msgstr "Failed to remove event"
+#: mod/network.php:868
+msgid "Starred"
+msgstr "Starred"
 
-#: mod/events.php:530
-msgid "Event removed"
-msgstr "Event removed"
+#: mod/network.php:871
+msgid "Favourite Posts"
+msgstr "My favourite posts"
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "You already added this contact."
+#: mod/newmember.php:7
+msgid "Welcome to Friendica"
+msgstr "Welcome to Friendica"
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora support isn't enabled. Contact can't be added."
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "New Member Checklist"
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus support is disabled. Contact can't be added."
+#: mod/newmember.php:10
+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 "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."
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "The network type couldn't be detected. Contact can't be added."
+#: mod/newmember.php:11
+msgid "Getting Started"
+msgstr "Getting started"
 
-#: mod/follow.php:186
-msgid "Contact added"
-msgstr "Contact added"
+#: mod/newmember.php:13
+msgid "Friendica Walk-Through"
+msgstr "Friendica walk-through"
 
-#: mod/friendica.php:68
-msgid "This is Friendica, version"
-msgstr "This is Friendica, version"
+#: mod/newmember.php:13
+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 "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."
 
-#: mod/friendica.php:69
-msgid "running at web location"
-msgstr "running at web location"
+#: mod/newmember.php:17
+msgid "Go to Your Settings"
+msgstr "Go to your settings"
 
-#: mod/friendica.php:73
+#: mod/newmember.php:17
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."
+"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 "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."
 
-#: mod/friendica.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Bug reports and issues: please visit"
+#: mod/newmember.php:18
+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 "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."
 
-#: mod/friendica.php:77
-msgid "the bugtracker at github"
-msgstr "the bugtracker at github"
+#: mod/newmember.php:22 mod/profile_photo.php:255 mod/profiles.php:703
+msgid "Upload Profile Photo"
+msgstr "Upload profile photo"
 
-#: mod/friendica.php:80
+#: mod/newmember.php:22
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"
+"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 "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."
 
-#: mod/friendica.php:94
-msgid "Installed plugins/addons/apps:"
-msgstr "Installed plugins/addons/apps:"
+#: mod/newmember.php:23
+msgid "Edit Your Profile"
+msgstr "Edit your profile"
 
-#: mod/friendica.php:108
-msgid "No installed plugins/addons/apps"
-msgstr "No installed plugins/addons/apps"
+#: mod/newmember.php:23
+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 "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."
 
-#: mod/friendica.php:113
-msgid "On this server the following remote servers are blocked."
-msgstr "On this server the following remote servers are blocked."
+#: mod/newmember.php:24
+msgid "Profile Keywords"
+msgstr "Profile keywords"
 
-#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
-msgid "Reason for the block"
-msgstr "Reason for the block"
+#: mod/newmember.php:24
+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 "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."
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Group created."
+#: mod/newmember.php:26
+msgid "Connecting"
+msgstr "Connecting"
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Could not create group."
+#: mod/newmember.php:32
+msgid "Importing Emails"
+msgstr "Importing emails"
 
-#: mod/group.php:49 mod/group.php:154
-msgid "Group not found."
-msgstr "Group not found."
+#: mod/newmember.php:32
+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 "Enter your email access information on your Connector Settings if you wish to import and interact with friends or mailing lists from your email INBOX"
 
-#: mod/group.php:63
-msgid "Group name changed."
-msgstr "Group name changed."
+#: mod/newmember.php:35
+msgid "Go to Your Contacts Page"
+msgstr "Go to your contacts page"
 
-#: mod/group.php:93
-msgid "Save Group"
-msgstr "Save group"
+#: mod/newmember.php:35
+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 "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."
 
-#: mod/group.php:98
-msgid "Create a group of contacts/friends."
-msgstr "Create a group of contacts/friends."
+#: mod/newmember.php:36
+msgid "Go to Your Site's Directory"
+msgstr "Go to your site's directory"
 
-#: mod/group.php:123
-msgid "Group removed."
-msgstr "Group removed."
+#: mod/newmember.php:36
+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 "The directory 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 when requested."
 
-#: mod/group.php:125
-msgid "Unable to remove group."
-msgstr "Unable to remove group."
+#: mod/newmember.php:37
+msgid "Finding New People"
+msgstr "Finding new people"
 
-#: mod/group.php:189
-msgid "Delete Group"
-msgstr "Delete group"
+#: mod/newmember.php:37
+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 "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."
 
-#: mod/group.php:195
-msgid "Group Editor"
-msgstr "Group Editor"
+#: mod/newmember.php:41
+msgid "Group Your Contacts"
+msgstr "Group your contacts"
 
-#: mod/group.php:200
-msgid "Edit Group Name"
-msgstr "Edit group name"
+#: mod/newmember.php:41
+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 "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."
 
-#: mod/group.php:210
-msgid "Members"
-msgstr "Members"
+#: mod/newmember.php:44
+msgid "Why Aren't My Posts Public?"
+msgstr "Why aren't my posts public?"
 
-#: mod/group.php:226
-msgid "Remove Contact"
-msgstr "Remove contact"
+#: mod/newmember.php:44
+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 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."
 
-#: mod/group.php:250
-msgid "Add Contact"
-msgstr "Add contact"
+#: mod/newmember.php:48
+msgid "Getting Help"
+msgstr "Getting help"
 
-#: mod/manage.php:151
-msgid "Manage Identities and/or Pages"
-msgstr "Manage identities/pages"
+#: mod/newmember.php:50
+msgid "Go to the Help Section"
+msgstr "Go to the help section"
 
-#: mod/manage.php:152
+#: mod/newmember.php:50
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Accounts that I manage or own."
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
 
-#: mod/manage.php:153
-msgid "Select an identity to manage: "
-msgstr "Select identity:"
+#: mod/nogroup.php:45 mod/viewcontacts.php:105 mod/contacts.php:597
+#: mod/contacts.php:941
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visit %s's profile [%s]"
 
-#: mod/message.php:64
-msgid "Unable to locate contact information."
-msgstr "Unable to locate contact information."
+#: mod/nogroup.php:46 mod/contacts.php:942
+msgid "Edit contact"
+msgstr "Edit contact"
 
-#: mod/message.php:204
-msgid "Do you really want to delete this message?"
-msgstr "Do you really want to delete this message?"
+#: mod/nogroup.php:67
+msgid "Contacts who are not members of a group"
+msgstr "Contacts who are not members of a group"
 
-#: mod/message.php:224
-msgid "Message deleted."
-msgstr "Message deleted."
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/message.php:255
-msgid "Conversation removed."
-msgstr "Conversation removed."
+#: mod/notifications.php:46 mod/notifications.php:182
+#: mod/notifications.php:229
+msgid "Discard"
+msgstr "Discard"
 
-#: mod/message.php:364
-msgid "No messages."
-msgstr "No messages."
+#: mod/notifications.php:62 mod/notifications.php:181
+#: mod/notifications.php:265 mod/contacts.php:617 mod/contacts.php:817
+#: mod/contacts.php:1002
+msgid "Ignore"
+msgstr "Ignore"
 
-#: mod/message.php:403
-msgid "Message not available."
-msgstr "Message not available."
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Network notifications"
 
-#: mod/message.php:477
-msgid "Delete message"
-msgstr "Delete message"
+#: mod/notifications.php:113 mod/notify.php:72
+msgid "System Notifications"
+msgstr "System notifications"
 
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
-msgstr "Delete conversation"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Personal notifications"
 
-#: mod/message.php:505
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr ""
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Home notifications"
 
-#: mod/message.php:509
-msgid "Send Reply"
-msgstr "Send reply"
+#: mod/notifications.php:154
+msgid "Show Ignored Requests"
+msgstr "Show ignored requests."
 
-#: mod/message.php:561
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Unknown sender - %s"
+#: mod/notifications.php:154
+msgid "Hide Ignored Requests"
+msgstr "Hide ignored requests"
 
-#: mod/message.php:563
-#, php-format
-msgid "You and %s"
-msgstr "Me and %s"
+#: mod/notifications.php:166 mod/notifications.php:236
+msgid "Notification type: "
+msgstr "Notification type: "
 
-#: mod/message.php:565
+#: mod/notifications.php:169
 #, php-format
-msgid "%s and You"
-msgstr "%s and me"
+msgid "suggested by %s"
+msgstr "suggested by %s"
 
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: mod/notifications.php:174 mod/notifications.php:253 mod/contacts.php:624
+msgid "Hide this contact from others"
+msgstr "Hide this contact from others"
 
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: mod/notifications.php:175 mod/notifications.php:254
+msgid "Post a new friend activity"
+msgstr "Post a new friend activity"
 
-#: mod/network.php:197 mod/search.php:25
-msgid "Remove term"
-msgstr "Remove term"
+#: mod/notifications.php:175 mod/notifications.php:254
+msgid "if applicable"
+msgstr "if applicable"
 
-#: mod/network.php:404
-#, 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] "Warning: This group contains %s member from a network that doesn't allow non public messages."
-msgstr[1] "Warning: This group contains %s members from a network that doesn't allow non public messages."
+#: mod/notifications.php:178 mod/notifications.php:263 mod/admin.php:1512
+msgid "Approve"
+msgstr "Approve"
 
-#: mod/network.php:407
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Messages in this group won't be send to these receivers."
+#: mod/notifications.php:197
+msgid "Claims to be known to you: "
+msgstr "Says they know me:"
 
-#: mod/network.php:535
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private messages to this person are at risk of public disclosure."
+#: mod/notifications.php:198
+msgid "yes"
+msgstr "yes"
 
-#: mod/network.php:540
-msgid "Invalid contact."
-msgstr "Invalid contact."
+#: mod/notifications.php:198
+msgid "no"
+msgstr "no"
 
-#: mod/network.php:813
-msgid "Commented Order"
-msgstr "Commented last"
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Shall your connection be in both directions or not?"
 
-#: mod/network.php:816
-msgid "Sort by Comment Date"
-msgstr "Sort by comment date"
+#: mod/notifications.php:200 mod/notifications.php:205
+#, 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 "Accepting %s as a friend allows %s to subscribe to your posts; you will also receive updates from them in your news feed."
 
-#: mod/network.php:821
-msgid "Posted Order"
-msgstr "Posted last"
+#: mod/notifications.php:201
+#, 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 "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 
-#: mod/network.php:824
-msgid "Sort by Post Date"
-msgstr "Sort by post date"
+#: mod/notifications.php:206
+#, 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 "Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 
-#: mod/network.php:835
-msgid "Posts that mention or involve you"
-msgstr "Posts mentioning or involving me"
+#: mod/notifications.php:217
+msgid "Friend"
+msgstr "Friend"
 
-#: mod/network.php:843
-msgid "New"
-msgstr "New"
+#: mod/notifications.php:218
+msgid "Sharer"
+msgstr "Sharer"
 
-#: mod/network.php:846
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - by date"
+#: mod/notifications.php:218
+msgid "Subscriber"
+msgstr "Subscriber"
 
-#: mod/network.php:854
-msgid "Shared Links"
-msgstr "Shared links"
+#: mod/notifications.php:274
+msgid "No introductions."
+msgstr "No introductions."
 
-#: mod/network.php:857
-msgid "Interesting Links"
-msgstr "Interesting links"
+#: mod/notifications.php:315
+msgid "Show unread"
+msgstr "Show unread"
 
-#: mod/network.php:865
-msgid "Starred"
-msgstr "Starred"
+#: mod/notifications.php:315
+msgid "Show all"
+msgstr "Show all"
 
-#: mod/network.php:868
-msgid "Favourite Posts"
-msgstr "My favourite posts"
+#: mod/notifications.php:321
+#, php-format
+msgid "No more %s notifications."
+msgstr "No more %s notifications."
+
+#: mod/notify.php:68
+msgid "No more system notifications."
+msgstr "No more system notifications."
+
+#: mod/oexchange.php:24
+msgid "Post successful."
+msgstr "Post successful."
 
 #: mod/openid.php:24
 msgid "OpenID protocol error. No ID returned."
@@ -5451,3338 +5117,3635 @@ msgid ""
 "Account not found and OpenID registration is not permitted on this site."
 msgstr "Account not found and OpenID registration is not permitted on this site."
 
-#: mod/photos.php:94 mod/photos.php:1900
+#: mod/ostatus_subscribe.php:16
+msgid "Subscribing to OStatus contacts"
+msgstr "Subscribing to OStatus contacts"
+
+#: mod/ostatus_subscribe.php:27
+msgid "No contact provided."
+msgstr "No contact provided."
+
+#: mod/ostatus_subscribe.php:33
+msgid "Couldn't fetch information for contact."
+msgstr "Couldn't fetch information for contact."
+
+#: mod/ostatus_subscribe.php:42
+msgid "Couldn't fetch friends for contact."
+msgstr "Couldn't fetch friends for contact."
+
+#: mod/ostatus_subscribe.php:56 mod/repair_ostatus.php:46
+msgid "Done"
+msgstr "Done"
+
+#: mod/ostatus_subscribe.php:70
+msgid "success"
+msgstr "success"
+
+#: mod/ostatus_subscribe.php:72
+msgid "failed"
+msgstr "failed"
+
+#: mod/ostatus_subscribe.php:80 mod/repair_ostatus.php:52
+msgid "Keep this window open until done."
+msgstr "Keep this window open until done."
+
+#: mod/p.php:12
+msgid "Not Extended"
+msgstr "Not extended"
+
+#: mod/photos.php:96 mod/photos.php:1902
 msgid "Recent Photos"
 msgstr "Recent photos"
 
-#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
+#: mod/photos.php:99 mod/photos.php:1330 mod/photos.php:1904
 msgid "Upload New Photos"
 msgstr "Upload new photos"
 
-#: mod/photos.php:112 mod/settings.php:36
+#: mod/photos.php:114 mod/settings.php:38
 msgid "everybody"
 msgstr "everybody"
 
-#: mod/photos.php:176
+#: mod/photos.php:178
 msgid "Contact information unavailable"
 msgstr "Contact information unavailable"
 
-#: mod/photos.php:197
+#: mod/photos.php:199
 msgid "Album not found."
 msgstr "Album not found."
 
-#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
+#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1274
 msgid "Delete Album"
 msgstr "Delete album"
 
-#: mod/photos.php:240
+#: mod/photos.php:242
 msgid "Do you really want to delete this photo album and all its photos?"
 msgstr "Do you really want to delete this photo album and all its photos?"
 
-#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
+#: mod/photos.php:325 mod/photos.php:336 mod/photos.php:1600
 msgid "Delete Photo"
 msgstr "Delete photo"
 
-#: mod/photos.php:332
+#: mod/photos.php:334
 msgid "Do you really want to delete this photo?"
 msgstr "Do you really want to delete this photo?"
 
-#: mod/photos.php:713
+#: mod/photos.php:715
 #, php-format
 msgid "%1$s was tagged in %2$s by %3$s"
 msgstr "%1$s was tagged in %2$s by %3$s"
 
-#: mod/photos.php:713
+#: mod/photos.php:715
 msgid "a photo"
 msgstr "a photo"
 
-#: mod/photos.php:821
+#: mod/photos.php:815 mod/wall_upload.php:181 mod/profile_photo.php:155
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Image exceeds size limit of %s"
+
+#: mod/photos.php:823
 msgid "Image file is empty."
 msgstr "Image file is empty."
 
-#: mod/photos.php:988
+#: mod/photos.php:856 mod/wall_upload.php:218 mod/profile_photo.php:164
+msgid "Unable to process image."
+msgstr "Unable to process image."
+
+#: mod/photos.php:885 mod/wall_upload.php:257 mod/profile_photo.php:314
+msgid "Image upload failed."
+msgstr "Image upload failed."
+
+#: mod/photos.php:990
 msgid "No photos selected"
 msgstr "No photos selected"
 
-#: mod/photos.php:1091 mod/videos.php:309
+#: mod/photos.php:1093 mod/videos.php:311
 msgid "Access to this item is restricted."
 msgstr "Access to this item is restricted."
 
-#: mod/photos.php:1151
+#: mod/photos.php:1153
 #, php-format
 msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 
-#: mod/photos.php:1188
+#: mod/photos.php:1190
 msgid "Upload Photos"
 msgstr "Upload photos"
 
-#: mod/photos.php:1192 mod/photos.php:1267
+#: mod/photos.php:1194 mod/photos.php:1269
 msgid "New album name: "
 msgstr "New album name: "
 
-#: mod/photos.php:1193
+#: mod/photos.php:1195
 msgid "or existing album name: "
 msgstr "or existing album name: "
 
-#: mod/photos.php:1194
+#: mod/photos.php:1196
 msgid "Do not show a status post for this upload"
 msgstr "Do not show a status post for this upload"
 
-#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
+#: mod/photos.php:1207 mod/photos.php:1604 mod/settings.php:1308
 msgid "Show to Groups"
-msgstr ""
+msgstr "Show to groups"
 
-#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1309
 msgid "Show to Contacts"
-msgstr ""
+msgstr "Show to contacts"
 
-#: mod/photos.php:1207
+#: mod/photos.php:1209
 msgid "Private Photo"
-msgstr ""
+msgstr "Private photo"
 
-#: mod/photos.php:1208
+#: mod/photos.php:1210
 msgid "Public Photo"
-msgstr ""
+msgstr "Public photo"
 
-#: mod/photos.php:1278
+#: mod/photos.php:1280
 msgid "Edit Album"
-msgstr ""
+msgstr "Edit album"
 
-#: mod/photos.php:1283
+#: mod/photos.php:1285
 msgid "Show Newest First"
-msgstr ""
+msgstr "Show newest first"
 
-#: mod/photos.php:1285
+#: mod/photos.php:1287
 msgid "Show Oldest First"
-msgstr ""
+msgstr "Show oldest first"
 
-#: mod/photos.php:1314 mod/photos.php:1885
+#: mod/photos.php:1316 mod/photos.php:1887
 msgid "View Photo"
-msgstr ""
+msgstr "View photo"
 
-#: mod/photos.php:1359
+#: mod/photos.php:1361
 msgid "Permission denied. Access to this item may be restricted."
-msgstr ""
+msgstr "Permission denied. Access to this item may be restricted."
 
-#: mod/photos.php:1361
+#: mod/photos.php:1363
 msgid "Photo not available"
-msgstr ""
+msgstr "Photo not available"
 
-#: mod/photos.php:1422
+#: mod/photos.php:1424
 msgid "View photo"
-msgstr ""
+msgstr "View photo"
 
-#: mod/photos.php:1422
+#: mod/photos.php:1424
 msgid "Edit photo"
-msgstr ""
+msgstr "Edit photo"
 
-#: mod/photos.php:1423
+#: mod/photos.php:1425
 msgid "Use as profile photo"
-msgstr ""
+msgstr "Use as profile photo"
 
-#: mod/photos.php:1448
+#: mod/photos.php:1450
 msgid "View Full Size"
-msgstr ""
+msgstr "View full size"
 
-#: mod/photos.php:1538
+#: mod/photos.php:1540
 msgid "Tags: "
-msgstr ""
+msgstr "Tags: "
 
-#: mod/photos.php:1541
+#: mod/photos.php:1543
 msgid "[Remove any tag]"
-msgstr ""
+msgstr "[Remove any tag]"
 
-#: mod/photos.php:1584
+#: mod/photos.php:1586
 msgid "New album name"
-msgstr ""
+msgstr "New album name"
 
-#: mod/photos.php:1585
+#: mod/photos.php:1587
 msgid "Caption"
-msgstr ""
+msgstr "Caption"
 
-#: mod/photos.php:1586
+#: mod/photos.php:1588
 msgid "Add a Tag"
 msgstr "Add Tag"
 
-#: mod/photos.php:1586
+#: mod/photos.php:1588
 msgid ""
 "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr ""
+msgstr "Example: @bob, @jojo@example.com, #California, #camping"
 
-#: mod/photos.php:1587
+#: mod/photos.php:1589
 msgid "Do not rotate"
-msgstr ""
+msgstr "Do not rotate"
 
-#: mod/photos.php:1588
+#: mod/photos.php:1590
 msgid "Rotate CW (right)"
-msgstr ""
+msgstr "Rotate right (CW)"
 
-#: mod/photos.php:1589
+#: mod/photos.php:1591
 msgid "Rotate CCW (left)"
-msgstr ""
+msgstr "Rotate left (CCW)"
 
-#: mod/photos.php:1604
+#: mod/photos.php:1606
 msgid "Private photo"
-msgstr ""
+msgstr "Private photo"
 
-#: mod/photos.php:1605
+#: mod/photos.php:1607
 msgid "Public photo"
-msgstr ""
+msgstr "Public photo"
 
-#: mod/photos.php:1814
+#: mod/photos.php:1816
 msgid "Map"
-msgstr ""
+msgstr "Map"
 
-#: mod/photos.php:1891 mod/videos.php:393
+#: mod/photos.php:1893 mod/videos.php:395
 msgid "View Album"
-msgstr ""
+msgstr "View album"
 
-#: mod/probe.php:10 mod/webfinger.php:9
-msgid "Only logged in users are permitted to perform a probing."
-msgstr ""
+#: mod/ping.php:273
+msgid "{0} wants to be your friend"
+msgstr "{0} wants to be your friend"
+
+#: mod/ping.php:288
+msgid "{0} sent you a message"
+msgstr "{0} sent you a message"
+
+#: mod/ping.php:303
+msgid "{0} requested registration"
+msgstr "{0} requested registration"
+
+#: mod/poke.php:197
+msgid "Poke/Prod"
+msgstr "Poke/Prod"
 
-#: mod/profile.php:175
+#: mod/poke.php:198
+msgid "poke, prod or do other things to somebody"
+msgstr "Poke, prod or do other things to somebody"
+
+#: mod/poke.php:199
+msgid "Recipient"
+msgstr "Recipient:"
+
+#: mod/poke.php:200
+msgid "Choose what you wish to do to recipient"
+msgstr "Choose what you wish to do:"
+
+#: mod/poke.php:203
+msgid "Make this post private"
+msgstr "Make this post private"
+
+#: mod/profile.php:176
 msgid "Tips for New Members"
-msgstr ""
+msgstr "Tips for New Members"
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr ""
+#: mod/profperm.php:28 mod/profperm.php:59
+msgid "Invalid profile identifier."
+msgstr "Invalid profile identifier."
 
-#: mod/profiles.php:54 mod/profiles.php:90
-msgid "Profile-"
-msgstr ""
+#: mod/profperm.php:105
+msgid "Profile Visibility Editor"
+msgstr "Profile Visibility Editor"
 
-#: mod/profiles.php:73 mod/profiles.php:118
-msgid "New profile created."
-msgstr ""
+#: mod/profperm.php:118
+msgid "Visible To"
+msgstr "Visible to"
+
+#: mod/profperm.php:134
+msgid "All Contacts (with secure profile access)"
+msgstr "All contacts with secure profile access"
+
+#: mod/register.php:95
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registration successful. Please check your email for further instructions."
+
+#: mod/register.php:100
+#, 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 "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
+
+#: mod/register.php:107
+msgid "Registration successful."
+msgstr "Registration successful."
+
+#: mod/register.php:113
+msgid "Your registration can not be processed."
+msgstr "Your registration cannot be processed."
+
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
+msgstr "Your registration is pending approval by the site administrator."
+
+#: mod/register.php:200 mod/uimport.php:53
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
+
+#: mod/register.php:228
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."
+
+#: mod/register.php:229
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
+
+#: mod/register.php:230
+msgid "Your OpenID (optional): "
+msgstr "Your OpenID (optional): "
+
+#: mod/register.php:244
+msgid "Include your profile in member directory?"
+msgstr "Include your profile in member directory?"
+
+#: mod/register.php:269
+msgid "Note for the admin"
+msgstr "Note for the admin"
+
+#: mod/register.php:269
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Leave a message for the admin, why you want to join this node."
+
+#: mod/register.php:270
+msgid "Membership on this site is by invitation only."
+msgstr "Membership on this site is by invitation only."
+
+#: mod/register.php:271
+msgid "Your invitation ID: "
+msgstr "Your invitation ID: "
+
+#: mod/register.php:274 mod/admin.php:1062
+msgid "Registration"
+msgstr "Registration"
+
+#: mod/register.php:282
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Your full name: "
+
+#: mod/register.php:283
+msgid "Your Email Address: "
+msgstr "Your email address: "
+
+#: mod/register.php:285 mod/settings.php:1279
+msgid "New Password:"
+msgstr "New password:"
+
+#: mod/register.php:285
+msgid "Leave empty for an auto generated password."
+msgstr "Leave empty for an auto generated password."
+
+#: mod/register.php:286 mod/settings.php:1280
+msgid "Confirm:"
+msgstr "Confirm new password:"
+
+#: mod/register.php:287
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@$sitename</strong>'."
+
+#: mod/register.php:288
+msgid "Choose a nickname: "
+msgstr "Choose a nickname: "
+
+#: mod/register.php:297 mod/uimport.php:68
+msgid "Import"
+msgstr "Import profile"
+
+#: mod/register.php:298
+msgid "Import your profile to this friendica instance"
+msgstr "Import an existing Friendica profile to this node."
+
+#: mod/removeme.php:54 mod/removeme.php:57
+msgid "Remove My Account"
+msgstr "Remove my account"
+
+#: mod/removeme.php:55
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "This will completely remove your account. Once this has been done it is not recoverable."
+
+#: mod/removeme.php:56
+msgid "Please enter your password for verification:"
+msgstr "Please enter your password for verification:"
+
+#: mod/repair_ostatus.php:16
+msgid "Resubscribing to OStatus contacts"
+msgstr "Resubscribing to OStatus contacts"
+
+#: mod/repair_ostatus.php:32
+msgid "Error"
+msgstr "Error"
+
+#: mod/search.php:103
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Only logged in users are permitted to perform a search."
+
+#: mod/search.php:127
+msgid "Too Many Requests"
+msgstr "Too many requests"
+
+#: mod/search.php:128
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Only one search per minute is permitted for not logged in users."
+
+#: mod/search.php:228
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Items tagged with: %s"
+
+#: mod/subthread.php:105
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s is following %2$s's %3$s"
+
+#: mod/suggest.php:29
+msgid "Do you really want to delete this suggestion?"
+msgstr "Do you really want to delete this suggestion?"
+
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "No suggestions available. If this is a new site, please try again in 24 hours."
+
+#: mod/suggest.php:86 mod/suggest.php:106
+msgid "Ignore/Hide"
+msgstr "Ignore/Hide"
+
+#: mod/tagrm.php:45
+msgid "Tag removed"
+msgstr "Tag removed"
+
+#: mod/tagrm.php:84
+msgid "Remove Item Tag"
+msgstr "Remove Item tag"
+
+#: mod/tagrm.php:86
+msgid "Select a tag to remove: "
+msgstr "Select a tag to remove: "
+
+#: mod/uexport.php:38
+msgid "Export account"
+msgstr "Export account"
+
+#: mod/uexport.php:38
+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 "Export your account info and contacts. Use this to backup your account or to move it to another server."
+
+#: mod/uexport.php:39
+msgid "Export all"
+msgstr "Export all"
+
+#: mod/uexport.php:39
+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 "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"
+
+#: mod/uexport.php:46 mod/settings.php:97
+msgid "Export personal data"
+msgstr "Export personal data"
+
+#: mod/update_community.php:21 mod/update_display.php:25
+#: mod/update_network.php:29 mod/update_notes.php:38 mod/update_profile.php:37
+msgid "[Embedded content - reload page to view]"
+msgstr "[Embedded content - reload page to view]"
+
+#: mod/videos.php:126
+msgid "Do you really want to delete this video?"
+msgstr "Do you really want to delete this video?"
+
+#: mod/videos.php:131
+msgid "Delete Video"
+msgstr "Delete video"
+
+#: mod/videos.php:210
+msgid "No videos selected"
+msgstr "No videos selected"
+
+#: mod/videos.php:404
+msgid "Recent Videos"
+msgstr "Recent videos"
+
+#: mod/videos.php:406
+msgid "Upload New Videos"
+msgstr "Upload new videos"
+
+#: mod/viewcontacts.php:78
+msgid "No contacts."
+msgstr "No contacts."
+
+#: mod/viewsrc.php:8
+msgid "Access denied."
+msgstr "Access denied."
+
+#: mod/wall_attach.php:19 mod/wall_attach.php:27 mod/wall_attach.php:78
+#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
+#: mod/wall_upload.php:150 mod/wall_upload.php:153
+msgid "Invalid request."
+msgstr "Invalid request."
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr ""
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Sorry, maybe your upload is bigger than the PHP configuration allows"
 
-#: mod/profiles.php:192
-msgid "Profile Name is required."
-msgstr ""
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "Or did you try to upload an empty file?"
 
-#: mod/profiles.php:332
-msgid "Marital Status"
-msgstr ""
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "File exceeds size limit of %s"
 
-#: mod/profiles.php:336
-msgid "Romantic Partner"
-msgstr ""
+#: mod/wall_attach.php:160 mod/wall_attach.php:176
+msgid "File upload failed."
+msgstr "File upload failed."
 
-#: mod/profiles.php:348
-msgid "Work/Employment"
-msgstr ""
+#: mod/wallmessage.php:44 mod/wallmessage.php:108
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Number of daily wall messages for %s exceeded. Message failed."
 
-#: mod/profiles.php:351
-msgid "Religion"
-msgstr ""
+#: mod/wallmessage.php:55
+msgid "Unable to check your home location."
+msgstr "Unable to check your home location."
 
-#: mod/profiles.php:355
-msgid "Political Views"
-msgstr ""
+#: mod/wallmessage.php:82 mod/wallmessage.php:91
+msgid "No recipient."
+msgstr "No recipient."
 
-#: mod/profiles.php:359
-msgid "Gender"
-msgstr ""
+#: mod/wallmessage.php:129
+#, 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 "If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."
 
-#: mod/profiles.php:363
-msgid "Sexual Preference"
-msgstr ""
+#: mod/webfinger.php:11 mod/probe.php:10
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Only logged in users are permitted to perform a probing."
 
-#: mod/profiles.php:367
-msgid "XMPP"
-msgstr ""
+#: mod/dfrn_request.php:103
+msgid "This introduction has already been accepted."
+msgstr "This introduction has already been accepted."
 
-#: mod/profiles.php:371
-msgid "Homepage"
-msgstr ""
+#: mod/dfrn_request.php:126 mod/dfrn_request.php:528
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profile location is not valid or does not contain profile information."
 
-#: mod/profiles.php:375 mod/profiles.php:695
-msgid "Interests"
-msgstr ""
+#: mod/dfrn_request.php:131 mod/dfrn_request.php:533
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warning: profile location has no identifiable owner name."
 
-#: mod/profiles.php:379
-msgid "Address"
-msgstr ""
+#: mod/dfrn_request.php:134 mod/dfrn_request.php:536
+msgid "Warning: profile location has no profile photo."
+msgstr "Warning: profile location has no profile photo."
 
-#: mod/profiles.php:386 mod/profiles.php:691
-msgid "Location"
-msgstr ""
+#: mod/dfrn_request.php:138 mod/dfrn_request.php:540
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d required parameter was not found at the given location"
+msgstr[1] "%d required parameters were not found at the given location"
 
-#: mod/profiles.php:471
-msgid "Profile updated."
-msgstr ""
+#: mod/dfrn_request.php:182
+msgid "Introduction complete."
+msgstr "Introduction complete."
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr ""
+#: mod/dfrn_request.php:227
+msgid "Unrecoverable protocol error."
+msgstr "Unrecoverable protocol error."
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr ""
+#: mod/dfrn_request.php:255
+msgid "Profile unavailable."
+msgstr "Profile unavailable."
 
-#: mod/profiles.php:576
+#: mod/dfrn_request.php:282
 #, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr ""
+msgid "%s has received too many connection requests today."
+msgstr "%s has received too many connection requests today."
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr ""
+#: mod/dfrn_request.php:283
+msgid "Spam protection measures have been invoked."
+msgstr "Spam protection measures have been invoked."
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr ""
+#: mod/dfrn_request.php:284
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Friends are advised to please try again in 24 hours."
 
-#: mod/profiles.php:637
-msgid "Hide contacts and friends:"
-msgstr ""
+#: mod/dfrn_request.php:346
+msgid "Invalid locator"
+msgstr "Invalid locator"
 
-#: mod/profiles.php:642
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr ""
+#: mod/dfrn_request.php:355
+msgid "Invalid email address."
+msgstr "Invalid email address."
 
-#: mod/profiles.php:667
-msgid "Show more profile fields:"
-msgstr ""
+#: mod/dfrn_request.php:380
+msgid "This account has not been configured for email. Request failed."
+msgstr "This account has not been configured for email. Request failed."
 
-#: mod/profiles.php:679
-msgid "Profile Actions"
-msgstr ""
+#: mod/dfrn_request.php:483
+msgid "You have already introduced yourself here."
+msgstr "You have already introduced yourself here."
 
-#: mod/profiles.php:680
-msgid "Edit Profile Details"
-msgstr ""
+#: mod/dfrn_request.php:487
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Apparently you are already friends with %s."
 
-#: mod/profiles.php:682
-msgid "Change Profile Photo"
-msgstr ""
+#: mod/dfrn_request.php:508
+msgid "Invalid profile URL."
+msgstr "Invalid profile URL."
 
-#: mod/profiles.php:683
-msgid "View this profile"
-msgstr ""
+#: mod/dfrn_request.php:593 mod/contacts.php:221
+msgid "Failed to update contact record."
+msgstr "Failed to update contact record."
 
-#: mod/profiles.php:685
-msgid "Create a new profile using these settings"
-msgstr ""
+#: mod/dfrn_request.php:614
+msgid "Your introduction has been sent."
+msgstr "Your introduction has been sent."
 
-#: mod/profiles.php:686
-msgid "Clone this profile"
-msgstr ""
+#: mod/dfrn_request.php:656
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Remote subscription can't be done for your network. Please subscribe directly on your system."
 
-#: mod/profiles.php:687
-msgid "Delete this profile"
-msgstr ""
+#: mod/dfrn_request.php:677
+msgid "Please login to confirm introduction."
+msgstr "Please login to confirm introduction."
 
-#: mod/profiles.php:689
-msgid "Basic information"
-msgstr ""
+#: mod/dfrn_request.php:687
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Incorrect identity currently logged in. Please login to <strong>this</strong> profile."
 
-#: mod/profiles.php:690
-msgid "Profile picture"
-msgstr ""
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
+msgid "Confirm"
+msgstr "Confirm"
 
-#: mod/profiles.php:692
-msgid "Preferences"
-msgstr ""
+#: mod/dfrn_request.php:713
+msgid "Hide this contact"
+msgstr "Hide this contact"
 
-#: mod/profiles.php:693
-msgid "Status information"
-msgstr ""
+#: mod/dfrn_request.php:716
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
 
-#: mod/profiles.php:694
-msgid "Additional information"
-msgstr ""
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Please confirm your introduction/connection request to %s."
 
-#: mod/profiles.php:697
-msgid "Relation"
-msgstr ""
+#: mod/dfrn_request.php:848
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Please enter your 'Identity address' from one of the following supported communications networks:"
 
-#: mod/profiles.php:701
-msgid "Your Gender:"
-msgstr ""
+#: mod/dfrn_request.php:872
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."
 
-#: mod/profiles.php:702
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr ""
+#: mod/dfrn_request.php:877
+msgid "Friend/Connection Request"
+msgstr "Friend/Connection request"
 
-#: mod/profiles.php:704
-msgid "Example: fishing photography software"
-msgstr ""
+#: mod/dfrn_request.php:878
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca"
 
-#: mod/profiles.php:709
-msgid "Profile Name:"
-msgstr ""
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated social web"
 
-#: mod/profiles.php:711
+#: mod/dfrn_request.php:889
+#, php-format
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - please do not use this form.  Instead, enter %s into your Diaspora search bar."
 
-#: mod/profiles.php:712
-msgid "Your Full Name:"
-msgstr ""
+#: mod/item.php:118
+msgid "Unable to locate original post."
+msgstr "Unable to locate original post."
 
-#: mod/profiles.php:713
-msgid "Title/Description:"
-msgstr ""
+#: mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Empty post discarded."
 
-#: mod/profiles.php:716
-msgid "Street Address:"
-msgstr ""
+#: mod/item.php:904
+msgid "System error. Post not saved."
+msgstr "System error. Post not saved."
 
-#: mod/profiles.php:717
-msgid "Locality/City:"
-msgstr ""
+#: mod/item.php:995
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "This message was sent to you by %s, a member of the Friendica social network."
+
+#: mod/item.php:997
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "You may visit them online at %s"
+
+#: mod/item.php:998
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Please contact the sender by replying to this post if you do not wish to receive these messages."
+
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
+msgstr "%s posted an update."
 
-#: mod/profiles.php:718
-msgid "Region/State:"
-msgstr ""
+#: mod/regmod.php:60
+msgid "Account approved."
+msgstr "Account approved."
 
-#: mod/profiles.php:719
-msgid "Postal/Zip Code:"
-msgstr ""
+#: mod/regmod.php:88
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registration revoked for %s"
 
-#: mod/profiles.php:720
-msgid "Country:"
-msgstr ""
+#: mod/regmod.php:100
+msgid "Please login."
+msgstr "Please login."
 
-#: mod/profiles.php:724
-msgid "Who: (if applicable)"
-msgstr ""
+#: mod/uimport.php:70
+msgid "Move account"
+msgstr "Move Existing Friendica Account"
 
-#: mod/profiles.php:724
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr ""
+#: mod/uimport.php:71
+msgid "You can import an account from another Friendica server."
+msgstr "You can import an existing Friendica profile to this node."
 
-#: mod/profiles.php:725
-msgid "Since [date]:"
-msgstr ""
+#: mod/uimport.php:72
+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 "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
 
-#: mod/profiles.php:727
-msgid "Tell us about yourself..."
-msgstr ""
+#: mod/uimport.php:73
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora."
 
-#: mod/profiles.php:728
-msgid "XMPP (Jabber) address:"
-msgstr ""
+#: mod/uimport.php:74
+msgid "Account file"
+msgstr "Account file:"
 
-#: mod/profiles.php:728
+#: mod/uimport.php:74
 msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "To export your account, go to \"Settings->Export personal data\" and select \"Export account\""
 
-#: mod/profiles.php:729
-msgid "Homepage URL:"
-msgstr ""
+#: mod/admin.php:97
+msgid "Theme settings updated."
+msgstr "Theme settings updated."
 
-#: mod/profiles.php:732
-msgid "Religious Views:"
-msgstr ""
+#: mod/admin.php:166 mod/admin.php:1060
+msgid "Site"
+msgstr "Site"
 
-#: mod/profiles.php:733
-msgid "Public Keywords:"
-msgstr ""
+#: mod/admin.php:167 mod/admin.php:994 mod/admin.php:1504 mod/admin.php:1520
+msgid "Users"
+msgstr "Users"
 
-#: mod/profiles.php:733
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr ""
+#: mod/admin.php:168 mod/admin.php:1622 mod/admin.php:1685 mod/settings.php:76
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/profiles.php:734
-msgid "Private Keywords:"
-msgstr ""
+#: mod/admin.php:169 mod/admin.php:1898 mod/admin.php:1948
+msgid "Themes"
+msgstr "Theme selection"
 
-#: mod/profiles.php:734
-msgid "(Used for searching profiles, never shown to others)"
-msgstr ""
+#: mod/admin.php:170 mod/settings.php:54
+msgid "Additional features"
+msgstr "Additional features"
 
-#: mod/profiles.php:737
-msgid "Musical interests"
-msgstr ""
+#: mod/admin.php:171
+msgid "DB updates"
+msgstr "DB updates"
 
-#: mod/profiles.php:738
-msgid "Books, literature"
-msgstr ""
+#: mod/admin.php:172 mod/admin.php:513
+msgid "Inspect Queue"
+msgstr "Inspect queue"
 
-#: mod/profiles.php:739
-msgid "Television"
-msgstr ""
+#: mod/admin.php:173 mod/admin.php:289
+msgid "Server Blocklist"
+msgstr "Server blocklist"
 
-#: mod/profiles.php:740
-msgid "Film/dance/culture/entertainment"
-msgstr ""
+#: mod/admin.php:174 mod/admin.php:479
+msgid "Federation Statistics"
+msgstr "Federation statistics"
 
-#: mod/profiles.php:741
-msgid "Hobbies/Interests"
-msgstr ""
+#: mod/admin.php:188 mod/admin.php:199 mod/admin.php:2022
+msgid "Logs"
+msgstr "Logs"
 
-#: mod/profiles.php:742
-msgid "Love/romance"
-msgstr ""
+#: mod/admin.php:189 mod/admin.php:2090
+msgid "View Logs"
+msgstr "View logs"
 
-#: mod/profiles.php:743
-msgid "Work/employment"
-msgstr ""
+#: mod/admin.php:190
+msgid "probe address"
+msgstr "Probe address"
 
-#: mod/profiles.php:744
-msgid "School/education"
-msgstr ""
+#: mod/admin.php:191
+msgid "check webfinger"
+msgstr "Check webfinger"
 
-#: mod/profiles.php:745
-msgid "Contact information and Social Networks"
-msgstr ""
+#: mod/admin.php:198
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/profiles.php:786
-msgid "Edit/Manage Profiles"
-msgstr ""
+#: mod/admin.php:200
+msgid "diagnostics"
+msgstr "Diagnostics"
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr ""
+#: mod/admin.php:201
+msgid "User registrations waiting for confirmation"
+msgstr "User registrations awaiting confirmation"
 
-#: mod/register.php:98
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr ""
+#: mod/admin.php:280
+msgid "The blocked domain"
+msgstr "Blocked domain"
 
-#: mod/register.php:105
-msgid "Registration successful."
-msgstr ""
+#: mod/admin.php:281 mod/admin.php:294
+msgid "The reason why you blocked this domain."
+msgstr "Reason why you blocked this domain."
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
-msgstr ""
+#: mod/admin.php:282
+msgid "Delete domain"
+msgstr "Delete domain"
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
-msgstr ""
+#: mod/admin.php:282
+msgid "Check to delete this entry from the blocklist"
+msgstr "Check to delete this entry from the blocklist"
 
-#: mod/register.php:226
+#: mod/admin.php:288 mod/admin.php:478 mod/admin.php:512 mod/admin.php:592
+#: mod/admin.php:1059 mod/admin.php:1503 mod/admin.php:1621 mod/admin.php:1684
+#: mod/admin.php:1897 mod/admin.php:1947 mod/admin.php:2021 mod/admin.php:2089
+msgid "Administration"
+msgstr "Administration"
+
+#: mod/admin.php:290
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr ""
+"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 "This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."
 
-#: mod/register.php:227
+#: mod/admin.php:291
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr ""
+"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 "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason."
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
-msgstr ""
+#: mod/admin.php:292
+msgid "Add new entry to block list"
+msgstr "Add new entry to block list"
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
-msgstr ""
+#: mod/admin.php:293
+msgid "Server Domain"
+msgstr "Server domain"
 
-#: mod/register.php:267
-msgid "Note for the admin"
-msgstr ""
+#: mod/admin.php:293
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "The domain of the new server to add to the block list. Do not include the protocol."
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr ""
+#: mod/admin.php:294
+msgid "Block reason"
+msgstr "Block reason"
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
-msgstr ""
+#: mod/admin.php:295
+msgid "Add Entry"
+msgstr "Add entry"
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr ""
+#: mod/admin.php:296
+msgid "Save changes to the blocklist"
+msgstr "Save changes to the blocklist"
 
-#: mod/register.php:272 mod/admin.php:1056
-msgid "Registration"
-msgstr ""
+#: mod/admin.php:297
+msgid "Current Entries in the Blocklist"
+msgstr "Current entries in the blocklist"
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr ""
+#: mod/admin.php:300
+msgid "Delete entry from blocklist"
+msgstr "Delete entry from blocklist"
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr ""
+#: mod/admin.php:303
+msgid "Delete entry from blocklist?"
+msgstr "Delete entry from blocklist?"
 
-#: mod/register.php:283 mod/settings.php:1278
-msgid "New Password:"
-msgstr "New password:"
+#: mod/admin.php:328
+msgid "Server added to blocklist."
+msgstr "Server added to blocklist."
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
-msgstr ""
+#: mod/admin.php:344
+msgid "Site blocklist updated."
+msgstr "Site blocklist updated."
 
-#: mod/register.php:284 mod/settings.php:1279
-msgid "Confirm:"
-msgstr "Confirm new password:"
+#: mod/admin.php:409
+msgid "unknown"
+msgstr "unknown"
 
-#: mod/register.php:285
+#: mod/admin.php:472
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr ""
+"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 "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and only reflect the part of the network your node is aware of."
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
-msgstr ""
+#: mod/admin.php:473
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here."
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
-msgstr ""
+#: mod/admin.php:485
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Currently this node is aware of %d nodes from the following platforms:"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
+#: mod/admin.php:515
+msgid "ID"
+msgstr "ID"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr ""
+#: mod/admin.php:516
+msgid "Recipient Name"
+msgstr "Recipient name"
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
+#: mod/admin.php:517
+msgid "Recipient Profile"
+msgstr "Recipient profile"
 
-#: mod/search.php:225
-#, php-format
-msgid "Items tagged with: %s"
-msgstr ""
+#: mod/admin.php:519
+msgid "Created"
+msgstr "Created"
 
-#: mod/settings.php:43 mod/admin.php:1490
-msgid "Account"
-msgstr ""
+#: mod/admin.php:520
+msgid "Last Tried"
+msgstr "Last Tried"
 
-#: mod/settings.php:52 mod/admin.php:169
-msgid "Additional features"
+#: mod/admin.php:521
+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/settings.php:60
-msgid "Display"
+#: mod/admin.php:546
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:890
-msgid "Social Networks"
-msgstr "Social networks"
-
-#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
-msgid "Plugins"
+#: mod/admin.php:555
+msgid ""
+"The database update failed. Please run \"php include/dbstructure.php "
+"update\" from the command line and have a look at the errors that might "
+"appear."
 msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr ""
+#: mod/admin.php:560 mod/admin.php:1453
+msgid "Normal Account"
+msgstr "Standard account"
 
-#: mod/settings.php:95 mod/uexport.php:45
-msgid "Export personal data"
-msgstr ""
+#: mod/admin.php:561 mod/admin.php:1454
+msgid "Soapbox Account"
+msgstr "Soapbox account"
 
-#: mod/settings.php:102
-msgid "Remove account"
+#: mod/admin.php:562 mod/admin.php:1455
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: mod/settings.php:157
-msgid "Missing some important data!"
+#: mod/admin.php:563 mod/admin.php:1456
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/settings.php:271
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:564
+msgid "Blog Account"
 msgstr ""
 
-#: mod/settings.php:276
-msgid "Email settings updated."
+#: mod/admin.php:565
+msgid "Private Forum"
 msgstr ""
 
-#: mod/settings.php:291
-msgid "Features updated"
+#: mod/admin.php:587
+msgid "Message queues"
 msgstr ""
 
-#: mod/settings.php:361
-msgid "Relocate message has been send to your contacts"
-msgstr "Relocate message has been send to your contacts"
+#: mod/admin.php:593
+msgid "Summary"
+msgstr "Summary"
 
-#: mod/settings.php:380
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr ""
+#: mod/admin.php:595
+msgid "Registered users"
+msgstr "Registered users"
 
-#: mod/settings.php:388
-msgid "Wrong password."
-msgstr ""
+#: mod/admin.php:597
+msgid "Pending registrations"
+msgstr "Pending registrations"
 
-#: mod/settings.php:399
-msgid "Password changed."
-msgstr ""
+#: mod/admin.php:598
+msgid "Version"
+msgstr "Version"
 
-#: mod/settings.php:401
-msgid "Password update failed. Please try again."
-msgstr ""
+#: mod/admin.php:603
+msgid "Active plugins"
+msgstr "Active plugins"
 
-#: mod/settings.php:481
-msgid " Please use a shorter name."
-msgstr ""
+#: mod/admin.php:628
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Can not parse base URL. Must have at least <scheme>://<domain>"
 
-#: mod/settings.php:483
-msgid " Name too short."
-msgstr ""
+#: mod/admin.php:920
+msgid "Site settings updated."
+msgstr "Site settings updated."
 
-#: mod/settings.php:492
-msgid "Wrong Password"
-msgstr ""
+#: mod/admin.php:948 mod/settings.php:944
+msgid "No special theme for mobile devices"
+msgstr "No special theme for mobile devices"
 
-#: mod/settings.php:497
-msgid " Not valid email."
-msgstr ""
+#: mod/admin.php:977
+msgid "No community page"
+msgstr "No community page"
 
-#: mod/settings.php:503
-msgid " Cannot change to that email."
-msgstr ""
+#: mod/admin.php:978
+msgid "Public postings from users of this site"
+msgstr "Public postings from users of this site"
 
-#: mod/settings.php:559
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
+#: mod/admin.php:979
+msgid "Global community page"
+msgstr "Global community page"
 
-#: mod/settings.php:563
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr ""
+#: mod/admin.php:984 mod/contacts.php:541
+msgid "Never"
+msgstr "Never"
 
-#: mod/settings.php:603
-msgid "Settings updated."
-msgstr ""
+#: mod/admin.php:985
+msgid "At post arrival"
+msgstr "At post arrival"
 
-#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
-msgid "Add application"
-msgstr ""
+#: mod/admin.php:993 mod/contacts.php:568
+msgid "Disabled"
+msgstr "Disabled"
 
-#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
-#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
-#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
-#: mod/admin.php:2170
-msgid "Save Settings"
-msgstr "Save settings"
+#: mod/admin.php:995
+msgid "Users, Global Contacts"
+msgstr "Users, Global Contacts"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Consumer Key"
-msgstr ""
+#: mod/admin.php:996
+msgid "Users, Global Contacts/fallback"
+msgstr "Users, Global Contacts/fallback"
 
-#: mod/settings.php:685 mod/settings.php:711
-msgid "Consumer Secret"
-msgstr ""
+#: mod/admin.php:1000
+msgid "One month"
+msgstr "One month"
 
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Redirect"
-msgstr ""
+#: mod/admin.php:1001
+msgid "Three months"
+msgstr "Three months"
 
-#: mod/settings.php:687 mod/settings.php:713
-msgid "Icon url"
-msgstr ""
+#: mod/admin.php:1002
+msgid "Half a year"
+msgstr "Half a year"
 
-#: mod/settings.php:698
-msgid "You can't edit this application."
-msgstr ""
+#: mod/admin.php:1003
+msgid "One year"
+msgstr "One a year"
 
-#: mod/settings.php:741
-msgid "Connected Apps"
-msgstr ""
+#: mod/admin.php:1008
+msgid "Multi user instance"
+msgstr "Multi user instance"
 
-#: mod/settings.php:745
-msgid "Client key starts with"
-msgstr ""
+#: mod/admin.php:1031
+msgid "Closed"
+msgstr "Closed"
 
-#: mod/settings.php:746
-msgid "No name"
-msgstr ""
+#: mod/admin.php:1032
+msgid "Requires approval"
+msgstr "Requires approval"
 
-#: mod/settings.php:747
-msgid "Remove authorization"
-msgstr ""
+#: mod/admin.php:1033
+msgid "Open"
+msgstr "Open"
 
-#: mod/settings.php:759
-msgid "No Plugin settings configured"
-msgstr ""
+#: mod/admin.php:1037
+msgid "No SSL policy, links will track page SSL state"
+msgstr "No SSL policy, links will track page SSL state"
 
-#: mod/settings.php:768
-msgid "Plugin Settings"
-msgstr ""
+#: mod/admin.php:1038
+msgid "Force all links to use SSL"
+msgstr "Force all links to use SSL"
 
-#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
-msgid "Off"
-msgstr ""
+#: mod/admin.php:1039
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Self-signed certificate, use SSL for local links only (discouraged)"
 
-#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
-msgid "On"
-msgstr ""
+#: mod/admin.php:1061 mod/admin.php:1686 mod/admin.php:1949 mod/admin.php:2023
+#: mod/admin.php:2176 mod/settings.php:682 mod/settings.php:793
+#: mod/settings.php:842 mod/settings.php:909 mod/settings.php:1006
+#: mod/settings.php:1272
+msgid "Save Settings"
+msgstr "Save settings"
 
-#: mod/settings.php:790
-msgid "Additional Features"
-msgstr ""
+#: mod/admin.php:1063
+msgid "File upload"
+msgstr "File upload"
 
-#: mod/settings.php:800 mod/settings.php:804
-msgid "General Social Media Settings"
-msgstr ""
+#: mod/admin.php:1064
+msgid "Policies"
+msgstr "Policies"
 
-#: mod/settings.php:810
-msgid "Disable intelligent shortening"
+#: mod/admin.php:1066
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/settings.php:812
-msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the"
-" original friendica post."
-msgstr "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post."
+#: mod/admin.php:1067
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/settings.php:818
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr ""
+#: mod/admin.php:1068
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/settings.php:820
+#: mod/admin.php:1069
 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 ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
 
-#: mod/settings.php:826
-msgid "Default group for OStatus contacts"
-msgstr ""
+#: mod/admin.php:1072
+msgid "Site name"
+msgstr "Site name"
 
-#: mod/settings.php:834
-msgid "Your legacy GNU Social account"
-msgstr ""
+#: mod/admin.php:1073
+msgid "Host name"
+msgstr "Host name"
 
-#: mod/settings.php:836
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
-msgstr ""
+#: mod/admin.php:1074
+msgid "Sender Email"
+msgstr "Sender email"
 
-#: mod/settings.php:839
-msgid "Repair OStatus subscriptions"
-msgstr ""
+#: mod/admin.php:1074
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "The email address your server shall use to send notification emails from."
 
-#: mod/settings.php:848 mod/settings.php:849
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr ""
+#: mod/admin.php:1075
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "enabled"
-msgstr ""
+#: mod/admin.php:1076
+msgid "Shortcut icon"
+msgstr "Shortcut icon"
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "disabled"
-msgstr ""
+#: mod/admin.php:1076
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link to an icon that will be used for browsers."
 
-#: mod/settings.php:849
-msgid "GNU Social (OStatus)"
-msgstr ""
+#: mod/admin.php:1077
+msgid "Touch icon"
+msgstr "Touch icon"
 
-#: mod/settings.php:883
-msgid "Email access is disabled on this site."
-msgstr ""
+#: mod/admin.php:1077
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link to an icon that will be used for tablets and mobiles."
 
-#: mod/settings.php:895
-msgid "Email/Mailbox Setup"
-msgstr ""
+#: mod/admin.php:1078
+msgid "Additional Info"
+msgstr "Additional Info"
 
-#: mod/settings.php:896
+#: mod/admin.php:1078
+#, php-format
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "For public servers: add additional information here that will be listed at %s/siteinfo."
 
-#: mod/settings.php:897
-msgid "Last successful email check:"
-msgstr ""
+#: mod/admin.php:1079
+msgid "System language"
+msgstr "System language"
 
-#: mod/settings.php:899
-msgid "IMAP server name:"
-msgstr ""
+#: mod/admin.php:1080
+msgid "System theme"
+msgstr "System theme"
 
-#: mod/settings.php:900
-msgid "IMAP port:"
-msgstr ""
+#: mod/admin.php:1080
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"
 
-#: mod/settings.php:901
-msgid "Security:"
-msgstr ""
+#: mod/admin.php:1081
+msgid "Mobile system theme"
+msgstr "Mobile system theme"
 
-#: mod/settings.php:901 mod/settings.php:906
-msgid "None"
-msgstr ""
+#: mod/admin.php:1081
+msgid "Theme for mobile devices"
+msgstr "Theme for mobile devices"
 
-#: mod/settings.php:902
-msgid "Email login name:"
-msgstr ""
+#: mod/admin.php:1082
+msgid "SSL link policy"
+msgstr "SSL link policy"
 
-#: mod/settings.php:903
-msgid "Email password:"
-msgstr ""
+#: mod/admin.php:1082
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determines whether generated links should be forced to use SSL"
 
-#: mod/settings.php:904
-msgid "Reply-to address:"
-msgstr ""
+#: mod/admin.php:1083
+msgid "Force SSL"
+msgstr "Force SSL"
 
-#: mod/settings.php:905
-msgid "Send public posts to all email contacts:"
-msgstr ""
+#: mod/admin.php:1083
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
 
-#: mod/settings.php:906
-msgid "Action after import:"
-msgstr ""
+#: mod/admin.php:1084
+msgid "Hide help entry from navigation menu"
+msgstr "Hide help entry from navigation menu"
 
-#: mod/settings.php:906
-msgid "Move to folder"
-msgstr "Move to folder"
+#: mod/admin.php:1084
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL."
+
+#: mod/admin.php:1085
+msgid "Single user instance"
+msgstr "Single user instance"
 
-#: mod/settings.php:907
-msgid "Move to folder:"
-msgstr "Move to folder:"
+#: mod/admin.php:1085
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Make this instance multi-user or single-user for the named user"
 
-#: mod/settings.php:943 mod/admin.php:942
-msgid "No special theme for mobile devices"
-msgstr ""
+#: mod/admin.php:1086
+msgid "Maximum image size"
+msgstr "Maximum image size"
 
-#: mod/settings.php:1003
-msgid "Display Settings"
-msgstr ""
+#: mod/admin.php:1086
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximum size in bytes of uploaded images. Default is 0, which means no limits."
 
-#: mod/settings.php:1009 mod/settings.php:1032
-msgid "Display Theme:"
-msgstr ""
+#: mod/admin.php:1087
+msgid "Maximum image length"
+msgstr "Maximum image length"
 
-#: mod/settings.php:1010
-msgid "Mobile Theme:"
+#: mod/admin.php:1087
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/settings.php:1011
-msgid "Suppress warning of insecure networks"
-msgstr ""
+#: mod/admin.php:1088
+msgid "JPEG image quality"
+msgstr "JPEG image quality"
 
-#: mod/settings.php:1011
+#: mod/admin.php:1088
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Update browser every xx seconds"
-msgstr "Update browser every so many seconds:"
+#: mod/admin.php:1090
+msgid "Register policy"
+msgstr "Register policy"
 
-#: mod/settings.php:1012
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:1091
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/settings.php:1013
-msgid "Number of items to display per page:"
+#: mod/admin.php:1091
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
 msgstr ""
 
-#: mod/settings.php:1013 mod/settings.php:1014
-msgid "Maximum of 100 items"
+#: mod/admin.php:1092
+msgid "Register text"
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:1092
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Don't show emoticons"
+#: mod/admin.php:1093
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Calendar"
+#: mod/admin.php:1093
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/settings.php:1017
-msgid "Beginning of week:"
+#: mod/admin.php:1094
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/settings.php:1018
-msgid "Don't show notices"
+#: mod/admin.php:1094
+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:1019
-msgid "Infinite scroll"
+#: mod/admin.php:1095
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/settings.php:1020
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1095
+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:1021
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1096
+msgid "Block public"
 msgstr ""
 
-#: mod/settings.php:1021
+#: mod/admin.php:1096
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/settings.php:1023
-msgid "General Theme Settings"
-msgstr "Themes"
-
-#: mod/settings.php:1024
-msgid "Custom Theme Settings"
-msgstr "Theme customisation"
-
-#: mod/settings.php:1025
-msgid "Content Settings"
-msgstr "Content/Layout"
-
-#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
-#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
-#: view/theme/vier/config.php:114
-msgid "Theme settings"
+#: mod/admin.php:1097
+msgid "Force publish"
 msgstr ""
 
-#: mod/settings.php:1110
-msgid "Account Types"
-msgstr "Account types:"
-
-#: mod/settings.php:1111
-msgid "Personal Page Subtypes"
-msgstr "Personal Page subtypes"
-
-#: mod/settings.php:1112
-msgid "Community Forum Subtypes"
+#: mod/admin.php:1097
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/settings.php:1119
-msgid "Personal Page"
-msgstr "Personal Page"
-
-#: mod/settings.php:1120
-msgid "This account is a regular personal profile"
-msgstr "Regular personal profile"
-
-#: mod/settings.php:1123
-msgid "Organisation Page"
-msgstr "Organisation Page"
-
-#: mod/settings.php:1124
-msgid "This account is a profile for an organisation"
-msgstr "Profile for an organisation"
-
-#: mod/settings.php:1127
-msgid "News Page"
-msgstr "News Page"
-
-#: mod/settings.php:1128
-msgid "This account is a news account/reflector"
-msgstr "News reflector"
-
-#: mod/settings.php:1131
-msgid "Community Forum"
-msgstr "Community Forum"
+#: mod/admin.php:1098
+msgid "Global directory URL"
+msgstr "Global directory URL"
 
-#: mod/settings.php:1132
+#: mod/admin.php:1098
 msgid ""
-"This account is a community forum where people can discuss with each other"
-msgstr "Discussion forum for community"
-
-#: mod/settings.php:1135
-msgid "Normal Account Page"
-msgstr "Standard"
-
-#: mod/settings.php:1136
-msgid "This account is a normal personal profile"
-msgstr "Regular personal profile"
-
-#: mod/settings.php:1139
-msgid "Soapbox Page"
-msgstr "Soapbox"
-
-#: mod/settings.php:1140
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Automatically approves contact requests as followers"
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL to the global directory: If this is not set, the global directory is completely unavailable to the application."
 
-#: mod/settings.php:1143
-msgid "Public Forum"
+#: mod/admin.php:1099
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/settings.php:1144
-msgid "Automatically approve all contact requests"
+#: mod/admin.php:1099
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: mod/settings.php:1147
-msgid "Automatic Friend Page"
-msgstr "Popularity"
-
-#: mod/settings.php:1148
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Automatically approves contact requests as friends"
-
-#: mod/settings.php:1151
-msgid "Private Forum [Experimental]"
+#: mod/admin.php:1100
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/settings.php:1152
-msgid "Private forum - approved members only"
+#: mod/admin.php:1100
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "OpenID:"
+#: mod/admin.php:1101
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:1101
+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:1171
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publish default profile in local site directory?"
-
-#: mod/settings.php:1171
-msgid "Your profile may be visible in public."
-msgstr "Your local directory may be publicly visible"
-
-#: mod/settings.php:1177
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publish default profile in global directory?"
-
-#: mod/settings.php:1184
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Hide my contact list from others?"
+#: mod/admin.php:1102
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: mod/settings.php:1188
+#: mod/admin.php:1102
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled"
-
-#: mod/settings.php:1193
-msgid "Allow friends to post to your profile page?"
-msgstr "Allow friends to post to my wall?"
-
-#: mod/settings.php:1198
-msgid "Allow friends to tag your posts?"
-msgstr "Allow friends to tag my post?"
-
-#: mod/settings.php:1203
-msgid "Allow us to suggest you as a potential friend to new members?"
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/settings.php:1208
-msgid "Permit unknown people to send you private mail?"
-msgstr "Allow unknown people to send me private messages?"
-
-#: mod/settings.php:1216
-msgid "Profile is <strong>not published</strong>."
+#: mod/admin.php:1103
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/settings.php:1224
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "My identity address: <strong>'%s'</strong> or '%s'"
-
-#: mod/settings.php:1231
-msgid "Automatically expire posts after this many days:"
-msgstr "Automatically expire posts after this many days:"
-
-#: mod/settings.php:1231
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Posts will not expire if empty;  expired posts will be deleted"
+#: mod/admin.php:1103
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr ""
 
-#: mod/settings.php:1232
-msgid "Advanced expiration settings"
-msgstr "Advanced expiration settings"
+#: mod/admin.php:1104
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: mod/settings.php:1233
-msgid "Advanced Expiration"
-msgstr "Advanced expiration"
+#: mod/admin.php:1104
+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:1234
-msgid "Expire posts:"
+#: mod/admin.php:1105
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/settings.php:1235
-msgid "Expire personal notes:"
+#: mod/admin.php:1105
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/settings.php:1236
-msgid "Expire starred posts:"
+#: mod/admin.php:1106
+msgid "OpenID support"
 msgstr ""
 
-#: mod/settings.php:1237
-msgid "Expire photos:"
+#: mod/admin.php:1106
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/settings.php:1238
-msgid "Only expire posts by others:"
+#: mod/admin.php:1107
+msgid "Fullname check"
 msgstr ""
 
-#: mod/settings.php:1269
-msgid "Account Settings"
+#: mod/admin.php:1107
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/settings.php:1277
-msgid "Password Settings"
-msgstr "Password change"
+#: mod/admin.php:1108
+msgid "Community Page Style"
+msgstr ""
 
-#: mod/settings.php:1279
-msgid "Leave password fields blank unless changing"
+#: mod/admin.php:1108
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
 msgstr ""
 
-#: mod/settings.php:1280
-msgid "Current Password:"
-msgstr "Current password:"
+#: mod/admin.php:1109
+msgid "Posts per user on community page"
+msgstr ""
 
-#: mod/settings.php:1280 mod/settings.php:1281
-msgid "Your current password to confirm the changes"
-msgstr "Current password to confirm change"
+#: mod/admin.php:1109
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr ""
 
-#: mod/settings.php:1281
-msgid "Password:"
+#: mod/admin.php:1110
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/settings.php:1285
-msgid "Basic Settings"
-msgstr "Basic information"
+#: mod/admin.php:1110
+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:1287
-msgid "Email Address:"
-msgstr "Email address:"
+#: mod/admin.php:1111
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: mod/settings.php:1288
-msgid "Your Timezone:"
-msgstr "Time zone:"
+#: mod/admin.php:1111
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr ""
 
-#: mod/settings.php:1289
-msgid "Your Language:"
-msgstr "Language:"
+#: mod/admin.php:1112
+msgid "Only import OStatus threads from our contacts"
+msgstr ""
 
-#: mod/settings.php:1289
+#: mod/admin.php:1112
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+"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:1290
-msgid "Default Post Location:"
-msgstr "Posting location:"
+#: mod/admin.php:1113
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr ""
 
-#: mod/settings.php:1291
-msgid "Use Browser Location:"
-msgstr "Use browser location:"
+#: mod/admin.php:1115
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr ""
 
-#: mod/settings.php:1294
-msgid "Security and Privacy Settings"
-msgstr "Security and privacy"
+#: mod/admin.php:1116
+msgid "Enable Diaspora support"
+msgstr ""
 
-#: mod/settings.php:1296
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximum friend requests per day:"
+#: mod/admin.php:1116
+msgid "Provide built-in Diaspora network compatibility."
+msgstr ""
 
-#: mod/settings.php:1296 mod/settings.php:1326
-msgid "(to prevent spam abuse)"
-msgstr "May prevent spam or abuse registrations"
+#: mod/admin.php:1117
+msgid "Only allow Friendica contacts"
+msgstr ""
 
-#: mod/settings.php:1297
-msgid "Default Post Permissions"
-msgstr "Default post permissions"
+#: mod/admin.php:1117
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
 
-#: mod/settings.php:1298
-msgid "(click to open/close)"
+#: mod/admin.php:1118
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/settings.php:1309
-msgid "Default Private Post"
+#: mod/admin.php:1118
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
 msgstr ""
 
-#: mod/settings.php:1310
-msgid "Default Public Post"
+#: mod/admin.php:1119
+msgid "Proxy user"
 msgstr ""
 
-#: mod/settings.php:1314
-msgid "Default Permissions for New Posts"
+#: mod/admin.php:1120
+msgid "Proxy URL"
+msgstr "Proxy URL"
+
+#: mod/admin.php:1121
+msgid "Network timeout"
 msgstr ""
 
-#: mod/settings.php:1326
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximum private messages per day from unknown people:"
+#: mod/admin.php:1121
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr ""
 
-#: mod/settings.php:1329
-msgid "Notification Settings"
-msgstr "Notification"
+#: mod/admin.php:1122
+msgid "Maximum Load Average"
+msgstr ""
 
-#: mod/settings.php:1330
-msgid "By default post a status message when:"
-msgstr "By default post a status message when:"
+#: mod/admin.php:1122
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr ""
 
-#: mod/settings.php:1331
-msgid "accepting a friend request"
-msgstr "accepting friend requests"
+#: mod/admin.php:1123
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
 
-#: mod/settings.php:1332
-msgid "joining a forum/community"
-msgstr "joining forums or communities"
+#: mod/admin.php:1123
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
 
-#: mod/settings.php:1333
-msgid "making an <em>interesting</em> profile change"
+#: mod/admin.php:1124
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/settings.php:1334
-msgid "Send a notification email when:"
-msgstr "Send notification email when:"
+#: mod/admin.php:1124
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
 
-#: mod/settings.php:1335
-msgid "You receive an introduction"
-msgstr "Receiving an introduction"
+#: mod/admin.php:1125
+msgid "Maximum table size for optimization"
+msgstr ""
 
-#: mod/settings.php:1336
-msgid "Your introductions are confirmed"
-msgstr "My introductions are confirmed"
+#: mod/admin.php:1125
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr ""
 
-#: mod/settings.php:1337
-msgid "Someone writes on your profile wall"
-msgstr "Someone writes on my wall"
+#: mod/admin.php:1126
+msgid "Minimum level of fragmentation"
+msgstr ""
 
-#: mod/settings.php:1338
-msgid "Someone writes a followup comment"
-msgstr "A follow up comment is posted"
+#: mod/admin.php:1126
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
 
-#: mod/settings.php:1339
-msgid "You receive a private message"
-msgstr "receiving a private message"
+#: mod/admin.php:1128
+msgid "Periodical check of global contacts"
+msgstr ""
 
-#: mod/settings.php:1340
-msgid "You receive a friend suggestion"
-msgstr "Receiving a friend suggestion"
+#: mod/admin.php:1128
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
 
-#: mod/settings.php:1341
-msgid "You are tagged in a post"
-msgstr "Tagged in a post"
+#: mod/admin.php:1129
+msgid "Days between requery"
+msgstr ""
 
-#: mod/settings.php:1342
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Poked in a post"
+#: mod/admin.php:1129
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr ""
 
-#: mod/settings.php:1344
-msgid "Activate desktop notifications"
-msgstr "Activate desktop notifications"
+#: mod/admin.php:1130
+msgid "Discover contacts from other servers"
+msgstr ""
 
-#: mod/settings.php:1344
-msgid "Show desktop popup on new notifications"
-msgstr "Show desktop pop-up on new notifications"
+#: mod/admin.php:1130
+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 "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 recommend setting is 'Users, Global Contacts'."
 
-#: mod/settings.php:1346
-msgid "Text-only notification emails"
-msgstr "Text-only notification emails"
+#: mod/admin.php:1131
+msgid "Timeframe for fetching global contacts"
+msgstr ""
 
-#: mod/settings.php:1348
-msgid "Send text only notification emails, without the html part"
-msgstr "Receive text only emails without HTML "
+#: mod/admin.php:1131
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr ""
 
-#: mod/settings.php:1350
-msgid "Advanced Account/Page Type Settings"
-msgstr "Advanced account types"
+#: mod/admin.php:1132
+msgid "Search the local directory"
+msgstr ""
 
-#: mod/settings.php:1351
-msgid "Change the behaviour of this account for special situations"
-msgstr "Change behaviour of this account for special situations"
+#: mod/admin.php:1132
+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:1354
-msgid "Relocate"
-msgstr "Recent relocation"
+#: mod/admin.php:1134
+msgid "Publish server information"
+msgstr ""
 
-#: mod/settings.php:1355
+#: mod/admin.php:1134
 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 "If you have moved this profile from another server and some of your contacts don't receive your updates:"
-
-#: mod/settings.php:1356
-msgid "Resend relocate message to contacts"
+"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/uexport.php:37
-msgid "Export account"
+#: mod/admin.php:1136
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/uexport.php:37
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: mod/admin.php:1136
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/uexport.php:38
-msgid "Export all"
+#: mod/admin.php:1137
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/uexport.php:38
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: mod/admin.php:1137
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/videos.php:124
-msgid "Do you really want to delete this video?"
+#: mod/admin.php:1138
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/videos.php:129
-msgid "Delete Video"
+#: mod/admin.php:1138
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: mod/videos.php:208
-msgid "No videos selected"
+#: mod/admin.php:1139
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/videos.php:402
-msgid "Recent Videos"
+#: mod/admin.php:1139
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/videos.php:404
-msgid "Upload New Videos"
+#: mod/admin.php:1140
+msgid "Temp path"
 msgstr ""
 
-#: mod/install.php:106
-msgid "Friendica Communications Server - Setup"
+#: mod/admin.php:1140
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/install.php:112
-msgid "Could not connect to database."
+#: mod/admin.php:1141
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/install.php:116
-msgid "Could not create table."
+#: mod/admin.php:1141
+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/install.php:122
-msgid "Your Friendica site database has been installed."
+#: mod/admin.php:1142
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/install.php:127
+#: mod/admin.php:1142
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
 msgstr ""
 
-#: mod/install.php:128 mod/install.php:200 mod/install.php:547
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/admin.php:1143
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/install.php:140
-msgid "Database already in use."
+#: mod/admin.php:1143
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/install.php:197
-msgid "System check"
+#: mod/admin.php:1145
+msgid "New base url"
+msgstr "New base URL"
+
+#: mod/admin.php:1145
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Change base URL for this server. Sends relocate message to all DFRN contacts of all users."
+
+#: mod/admin.php:1147
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/install.php:202
-msgid "Check again"
+#: mod/admin.php:1147
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/install.php:221
-msgid "Database connection"
+#: mod/admin.php:1149
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/install.php:222
+#: mod/admin.php:1149
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/install.php:223
+#: mod/admin.php:1150
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
+
+#: mod/admin.php:1150
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
 msgstr ""
 
-#: mod/install.php:224
+#: mod/admin.php:1151
+msgid "Enable fastlane"
+msgstr ""
+
+#: mod/admin.php:1151
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/install.php:228
-msgid "Database Server Name"
+#: mod/admin.php:1152
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/install.php:229
-msgid "Database Login Name"
+#: mod/admin.php:1152
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server. The worker background process needs to be activated for "
+"this."
 msgstr ""
 
-#: mod/install.php:230
-msgid "Database Login Password"
+#: mod/admin.php:1182
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/install.php:230
-msgid "For security reasons the password must not be empty"
+#: mod/admin.php:1190
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/install.php:231
-msgid "Database Name"
+#: mod/admin.php:1193
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/install.php:232 mod/install.php:273
-msgid "Site administrator email address"
+#: mod/admin.php:1207
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/install.php:232 mod/install.php:273
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/admin.php:1210
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/install.php:236 mod/install.php:276
-msgid "Please select a default timezone for your website"
+#: mod/admin.php:1213
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/install.php:263
-msgid "Site settings"
+#: mod/admin.php:1216
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/install.php:277
-msgid "System Language:"
+#: mod/admin.php:1236
+msgid "No failed updates."
 msgstr ""
 
-#: mod/install.php:277
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: mod/admin.php:1237
+msgid "Check database structure"
 msgstr ""
 
-#: mod/install.php:317
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/admin.php:1242
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/install.php:318
+#: mod/admin.php:1243
 msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/install.php:322
-msgid "PHP executable path"
+#: mod/admin.php:1244
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/install.php:322
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/admin.php:1245
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/install.php:327
-msgid "Command line PHP"
+#: mod/admin.php:1279
+#, 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/install.php:336
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/admin.php:1282
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: mod/install.php:337
-msgid "Found PHP version: "
+#: mod/admin.php:1326
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:1333
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:1380
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/install.php:339
-msgid "PHP cli binary"
+#: mod/admin.php:1388
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/install.php:350
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/admin.php:1388
+#, php-format
+msgid "User '%s' blocked"
+msgstr ""
+
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Register date"
 msgstr ""
 
-#: mod/install.php:351
-msgid "This is required for message delivery to work."
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Last login"
 msgstr ""
 
-#: mod/install.php:353
-msgid "PHP register_argc_argv"
+#: mod/admin.php:1496 mod/admin.php:1522
+msgid "Last item"
 msgstr ""
 
-#: mod/install.php:376
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/admin.php:1496 mod/settings.php:45
+msgid "Account"
 msgstr ""
 
-#: mod/install.php:377
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
+#: mod/admin.php:1505
+msgid "Add User"
 msgstr ""
 
-#: mod/install.php:379
-msgid "Generate encryption keys"
+#: mod/admin.php:1506
+msgid "select all"
 msgstr ""
 
-#: mod/install.php:386
-msgid "libCurl PHP module"
+#: mod/admin.php:1507
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/install.php:387
-msgid "GD graphics PHP module"
+#: mod/admin.php:1508
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/install.php:388
-msgid "OpenSSL PHP module"
+#: mod/admin.php:1509
+msgid "Request date"
 msgstr ""
 
-#: mod/install.php:389
-msgid "PDO or MySQLi PHP module"
+#: mod/admin.php:1510
+msgid "No registrations."
 msgstr ""
 
-#: mod/install.php:390
-msgid "mb_string PHP module"
+#: mod/admin.php:1511
+msgid "Note from the user"
 msgstr ""
 
-#: mod/install.php:391
-msgid "XML PHP module"
+#: mod/admin.php:1513
+msgid "Deny"
 msgstr ""
 
-#: mod/install.php:392
-msgid "iconv module"
+#: mod/admin.php:1515 mod/contacts.php:616 mod/contacts.php:816
+#: mod/contacts.php:994
+msgid "Block"
+msgstr "Block"
+
+#: mod/admin.php:1516 mod/contacts.php:616 mod/contacts.php:816
+#: mod/contacts.php:994
+msgid "Unblock"
+msgstr "Unblock"
+
+#: mod/admin.php:1517
+msgid "Site admin"
 msgstr ""
 
-#: mod/install.php:396 mod/install.php:398
-msgid "Apache mod_rewrite module"
+#: mod/admin.php:1518
+msgid "Account expired"
 msgstr ""
 
-#: mod/install.php:396
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/admin.php:1521
+msgid "New User"
 msgstr ""
 
-#: mod/install.php:404
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/admin.php:1522
+msgid "Deleted since"
 msgstr ""
 
-#: mod/install.php:408
+#: mod/admin.php:1527
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/install.php:412
-msgid "Error: openssl PHP module required but not installed."
+#: mod/admin.php:1528
+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/install.php:416
-msgid "Error: PDO or MySQLi PHP module required but not installed."
+#: mod/admin.php:1538
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/install.php:420
-msgid "Error: The MySQL driver for PDO is not installed."
+#: mod/admin.php:1539
+msgid "Nickname"
 msgstr ""
 
-#: mod/install.php:424
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/admin.php:1539
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/install.php:428
-msgid "Error: iconv PHP module required but not installed."
+#: mod/admin.php:1540
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/install.php:438
-msgid "Error, XML PHP module required but not installed."
+#: mod/admin.php:1583
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/install.php:450
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so."
-
-#: mod/install.php:451
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can."
+#: mod/admin.php:1587
+#, php-format
+msgid "Plugin %s enabled."
+msgstr ""
 
-#: mod/install.php:452
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory."
+#: mod/admin.php:1598 mod/admin.php:1850
+msgid "Disable"
+msgstr ""
 
-#: mod/install.php:453
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
+#: mod/admin.php:1600 mod/admin.php:1852
+msgid "Enable"
 msgstr ""
 
-#: mod/install.php:456
-msgid ".htconfig.php is writable"
+#: mod/admin.php:1623 mod/admin.php:1899
+msgid "Toggle"
 msgstr ""
 
-#: mod/install.php:466
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: mod/admin.php:1631 mod/admin.php:1908
+msgid "Author: "
 msgstr ""
 
-#: mod/install.php:467
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "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 directory."
+#: mod/admin.php:1632 mod/admin.php:1909
+msgid "Maintainer: "
+msgstr ""
 
-#: mod/install.php:468
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory."
+#: mod/admin.php:1687
+msgid "Reload active plugins"
+msgstr ""
 
-#: mod/install.php:469
+#: mod/admin.php:1692
+#, 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."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
 msgstr ""
 
-#: mod/install.php:472
-msgid "view/smarty3 is writable"
+#: mod/admin.php:1811
+msgid "No themes found."
 msgstr ""
 
-#: mod/install.php:488
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: mod/admin.php:1890
+msgid "Screenshot"
 msgstr ""
 
-#: mod/install.php:490
-msgid "Url rewrite is working"
+#: mod/admin.php:1950
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/install.php:509
-msgid "ImageMagick PHP extension is not installed"
+#: mod/admin.php:1955
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/install.php:511
-msgid "ImageMagick PHP extension is installed"
+#: mod/admin.php:1956
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/install.php:513
-msgid "ImageMagick supports GIF"
+#: mod/admin.php:1957
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/install.php:520
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: mod/admin.php:1981
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/install.php:545
-msgid "<h1>What next</h1>"
+#: mod/admin.php:2013
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/install.php:546
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
+#: mod/admin.php:2015
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
+#: mod/admin.php:2024
+msgid "Clear"
 msgstr ""
 
-#: mod/item.php:344
-msgid "Empty post discarded."
+#: mod/admin.php:2029
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/item.php:904
-msgid "System error. Post not saved."
+#: mod/admin.php:2030
+msgid "Log file"
 msgstr ""
 
-#: mod/item.php:995
-#, php-format
+#: mod/admin.php:2030
 msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/item.php:997
-#, php-format
-msgid "You may visit them online at %s"
+#: mod/admin.php:2031
+msgid "Log level"
 msgstr ""
 
-#: mod/item.php:998
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: mod/admin.php:2034
+msgid "PHP logging"
 msgstr ""
 
-#: mod/item.php:1002
-#, php-format
-msgid "%s posted an update."
+#: mod/admin.php:2035
+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/notifications.php:35
-msgid "Invalid request identifier."
+#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783
+msgid "Off"
 msgstr ""
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:227
-msgid "Discard"
+#: mod/admin.php:2165 mod/admin.php:2166 mod/settings.php:783
+msgid "On"
 msgstr ""
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
+#: mod/admin.php:2166
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
+#: mod/admin.php:2174
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr ""
+#: mod/contacts.php:137
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contact edited."
+msgstr[1] "%d contacts edited."
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Show ignored requests."
+#: mod/contacts.php:172 mod/contacts.php:381
+msgid "Could not access contact record."
+msgstr "Could not access contact record."
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr ""
+#: mod/contacts.php:186
+msgid "Could not locate selected profile."
+msgstr "Could not locate selected profile."
 
-#: mod/notifications.php:164 mod/notifications.php:234
-msgid "Notification type: "
-msgstr ""
+#: mod/contacts.php:219
+msgid "Contact updated."
+msgstr "Contact updated."
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr ""
+#: mod/contacts.php:402
+msgid "Contact has been blocked"
+msgstr "Contact has been blocked"
 
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "Post a new friend activity"
-msgstr ""
+#: mod/contacts.php:402
+msgid "Contact has been unblocked"
+msgstr "Contact has been unblocked"
 
-#: mod/notifications.php:173 mod/notifications.php:252
-msgid "if applicable"
-msgstr ""
+#: mod/contacts.php:413
+msgid "Contact has been ignored"
+msgstr "Contact has been ignored"
 
-#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
-msgid "Approve"
-msgstr ""
+#: mod/contacts.php:413
+msgid "Contact has been unignored"
+msgstr "Contact has been unignored"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Says they know me:"
+#: mod/contacts.php:425
+msgid "Contact has been archived"
+msgstr "Contact has been archived"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr ""
+#: mod/contacts.php:425
+msgid "Contact has been unarchived"
+msgstr "Contact has been unarchived"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr ""
+#: mod/contacts.php:450
+msgid "Drop contact"
+msgstr "Drop contact"
 
-#: mod/notifications.php:197 mod/notifications.php:202
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Shall your connection be in both directions or not?"
+#: mod/contacts.php:453 mod/contacts.php:812
+msgid "Do you really want to delete this contact?"
+msgstr "Do you really want to delete this contact?"
+
+#: mod/contacts.php:472
+msgid "Contact has been removed."
+msgstr "Contact has been removed."
+
+#: mod/contacts.php:509
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "You are mutual friends with %s"
 
-#: mod/notifications.php:198 mod/notifications.php:203
+#: mod/contacts.php:513
 #, 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 ""
+msgid "You are sharing with %s"
+msgstr "You are sharing with %s"
 
-#: mod/notifications.php:199
+#: mod/contacts.php:518
 #, 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 ""
+msgid "%s is sharing with you"
+msgstr "%s is sharing with you"
+
+#: mod/contacts.php:538
+msgid "Private communications are not available for this contact."
+msgstr "Private communications are not available for this contact."
+
+#: mod/contacts.php:545
+msgid "(Update was successful)"
+msgstr "(Update was successful)"
+
+#: mod/contacts.php:545
+msgid "(Update was not successful)"
+msgstr "(Update was not successful)"
+
+#: mod/contacts.php:547 mod/contacts.php:975
+msgid "Suggest friends"
+msgstr "Suggest friends"
 
-#: mod/notifications.php:204
+#: mod/contacts.php:551
 #, 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 ""
+msgid "Network type: %s"
+msgstr "Network type: %s"
 
-#: mod/notifications.php:215
-msgid "Friend"
-msgstr ""
+#: mod/contacts.php:564
+msgid "Communications lost with this contact!"
+msgstr "Communications lost with this contact!"
 
-#: mod/notifications.php:216
-msgid "Sharer"
-msgstr ""
+#: mod/contacts.php:567
+msgid "Fetch further information for feeds"
+msgstr "Fetch further information for feeds"
 
-#: mod/notifications.php:216
-msgid "Subscriber"
-msgstr ""
+#: mod/contacts.php:568
+msgid "Fetch information"
+msgstr "Fetch information"
 
-#: mod/notifications.php:272
-msgid "No introductions."
-msgstr ""
+#: mod/contacts.php:568
+msgid "Fetch information and keywords"
+msgstr "Fetch information and keywords"
 
-#: mod/notifications.php:313
-msgid "Show unread"
-msgstr ""
+#: mod/contacts.php:586
+msgid "Contact"
+msgstr "Contact"
 
-#: mod/notifications.php:313
-msgid "Show all"
-msgstr ""
+#: mod/contacts.php:589
+msgid "Profile Visibility"
+msgstr "Profile visibility"
 
-#: mod/notifications.php:319
+#: mod/contacts.php:590
 #, php-format
-msgid "No more %s notifications."
-msgstr ""
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Please choose the profile you would like to display to %s when viewing your profile securely."
 
-#: mod/ping.php:270
-msgid "{0} wants to be your friend"
-msgstr ""
+#: mod/contacts.php:591
+msgid "Contact Information / Notes"
+msgstr "Personal note"
 
-#: mod/ping.php:285
-msgid "{0} sent you a message"
-msgstr ""
+#: mod/contacts.php:592
+msgid "Edit contact notes"
+msgstr "Edit contact notes"
 
-#: mod/ping.php:300
-msgid "{0} requested registration"
-msgstr ""
+#: mod/contacts.php:598
+msgid "Block/Unblock contact"
+msgstr "Block/Unblock contact"
 
-#: mod/admin.php:96
-msgid "Theme settings updated."
-msgstr ""
+#: mod/contacts.php:599
+msgid "Ignore contact"
+msgstr "Ignore contact"
 
-#: mod/admin.php:165 mod/admin.php:1054
-msgid "Site"
-msgstr ""
+#: mod/contacts.php:600
+msgid "Repair URL settings"
+msgstr "Repair URL settings"
 
-#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
-msgid "Users"
-msgstr ""
+#: mod/contacts.php:601
+msgid "View conversations"
+msgstr "View conversations"
 
-#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
-msgid "Themes"
-msgstr "Theme selection"
+#: mod/contacts.php:607
+msgid "Last update:"
+msgstr "Last update:"
 
-#: mod/admin.php:170
-msgid "DB updates"
-msgstr ""
+#: mod/contacts.php:609
+msgid "Update public posts"
+msgstr "Update public posts"
 
-#: mod/admin.php:171 mod/admin.php:512
-msgid "Inspect Queue"
-msgstr ""
+#: mod/contacts.php:611 mod/contacts.php:985
+msgid "Update now"
+msgstr "Update now"
 
-#: mod/admin.php:172 mod/admin.php:288
-msgid "Server Blocklist"
-msgstr ""
+#: mod/contacts.php:617 mod/contacts.php:817 mod/contacts.php:1002
+msgid "Unignore"
+msgstr "Unignore"
 
-#: mod/admin.php:173 mod/admin.php:478
-msgid "Federation Statistics"
-msgstr ""
+#: mod/contacts.php:621
+msgid "Currently blocked"
+msgstr "Currently blocked"
 
-#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
-msgid "Logs"
-msgstr ""
+#: mod/contacts.php:622
+msgid "Currently ignored"
+msgstr "Currently ignored"
 
-#: mod/admin.php:188 mod/admin.php:2084
-msgid "View Logs"
-msgstr ""
+#: mod/contacts.php:623
+msgid "Currently archived"
+msgstr "Currently archived"
 
-#: mod/admin.php:189
-msgid "probe address"
-msgstr ""
+#: mod/contacts.php:624
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Replies/Likes to your public posts <strong>may</strong> still be visible"
 
-#: mod/admin.php:190
-msgid "check webfinger"
-msgstr ""
+#: mod/contacts.php:625
+msgid "Notification for new posts"
+msgstr "Notification for new posts"
 
-#: mod/admin.php:197
-msgid "Plugin Features"
-msgstr ""
+#: mod/contacts.php:625
+msgid "Send a notification of every new post of this contact"
+msgstr "Send notification for every new post from this contact"
 
-#: mod/admin.php:199
-msgid "diagnostics"
-msgstr ""
+#: mod/contacts.php:628
+msgid "Blacklisted keywords"
+msgstr "Blacklisted keywords"
 
-#: mod/admin.php:200
-msgid "User registrations waiting for confirmation"
-msgstr ""
+#: mod/contacts.php:628
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
 
-#: mod/admin.php:279
-msgid "The blocked domain"
-msgstr ""
+#: mod/contacts.php:646
+msgid "Actions"
+msgstr "Actions"
 
-#: mod/admin.php:280 mod/admin.php:293
-msgid "The reason why you blocked this domain."
-msgstr ""
+#: mod/contacts.php:649
+msgid "Contact Settings"
+msgstr "Notification and privacy "
 
-#: mod/admin.php:281
-msgid "Delete domain"
-msgstr ""
+#: mod/contacts.php:695
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: mod/admin.php:281
-msgid "Check to delete this entry from the blocklist"
-msgstr ""
+#: mod/contacts.php:698
+msgid "Suggest potential friends"
+msgstr "Suggest potential friends"
 
-#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
-#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
-#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
-msgid "Administration"
-msgstr ""
+#: mod/contacts.php:706
+msgid "Show all contacts"
+msgstr "Show all contacts"
 
-#: mod/admin.php:289
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr ""
+#: mod/contacts.php:711
+msgid "Unblocked"
+msgstr "Unblocked"
 
-#: mod/admin.php:290
-msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr ""
+#: mod/contacts.php:714
+msgid "Only show unblocked contacts"
+msgstr "Only show unblocked contacts"
 
-#: mod/admin.php:291
-msgid "Add new entry to block list"
-msgstr ""
+#: mod/contacts.php:720
+msgid "Blocked"
+msgstr "Blocked"
 
-#: mod/admin.php:292
-msgid "Server Domain"
-msgstr ""
+#: mod/contacts.php:723
+msgid "Only show blocked contacts"
+msgstr "Only show blocked contacts"
 
-#: mod/admin.php:292
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr ""
+#: mod/contacts.php:729
+msgid "Ignored"
+msgstr "Ignored"
 
-#: mod/admin.php:293
-msgid "Block reason"
-msgstr ""
+#: mod/contacts.php:732
+msgid "Only show ignored contacts"
+msgstr "Only show ignored contacts"
 
-#: mod/admin.php:294
-msgid "Add Entry"
-msgstr ""
+#: mod/contacts.php:738
+msgid "Archived"
+msgstr "Archived"
 
-#: mod/admin.php:295
-msgid "Save changes to the blocklist"
-msgstr ""
+#: mod/contacts.php:741
+msgid "Only show archived contacts"
+msgstr "Only show archived contacts"
 
-#: mod/admin.php:296
-msgid "Current Entries in the Blocklist"
-msgstr ""
+#: mod/contacts.php:747
+msgid "Hidden"
+msgstr "Hidden"
 
-#: mod/admin.php:299
-msgid "Delete entry from blocklist"
-msgstr ""
+#: mod/contacts.php:750
+msgid "Only show hidden contacts"
+msgstr "Only show hidden contacts"
 
-#: mod/admin.php:302
-msgid "Delete entry from blocklist?"
-msgstr ""
+#: mod/contacts.php:807
+msgid "Search your contacts"
+msgstr "Search your contacts"
 
-#: mod/admin.php:327
-msgid "Server added to blocklist."
-msgstr ""
+#: mod/contacts.php:815 mod/settings.php:162 mod/settings.php:708
+msgid "Update"
+msgstr "Update"
 
-#: mod/admin.php:343
-msgid "Site blocklist updated."
-msgstr ""
+#: mod/contacts.php:818 mod/contacts.php:1010
+msgid "Archive"
+msgstr "Archive"
 
-#: mod/admin.php:408
-msgid "unknown"
-msgstr ""
+#: mod/contacts.php:818 mod/contacts.php:1010
+msgid "Unarchive"
+msgstr "Unarchive"
 
-#: mod/admin.php:471
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr ""
+#: mod/contacts.php:821
+msgid "Batch Actions"
+msgstr "Batch actions"
+
+#: mod/contacts.php:867
+msgid "View all contacts"
+msgstr "View all contacts"
+
+#: mod/contacts.php:877
+msgid "View all common friends"
+msgstr "View all common friends"
 
-#: mod/admin.php:472
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
+#: mod/contacts.php:884
+msgid "Advanced Contact Settings"
+msgstr "Advanced contact settings"
 
-#: mod/admin.php:484
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr ""
+#: mod/contacts.php:918
+msgid "Mutual Friendship"
+msgstr "Mutual friendship"
 
-#: mod/admin.php:514
-msgid "ID"
-msgstr ""
+#: mod/contacts.php:922
+msgid "is a fan of yours"
+msgstr "is a fan of yours"
 
-#: mod/admin.php:515
-msgid "Recipient Name"
-msgstr ""
+#: mod/contacts.php:926
+msgid "you are a fan of"
+msgstr "I follow them"
 
-#: mod/admin.php:516
-msgid "Recipient Profile"
-msgstr ""
+#: mod/contacts.php:996
+msgid "Toggle Blocked status"
+msgstr "Toggle blocked status"
 
-#: mod/admin.php:518
-msgid "Created"
-msgstr ""
+#: mod/contacts.php:1004
+msgid "Toggle Ignored status"
+msgstr "Toggle ignored status"
 
-#: mod/admin.php:519
-msgid "Last Tried"
-msgstr ""
+#: mod/contacts.php:1012
+msgid "Toggle Archive status"
+msgstr "Toggle archive status"
 
-#: mod/admin.php:520
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr ""
+#: mod/contacts.php:1020
+msgid "Delete contact"
+msgstr "Delete contact"
+
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Image uploaded but image cropping failed."
 
-#: mod/admin.php:545
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:322
 #, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr ""
+msgid "Image size reduction [%s] failed."
+msgstr "Image size reduction [%s] failed."
 
-#: mod/admin.php:550
+#: mod/profile_photo.php:127
 msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
-msgstr ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Shift-reload the page or clear browser cache if the new photo does not display immediately."
 
-#: mod/admin.php:554 mod/admin.php:1447
-msgid "Normal Account"
-msgstr "Standard account"
+#: mod/profile_photo.php:136
+msgid "Unable to process image"
+msgstr "Unable to process image"
 
-#: mod/admin.php:555 mod/admin.php:1448
-msgid "Soapbox Account"
-msgstr "Soapbox account"
+#: mod/profile_photo.php:253
+msgid "Upload File:"
+msgstr "Upload File:"
 
-#: mod/admin.php:556 mod/admin.php:1449
-msgid "Community/Celebrity Account"
-msgstr ""
+#: mod/profile_photo.php:254
+msgid "Select a profile:"
+msgstr "Select a profile:"
 
-#: mod/admin.php:557 mod/admin.php:1450
-msgid "Automatic Friend Account"
-msgstr ""
+#: mod/profile_photo.php:256
+msgid "Upload"
+msgstr "Upload"
 
-#: mod/admin.php:558
-msgid "Blog Account"
-msgstr ""
+#: mod/profile_photo.php:259
+msgid "or"
+msgstr "or"
 
-#: mod/admin.php:559
-msgid "Private Forum"
-msgstr ""
+#: mod/profile_photo.php:259
+msgid "skip this step"
+msgstr "skip this step"
 
-#: mod/admin.php:581
-msgid "Message queues"
-msgstr ""
+#: mod/profile_photo.php:259
+msgid "select a photo from your photo albums"
+msgstr "select a photo from your photo albums"
 
-#: mod/admin.php:587
-msgid "Summary"
-msgstr ""
+#: mod/profile_photo.php:273
+msgid "Crop Image"
+msgstr "Crop Image"
 
-#: mod/admin.php:589
-msgid "Registered users"
-msgstr ""
+#: mod/profile_photo.php:274
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Please adjust the image cropping for optimum viewing."
 
-#: mod/admin.php:591
-msgid "Pending registrations"
-msgstr ""
+#: mod/profile_photo.php:276
+msgid "Done Editing"
+msgstr "Done editing"
 
-#: mod/admin.php:592
-msgid "Version"
-msgstr ""
+#: mod/profile_photo.php:312
+msgid "Image uploaded successfully."
+msgstr "Image uploaded successfully."
 
-#: mod/admin.php:597
-msgid "Active plugins"
-msgstr ""
+#: mod/profiles.php:42
+msgid "Profile deleted."
+msgstr "Profile deleted."
 
-#: mod/admin.php:622
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/profiles.php:58 mod/profiles.php:94
+msgid "Profile-"
 msgstr ""
 
-#: mod/admin.php:914
-msgid "Site settings updated."
+#: mod/profiles.php:77 mod/profiles.php:122
+msgid "New profile created."
 msgstr ""
 
-#: mod/admin.php:971
-msgid "No community page"
+#: mod/profiles.php:100
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Public postings from users of this site"
+#: mod/profiles.php:196
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/admin.php:973
-msgid "Global community page"
+#: mod/profiles.php:336
+msgid "Marital Status"
 msgstr ""
 
-#: mod/admin.php:979
-msgid "At post arrival"
+#: mod/profiles.php:340
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/admin.php:989
-msgid "Users, Global Contacts"
+#: mod/profiles.php:352
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/admin.php:990
-msgid "Users, Global Contacts/fallback"
+#: mod/profiles.php:355
+msgid "Religion"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "One month"
+#: mod/profiles.php:359
+msgid "Political Views"
 msgstr ""
 
-#: mod/admin.php:995
-msgid "Three months"
+#: mod/profiles.php:363
+msgid "Gender"
 msgstr ""
 
-#: mod/admin.php:996
-msgid "Half a year"
+#: mod/profiles.php:367
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/admin.php:997
-msgid "One year"
+#: mod/profiles.php:371
+msgid "XMPP"
 msgstr ""
 
-#: mod/admin.php:1002
-msgid "Multi user instance"
+#: mod/profiles.php:375
+msgid "Homepage"
+msgstr "Homepage"
+
+#: mod/profiles.php:379 mod/profiles.php:698
+msgid "Interests"
 msgstr ""
 
-#: mod/admin.php:1025
-msgid "Closed"
+#: mod/profiles.php:383
+msgid "Address"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Requires approval"
+#: mod/profiles.php:390 mod/profiles.php:694
+msgid "Location"
 msgstr ""
 
-#: mod/admin.php:1027
-msgid "Open"
+#: mod/profiles.php:475
+msgid "Profile updated."
 msgstr ""
 
-#: mod/admin.php:1031
-msgid "No SSL policy, links will track page SSL state"
+#: mod/profiles.php:567
+msgid " and "
 msgstr ""
 
-#: mod/admin.php:1032
-msgid "Force all links to use SSL"
+#: mod/profiles.php:576
+msgid "public profile"
 msgstr ""
 
-#: mod/admin.php:1033
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/admin.php:1057
-msgid "File upload"
+#: mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/admin.php:1058
-msgid "Policies"
+#: mod/profiles.php:582
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/admin.php:1060
-msgid "Auto Discovered Contact Directory"
+#: mod/profiles.php:640
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/admin.php:1061
-msgid "Performance"
+#: mod/profiles.php:645
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/admin.php:1062
-msgid "Worker"
+#: mod/profiles.php:670
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/admin.php:1063
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocate - Warning, advanced function: This could make this server unreachable."
+#: mod/profiles.php:682
+msgid "Profile Actions"
+msgstr ""
 
-#: mod/admin.php:1066
-msgid "Site name"
+#: mod/profiles.php:683
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/admin.php:1067
-msgid "Host name"
+#: mod/profiles.php:685
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/admin.php:1068
-msgid "Sender Email"
+#: mod/profiles.php:686
+msgid "View this profile"
 msgstr ""
 
-#: mod/admin.php:1068
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/profiles.php:688
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/admin.php:1069
-msgid "Banner/Logo"
+#: mod/profiles.php:689
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/admin.php:1070
-msgid "Shortcut icon"
+#: mod/profiles.php:690
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/admin.php:1070
-msgid "Link to an icon that will be used for browsers."
+#: mod/profiles.php:692
+msgid "Basic information"
 msgstr ""
 
-#: mod/admin.php:1071
-msgid "Touch icon"
+#: mod/profiles.php:693
+msgid "Profile picture"
 msgstr ""
 
-#: mod/admin.php:1071
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/profiles.php:695
+msgid "Preferences"
 msgstr ""
 
-#: mod/admin.php:1072
-msgid "Additional Info"
+#: mod/profiles.php:696
+msgid "Status information"
 msgstr ""
 
-#: mod/admin.php:1072
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+#: mod/profiles.php:697
+msgid "Additional information"
 msgstr ""
 
-#: mod/admin.php:1073
-msgid "System language"
+#: mod/profiles.php:700
+msgid "Relation"
 msgstr ""
 
-#: mod/admin.php:1074
-msgid "System theme"
+#: mod/profiles.php:704
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/admin.php:1074
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/profiles.php:705
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/admin.php:1075
-msgid "Mobile system theme"
+#: mod/profiles.php:707
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/admin.php:1075
-msgid "Theme for mobile devices"
+#: mod/profiles.php:712
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/admin.php:1076
-msgid "SSL link policy"
+#: mod/profiles.php:714
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/admin.php:1076
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/profiles.php:715
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/admin.php:1077
-msgid "Force SSL"
+#: mod/profiles.php:716
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/admin.php:1077
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
+#: mod/profiles.php:719
+msgid "Street Address:"
 msgstr ""
 
-#: mod/admin.php:1078
-msgid "Hide help entry from navigation menu"
+#: mod/profiles.php:720
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/admin.php:1078
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/profiles.php:721
+msgid "Region/State:"
 msgstr ""
 
-#: mod/admin.php:1079
-msgid "Single user instance"
+#: mod/profiles.php:722
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/admin.php:1079
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/profiles.php:723
+msgid "Country:"
 msgstr ""
 
-#: mod/admin.php:1080
-msgid "Maximum image size"
+#: mod/profiles.php:727
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/admin.php:1080
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/profiles.php:727
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/admin.php:1081
-msgid "Maximum image length"
+#: mod/profiles.php:728
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/admin.php:1081
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/profiles.php:730
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/admin.php:1082
-msgid "JPEG image quality"
+#: mod/profiles.php:731
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/admin.php:1082
+#: mod/profiles.php:731
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
 msgstr ""
 
-#: mod/admin.php:1084
-msgid "Register policy"
-msgstr ""
+#: mod/profiles.php:732
+msgid "Homepage URL:"
+msgstr "Homepage URL:"
 
-#: mod/admin.php:1085
-msgid "Maximum Daily Registrations"
+#: mod/profiles.php:735
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/admin.php:1085
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
+#: mod/profiles.php:736
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/admin.php:1086
-msgid "Register text"
+#: mod/profiles.php:736
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/admin.php:1086
-msgid "Will be displayed prominently on the registration page."
+#: mod/profiles.php:737
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/admin.php:1087
-msgid "Accounts abandoned after x days"
+#: mod/profiles.php:737
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/admin.php:1087
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/profiles.php:740
+msgid "Musical interests"
 msgstr ""
 
-#: mod/admin.php:1088
-msgid "Allowed friend domains"
+#: mod/profiles.php:741
+msgid "Books, literature"
 msgstr ""
 
-#: mod/admin.php:1088
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: mod/profiles.php:742
+msgid "Television"
 msgstr ""
 
-#: mod/admin.php:1089
-msgid "Allowed email domains"
+#: mod/profiles.php:743
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/admin.php:1089
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
+#: mod/profiles.php:744
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/admin.php:1090
-msgid "Block public"
+#: mod/profiles.php:745
+msgid "Love/romance"
 msgstr ""
 
-#: mod/admin.php:1090
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/profiles.php:746
+msgid "Work/employment"
 msgstr ""
 
-#: mod/admin.php:1091
-msgid "Force publish"
+#: mod/profiles.php:747
+msgid "School/education"
 msgstr ""
 
-#: mod/admin.php:1091
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/profiles.php:748
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/admin.php:1092
-msgid "Global directory URL"
+#: mod/profiles.php:789
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/admin.php:1092
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/settings.php:62
+msgid "Display"
 msgstr ""
 
-#: mod/admin.php:1093
-msgid "Allow threaded items"
-msgstr ""
+#: mod/settings.php:69 mod/settings.php:891
+msgid "Social Networks"
+msgstr "Social networks"
 
-#: mod/admin.php:1093
-msgid "Allow infinite level threading for items on this site."
+#: mod/settings.php:90
+msgid "Connected apps"
 msgstr ""
 
-#: mod/admin.php:1094
-msgid "Private posts by default for new users"
+#: mod/settings.php:104
+msgid "Remove account"
 msgstr ""
 
-#: mod/admin.php:1094
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/settings.php:159
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/admin.php:1095
-msgid "Don't include post content in email notifications"
+#: mod/settings.php:273
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/admin.php:1095
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
+#: mod/settings.php:278
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/admin.php:1096
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/settings.php:293
+msgid "Features updated"
 msgstr ""
 
-#: mod/admin.php:1096
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/settings.php:363
+msgid "Relocate message has been send to your contacts"
+msgstr "Relocate message has been send to your contacts"
+
+#: mod/settings.php:382
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1097
-msgid "Don't embed private images in posts"
+#: mod/settings.php:390
+msgid "Wrong password."
 msgstr ""
 
-#: mod/admin.php:1097
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
+#: mod/settings.php:401
+msgid "Password changed."
 msgstr ""
 
-#: mod/admin.php:1098
-msgid "Allow Users to set remote_self"
+#: mod/settings.php:403
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/admin.php:1098
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
+#: mod/settings.php:483
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/admin.php:1099
-msgid "Block multiple registrations"
+#: mod/settings.php:485
+msgid " Name too short."
 msgstr ""
 
-#: mod/admin.php:1099
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/settings.php:494
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/admin.php:1100
-msgid "OpenID support"
+#: mod/settings.php:499
+msgid " Not valid email."
 msgstr ""
 
-#: mod/admin.php:1100
-msgid "OpenID support for registration and logins."
+#: mod/settings.php:505
+msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:1101
-msgid "Fullname check"
+#: mod/settings.php:561
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/admin.php:1101
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/settings.php:565
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/admin.php:1102
-msgid "Community Page Style"
+#: mod/settings.php:605
+msgid "Settings updated."
 msgstr ""
 
-#: mod/admin.php:1102
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
+#: mod/settings.php:681 mod/settings.php:707 mod/settings.php:743
+msgid "Add application"
 msgstr ""
 
-#: mod/admin.php:1103
-msgid "Posts per user on community page"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/admin.php:1103
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/admin.php:1104
-msgid "Enable OStatus support"
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Redirect"
 msgstr ""
 
-#: mod/admin.php:1104
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: mod/settings.php:688 mod/settings.php:714
+msgid "Icon url"
+msgstr "Icon URL"
+
+#: mod/settings.php:699
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/admin.php:1105
-msgid "OStatus conversation completion interval"
+#: mod/settings.php:742
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/admin.php:1105
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: mod/settings.php:746
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/admin.php:1106
-msgid "Only import OStatus threads from our contacts"
+#: mod/settings.php:747
+msgid "No name"
 msgstr ""
 
-#: mod/admin.php:1106
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
+#: mod/settings.php:748
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/admin.php:1107
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/settings.php:760
+msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/admin.php:1109
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
+#: mod/settings.php:769
+msgid "Plugin Settings"
 msgstr ""
 
-#: mod/admin.php:1110
-msgid "Enable Diaspora support"
+#: mod/settings.php:791
+msgid "Additional Features"
 msgstr ""
 
-#: mod/admin.php:1110
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/settings.php:801 mod/settings.php:805
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/admin.php:1111
-msgid "Only allow Friendica contacts"
+#: mod/settings.php:811
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/admin.php:1111
+#: mod/settings.php:813
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr ""
+"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 "Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original Friendica post."
 
-#: mod/admin.php:1112
-msgid "Verify SSL"
+#: mod/settings.php:819
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:1112
+#: mod/settings.php:821
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
+"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:1113
-msgid "Proxy user"
+#: mod/settings.php:827
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:1114
-msgid "Proxy URL"
+#: mod/settings.php:835
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/admin.php:1115
-msgid "Network timeout"
+#: mod/settings.php:837
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
 msgstr ""
 
-#: mod/admin.php:1115
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/settings.php:840
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/admin.php:1116
-msgid "Maximum Load Average"
+#: mod/settings.php:849 mod/settings.php:850
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/admin.php:1116
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: mod/settings.php:849 mod/settings.php:850
+msgid "enabled"
 msgstr ""
 
-#: mod/admin.php:1117
-msgid "Maximum Load Average (Frontend)"
+#: mod/settings.php:849 mod/settings.php:850
+msgid "disabled"
 msgstr ""
 
-#: mod/admin.php:1117
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/settings.php:850
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/admin.php:1118
-msgid "Minimal Memory"
+#: mod/settings.php:884
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:1118
-msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
+#: mod/settings.php:896
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/admin.php:1119
-msgid "Maximum table size for optimization"
+#: mod/settings.php:897
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/admin.php:1119
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: mod/settings.php:898
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/admin.php:1120
-msgid "Minimum level of fragmentation"
+#: mod/settings.php:900
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/admin.php:1120
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/settings.php:901
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/admin.php:1122
-msgid "Periodical check of global contacts"
+#: mod/settings.php:902
+msgid "Security:"
 msgstr ""
 
-#: mod/admin.php:1122
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+#: mod/settings.php:902 mod/settings.php:907
+msgid "None"
 msgstr ""
 
-#: mod/admin.php:1123
-msgid "Days between requery"
+#: mod/settings.php:903
+msgid "Email login name:"
 msgstr ""
 
-#: mod/admin.php:1123
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/settings.php:904
+msgid "Email password:"
 msgstr ""
 
-#: mod/admin.php:1124
-msgid "Discover contacts from other servers"
+#: mod/settings.php:905
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/admin.php:1124
-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 "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 recommend setting is 'Users, Global Contacts'."
+#: mod/settings.php:906
+msgid "Send public posts to all email contacts:"
+msgstr ""
 
-#: mod/admin.php:1125
-msgid "Timeframe for fetching global contacts"
+#: mod/settings.php:907
+msgid "Action after import:"
 msgstr ""
 
-#: mod/admin.php:1125
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+#: mod/settings.php:907
+msgid "Move to folder"
+msgstr "Move to folder"
+
+#: mod/settings.php:908
+msgid "Move to folder:"
+msgstr "Move to folder:"
+
+#: mod/settings.php:1004
+msgid "Display Settings"
 msgstr ""
 
-#: mod/admin.php:1126
-msgid "Search the local directory"
+#: mod/settings.php:1010 mod/settings.php:1033
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/admin.php:1126
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
+#: mod/settings.php:1011
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/admin.php:1128
-msgid "Publish server information"
+#: mod/settings.php:1012
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/admin.php:1128
+#: mod/settings.php:1012
 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."
+"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:1130
-msgid "Suppress Tags"
+#: mod/settings.php:1013
+msgid "Update browser every xx seconds"
+msgstr "Update browser every so many seconds:"
+
+#: mod/settings.php:1013
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/admin.php:1130
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/settings.php:1014
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/admin.php:1131
-msgid "Path to item cache"
+#: mod/settings.php:1014 mod/settings.php:1015
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/admin.php:1131
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/settings.php:1015
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/admin.php:1132
-msgid "Cache duration in seconds"
+#: mod/settings.php:1016
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/admin.php:1132
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
+#: mod/settings.php:1017
+msgid "Calendar"
 msgstr ""
 
-#: mod/admin.php:1133
-msgid "Maximum numbers of comments per post"
+#: mod/settings.php:1018
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/admin.php:1133
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/settings.php:1019
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/admin.php:1134
-msgid "Temp path"
+#: mod/settings.php:1020
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/admin.php:1134
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+#: mod/settings.php:1021
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/admin.php:1135
-msgid "Base path to installation"
+#: mod/settings.php:1022
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/admin.php:1135
+#: mod/settings.php:1022
 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."
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/admin.php:1136
-msgid "Disable picture proxy"
-msgstr ""
+#: mod/settings.php:1024
+msgid "General Theme Settings"
+msgstr "Themes"
 
-#: mod/admin.php:1136
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
+#: mod/settings.php:1025
+msgid "Custom Theme Settings"
+msgstr "Theme customisation"
 
-#: mod/admin.php:1137
-msgid "Only search in tags"
-msgstr ""
+#: mod/settings.php:1026
+msgid "Content Settings"
+msgstr "Content/Layout"
 
-#: mod/admin.php:1137
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/settings.php:1027 view/theme/duepuntozero/config.php:66
+#: view/theme/frio/config.php:69 view/theme/quattro/config.php:72
+#: view/theme/vier/config.php:115
+msgid "Theme settings"
 msgstr ""
 
-#: mod/admin.php:1139
-msgid "New base url"
+#: mod/settings.php:1111
+msgid "Account Types"
+msgstr "Account types:"
+
+#: mod/settings.php:1112
+msgid "Personal Page Subtypes"
+msgstr "Personal Page subtypes"
+
+#: mod/settings.php:1113
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/admin.php:1139
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr ""
+#: mod/settings.php:1120
+msgid "Personal Page"
+msgstr "Personal Page"
+
+#: mod/settings.php:1121
+msgid "This account is a regular personal profile"
+msgstr "Regular personal profile"
+
+#: mod/settings.php:1124
+msgid "Organisation Page"
+msgstr "Organisation Page"
 
-#: mod/admin.php:1141
-msgid "RINO Encryption"
-msgstr ""
+#: mod/settings.php:1125
+msgid "This account is a profile for an organisation"
+msgstr "Profile for an organisation"
 
-#: mod/admin.php:1141
-msgid "Encryption layer between nodes."
-msgstr ""
+#: mod/settings.php:1128
+msgid "News Page"
+msgstr "News Page"
 
-#: mod/admin.php:1143
-msgid "Maximum number of parallel workers"
-msgstr ""
+#: mod/settings.php:1129
+msgid "This account is a news account/reflector"
+msgstr "News reflector"
 
-#: mod/admin.php:1143
+#: mod/settings.php:1132
+msgid "Community Forum"
+msgstr "Community Forum"
+
+#: mod/settings.php:1133
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
+"This account is a community forum where people can discuss with each other"
+msgstr "Discussion forum for community"
 
-#: mod/admin.php:1144
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
+#: mod/settings.php:1136
+msgid "Normal Account Page"
+msgstr "Standard"
 
-#: mod/admin.php:1144
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr ""
+#: mod/settings.php:1137
+msgid "This account is a normal personal profile"
+msgstr "Regular personal profile"
 
-#: mod/admin.php:1145
-msgid "Enable fastlane"
-msgstr ""
+#: mod/settings.php:1140
+msgid "Soapbox Page"
+msgstr "Soapbox"
 
-#: mod/admin.php:1145
-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:1141
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Automatically approves contact requests as followers"
 
-#: mod/admin.php:1146
-msgid "Enable frontend worker"
+#: mod/settings.php:1144
+msgid "Public Forum"
 msgstr ""
 
-#: mod/admin.php:1146
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
+#: mod/settings.php:1145
+msgid "Automatically approve all contact requests"
 msgstr ""
 
-#: mod/admin.php:1176
-msgid "Update has been marked successful"
-msgstr ""
+#: mod/settings.php:1148
+msgid "Automatic Friend Page"
+msgstr "Popularity"
 
-#: mod/admin.php:1184
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr ""
+#: mod/settings.php:1149
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Automatically approves contact requests as friends"
 
-#: mod/admin.php:1187
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/settings.php:1152
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/admin.php:1201
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/settings.php:1153
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: mod/admin.php:1204
-#, php-format
-msgid "Update %s was successfully applied."
+#: mod/settings.php:1164
+msgid "OpenID:"
 msgstr ""
 
-#: mod/admin.php:1207
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/settings.php:1164
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/admin.php:1210
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: mod/settings.php:1172
+msgid "Publish your default profile in your local site directory?"
+msgstr "Publish default profile in local site directory?"
 
-#: mod/admin.php:1230
-msgid "No failed updates."
-msgstr ""
+#: mod/settings.php:1172
+msgid "Your profile may be visible in public."
+msgstr "Your local directory may be publicly visible"
 
-#: mod/admin.php:1231
-msgid "Check database structure"
-msgstr ""
+#: mod/settings.php:1178
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publish default profile in global directory?"
 
-#: mod/admin.php:1236
-msgid "Failed Updates"
-msgstr ""
+#: mod/settings.php:1185
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Hide my contact list from others?"
 
-#: mod/admin.php:1237
+#: mod/settings.php:1189
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Posting public messages to Diaspora and other networks will not be possible if enabled"
 
-#: mod/admin.php:1238
-msgid "Mark success (if update was manually applied)"
-msgstr ""
+#: mod/settings.php:1194
+msgid "Allow friends to post to your profile page?"
+msgstr "Allow friends to post to my wall?"
 
-#: mod/admin.php:1239
-msgid "Attempt to execute this update step automatically"
-msgstr ""
+#: mod/settings.php:1199
+msgid "Allow friends to tag your posts?"
+msgstr "Allow friends to tag my post?"
 
-#: mod/admin.php:1273
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+#: mod/settings.php:1204
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/admin.php:1276
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
+#: mod/settings.php:1209
+msgid "Permit unknown people to send you private mail?"
+msgstr "Allow unknown people to send me private messages?"
+
+#: mod/settings.php:1217
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/admin.php:1320
+#: mod/settings.php:1225
 #, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "My identity address: <strong>'%s'</strong> or '%s'"
 
-#: mod/admin.php:1327
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:1232
+msgid "Automatically expire posts after this many days:"
+msgstr "Automatically expire posts after this many days:"
 
-#: mod/admin.php:1374
-#, php-format
-msgid "User '%s' deleted"
-msgstr ""
+#: mod/settings.php:1232
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Posts will not expire if empty;  expired posts will be deleted"
 
-#: mod/admin.php:1382
-#, php-format
-msgid "User '%s' unblocked"
-msgstr ""
+#: mod/settings.php:1233
+msgid "Advanced expiration settings"
+msgstr "Advanced expiration settings"
 
-#: mod/admin.php:1382
-#, php-format
-msgid "User '%s' blocked"
-msgstr ""
+#: mod/settings.php:1234
+msgid "Advanced Expiration"
+msgstr "Advanced expiration"
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Register date"
+#: mod/settings.php:1235
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Last login"
+#: mod/settings.php:1236
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/admin.php:1490 mod/admin.php:1516
-msgid "Last item"
+#: mod/settings.php:1237
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/admin.php:1499
-msgid "Add User"
+#: mod/settings.php:1238
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/admin.php:1500
-msgid "select all"
+#: mod/settings.php:1239
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/admin.php:1501
-msgid "User registrations waiting for confirm"
+#: mod/settings.php:1270
+msgid "Account Settings"
 msgstr ""
 
-#: mod/admin.php:1502
-msgid "User waiting for permanent deletion"
-msgstr ""
+#: mod/settings.php:1278
+msgid "Password Settings"
+msgstr "Password change"
 
-#: mod/admin.php:1503
-msgid "Request date"
+#: mod/settings.php:1280
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/admin.php:1504
-msgid "No registrations."
-msgstr ""
+#: mod/settings.php:1281
+msgid "Current Password:"
+msgstr "Current password:"
 
-#: mod/admin.php:1505
-msgid "Note from the user"
-msgstr ""
+#: mod/settings.php:1281 mod/settings.php:1282
+msgid "Your current password to confirm the changes"
+msgstr "Current password to confirm change"
 
-#: mod/admin.php:1507
-msgid "Deny"
+#: mod/settings.php:1282
+msgid "Password:"
 msgstr ""
 
-#: mod/admin.php:1511
-msgid "Site admin"
-msgstr ""
+#: mod/settings.php:1286
+msgid "Basic Settings"
+msgstr "Basic information"
 
-#: mod/admin.php:1512
-msgid "Account expired"
-msgstr ""
+#: mod/settings.php:1288
+msgid "Email Address:"
+msgstr "Email address:"
 
-#: mod/admin.php:1515
-msgid "New User"
+#: mod/settings.php:1289
+msgid "Your Timezone:"
+msgstr "Time zone:"
+
+#: mod/settings.php:1290
+msgid "Your Language:"
+msgstr "Language:"
+
+#: mod/settings.php:1290
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/admin.php:1516
-msgid "Deleted since"
-msgstr ""
+#: mod/settings.php:1291
+msgid "Default Post Location:"
+msgstr "Posting location:"
 
-#: mod/admin.php:1521
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
+#: mod/settings.php:1292
+msgid "Use Browser Location:"
+msgstr "Use browser location:"
 
-#: mod/admin.php:1522
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr ""
+#: mod/settings.php:1295
+msgid "Security and Privacy Settings"
+msgstr "Security and privacy"
 
-#: mod/admin.php:1532
-msgid "Name of the new user."
-msgstr ""
+#: mod/settings.php:1297
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximum friend requests per day:"
 
-#: mod/admin.php:1533
-msgid "Nickname"
-msgstr ""
+#: mod/settings.php:1297 mod/settings.php:1327
+msgid "(to prevent spam abuse)"
+msgstr "May prevent spam or abuse registrations"
 
-#: mod/admin.php:1533
-msgid "Nickname of the new user."
-msgstr ""
+#: mod/settings.php:1298
+msgid "Default Post Permissions"
+msgstr "Default post permissions"
 
-#: mod/admin.php:1534
-msgid "Email address of the new user."
+#: mod/settings.php:1299
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/admin.php:1577
-#, php-format
-msgid "Plugin %s disabled."
+#: mod/settings.php:1310
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/admin.php:1581
-#, php-format
-msgid "Plugin %s enabled."
+#: mod/settings.php:1311
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/admin.php:1592 mod/admin.php:1844
-msgid "Disable"
+#: mod/settings.php:1315
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/admin.php:1594 mod/admin.php:1846
-msgid "Enable"
-msgstr ""
+#: mod/settings.php:1327
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximum private messages per day from unknown people:"
 
-#: mod/admin.php:1617 mod/admin.php:1893
-msgid "Toggle"
-msgstr ""
+#: mod/settings.php:1330
+msgid "Notification Settings"
+msgstr "Notification"
 
-#: mod/admin.php:1625 mod/admin.php:1902
-msgid "Author: "
-msgstr ""
+#: mod/settings.php:1331
+msgid "By default post a status message when:"
+msgstr "By default post a status message when:"
 
-#: mod/admin.php:1626 mod/admin.php:1903
-msgid "Maintainer: "
-msgstr ""
+#: mod/settings.php:1332
+msgid "accepting a friend request"
+msgstr "accepting friend requests"
 
-#: mod/admin.php:1681
-msgid "Reload active plugins"
-msgstr ""
+#: mod/settings.php:1333
+msgid "joining a forum/community"
+msgstr "joining forums or communities"
 
-#: mod/admin.php:1686
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
+#: mod/settings.php:1334
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/admin.php:1805
-msgid "No themes found."
-msgstr ""
+#: mod/settings.php:1335
+msgid "Send a notification email when:"
+msgstr "Send notification email when:"
 
-#: mod/admin.php:1884
-msgid "Screenshot"
-msgstr ""
+#: mod/settings.php:1336
+msgid "You receive an introduction"
+msgstr "Receiving an introduction"
 
-#: mod/admin.php:1944
-msgid "Reload active themes"
-msgstr ""
+#: mod/settings.php:1337
+msgid "Your introductions are confirmed"
+msgstr "My introductions are confirmed"
 
-#: mod/admin.php:1949
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr ""
+#: mod/settings.php:1338
+msgid "Someone writes on your profile wall"
+msgstr "Someone writes on my wall"
 
-#: mod/admin.php:1950
-msgid "[Experimental]"
-msgstr ""
+#: mod/settings.php:1339
+msgid "Someone writes a followup comment"
+msgstr "A follow up comment is posted"
 
-#: mod/admin.php:1951
-msgid "[Unsupported]"
-msgstr ""
+#: mod/settings.php:1340
+msgid "You receive a private message"
+msgstr "receiving a private message"
 
-#: mod/admin.php:1975
-msgid "Log settings updated."
-msgstr ""
+#: mod/settings.php:1341
+msgid "You receive a friend suggestion"
+msgstr "Receiving a friend suggestion"
 
-#: mod/admin.php:2007
-msgid "PHP log currently enabled."
-msgstr ""
+#: mod/settings.php:1342
+msgid "You are tagged in a post"
+msgstr "Tagged in a post"
 
-#: mod/admin.php:2009
-msgid "PHP log currently disabled."
-msgstr ""
+#: mod/settings.php:1343
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Poked in a post"
 
-#: mod/admin.php:2018
-msgid "Clear"
-msgstr ""
+#: mod/settings.php:1345
+msgid "Activate desktop notifications"
+msgstr "Activate desktop notifications"
 
-#: mod/admin.php:2023
-msgid "Enable Debugging"
-msgstr ""
+#: mod/settings.php:1345
+msgid "Show desktop popup on new notifications"
+msgstr "Show desktop pop-up on new notifications"
 
-#: mod/admin.php:2024
-msgid "Log file"
-msgstr ""
+#: mod/settings.php:1347
+msgid "Text-only notification emails"
+msgstr "Text-only notification emails"
 
-#: mod/admin.php:2024
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr ""
+#: mod/settings.php:1349
+msgid "Send text only notification emails, without the html part"
+msgstr "Receive text only emails without HTML "
 
-#: mod/admin.php:2025
-msgid "Log level"
-msgstr ""
+#: mod/settings.php:1351
+msgid "Advanced Account/Page Type Settings"
+msgstr "Advanced account types"
 
-#: mod/admin.php:2028
-msgid "PHP logging"
-msgstr ""
+#: mod/settings.php:1352
+msgid "Change the behaviour of this account for special situations"
+msgstr "Change behaviour of this account for special situations"
 
-#: mod/admin.php:2029
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr ""
+#: mod/settings.php:1355
+msgid "Relocate"
+msgstr "Recent relocation"
 
-#: mod/admin.php:2160
-#, php-format
-msgid "Lock feature %s"
-msgstr ""
+#: mod/settings.php:1356
+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 "If you have moved this profile from another server and some of your contacts don't receive your updates:"
 
-#: mod/admin.php:2168
-msgid "Manage Additional Features"
+#: mod/settings.php:1357
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: object/Item.php:359
+#: object/Item.php:356
 msgid "via"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:44
+#: view/theme/duepuntozero/config.php:47
 msgid "greenzero"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:45
+#: view/theme/duepuntozero/config.php:48
 msgid "purplezero"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:46
+#: view/theme/duepuntozero/config.php:49
 msgid "easterbunny"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:47
+#: view/theme/duepuntozero/config.php:50
 msgid "darkzero"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:48
+#: view/theme/duepuntozero/config.php:51
 msgid "comix"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:49
+#: view/theme/duepuntozero/config.php:52
 msgid "slackr"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:64
+#: view/theme/duepuntozero/config.php:67
 msgid "Variations"
 msgstr ""
 
-#: view/theme/frio/config.php:47
-msgid "Default"
-msgstr ""
-
-#: view/theme/frio/config.php:59
-msgid "Note: "
-msgstr ""
-
-#: view/theme/frio/config.php:59
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr ""
-
-#: view/theme/frio/config.php:67
-msgid "Select scheme"
-msgstr ""
-
-#: view/theme/frio/config.php:68
-msgid "Navigation bar background color"
-msgstr ""
-
-#: view/theme/frio/config.php:69
-msgid "Navigation bar icon color "
-msgstr ""
-
-#: view/theme/frio/config.php:70
-msgid "Link color"
-msgstr ""
-
-#: view/theme/frio/config.php:71
-msgid "Set the background color"
-msgstr ""
-
-#: view/theme/frio/config.php:72
-msgid "Content background transparency"
-msgstr ""
-
-#: view/theme/frio/config.php:73
-msgid "Set the background image"
-msgstr ""
-
 #: view/theme/frio/php/Image.php:23
 msgid "Repeat the image"
 msgstr ""
@@ -8815,127 +8778,167 @@ msgstr ""
 msgid "Resize to best fit and retain aspect ratio."
 msgstr ""
 
-#: view/theme/frio/theme.php:226
+#: view/theme/frio/config.php:50
+msgid "Default"
+msgstr ""
+
+#: view/theme/frio/config.php:62
+msgid "Note: "
+msgstr ""
+
+#: view/theme/frio/config.php:62
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr ""
+
+#: view/theme/frio/config.php:70
+msgid "Select scheme"
+msgstr ""
+
+#: view/theme/frio/config.php:71
+msgid "Navigation bar background color"
+msgstr "Navigation bar background colour"
+
+#: view/theme/frio/config.php:72
+msgid "Navigation bar icon color "
+msgstr "Navigation bar icon colour "
+
+#: view/theme/frio/config.php:73
+msgid "Link color"
+msgstr "Link colour"
+
+#: view/theme/frio/config.php:74
+msgid "Set the background color"
+msgstr "Set the background colour"
+
+#: view/theme/frio/config.php:75
+msgid "Content background transparency"
+msgstr ""
+
+#: view/theme/frio/config.php:76
+msgid "Set the background image"
+msgstr ""
+
+#: view/theme/frio/theme.php:228
 msgid "Guest"
 msgstr ""
 
-#: view/theme/frio/theme.php:232
+#: view/theme/frio/theme.php:234
 msgid "Visitor"
 msgstr ""
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Alignment"
 msgstr ""
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Left"
 msgstr ""
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Center"
-msgstr ""
+msgstr "Centre"
 
-#: view/theme/quattro/config.php:71
+#: view/theme/quattro/config.php:74
 msgid "Color scheme"
-msgstr ""
+msgstr "Colour scheme"
 
-#: view/theme/quattro/config.php:72
+#: view/theme/quattro/config.php:75
 msgid "Posts font size"
 msgstr ""
 
-#: view/theme/quattro/config.php:73
+#: view/theme/quattro/config.php:76
 msgid "Textareas font size"
 msgstr ""
 
-#: view/theme/vier/config.php:69
+#: view/theme/vier/config.php:70
 msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: view/theme/vier/config.php:115
+#: view/theme/vier/config.php:116
 msgid "Set style"
 msgstr ""
 
-#: view/theme/vier/config.php:116
+#: view/theme/vier/config.php:117
 msgid "Community Pages"
 msgstr ""
 
-#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:118 view/theme/vier/theme.php:151
 msgid "Community Profiles"
 msgstr ""
 
-#: view/theme/vier/config.php:118
+#: view/theme/vier/config.php:119
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:392
 msgid "Connect Services"
 msgstr ""
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:199
 msgid "Find Friends"
 msgstr ""
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179
+#: view/theme/vier/config.php:122 view/theme/vier/theme.php:181
 msgid "Last users"
 msgstr ""
 
-#: view/theme/vier/theme.php:198
+#: view/theme/vier/theme.php:200
 msgid "Local Directory"
 msgstr ""
 
-#: view/theme/vier/theme.php:290
+#: view/theme/vier/theme.php:292
 msgid "Quick Start"
 msgstr ""
 
-#: index.php:433
-msgid "toggle mobile"
-msgstr ""
-
-#: boot.php:999
+#: src/App.php:505
 msgid "Delete this item?"
 msgstr "Delete this item?"
 
-#: boot.php:1001
+#: src/App.php:507
 msgid "show fewer"
 msgstr "Show fewer."
 
-#: boot.php:1729
+#: index.php:436
+msgid "toggle mobile"
+msgstr ""
+
+#: boot.php:726
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s failed. See error logs."
 
-#: boot.php:1843
+#: boot.php:838
 msgid "Create a New Account"
 msgstr "Create a new account"
 
-#: boot.php:1871
+#: boot.php:866
 msgid "Password: "
 msgstr "Password: "
 
-#: boot.php:1872
+#: boot.php:867
 msgid "Remember me"
 msgstr "Remember me"
 
-#: boot.php:1875
+#: boot.php:870
 msgid "Or login using OpenID: "
 msgstr "Or login with OpenID: "
 
-#: boot.php:1881
+#: boot.php:876
 msgid "Forgot your password?"
 msgstr "Forgot your password?"
 
-#: boot.php:1884
+#: boot.php:879
 msgid "Website Terms of Service"
 msgstr "Website Terms of Service"
 
-#: boot.php:1885
+#: boot.php:880
 msgid "terms of service"
 msgstr "Terms of service"
 
-#: boot.php:1887
+#: boot.php:882
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: boot.php:1888
+#: boot.php:883
 msgid "privacy policy"
 msgstr "Privacy policy"
index 43a6db6dd73f34dc54637b2e257044cddda55537..eb83b85f580d55a91fa5b0bf386d0f357689f6c1 100644 (file)
@@ -5,220 +5,6 @@ function string_plural_select_en_GB($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Forums"] = "Forums";
-$a->strings["External link to forum"] = "External link to forum";
-$a->strings["show more"] = "Show more...";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Network";
-$a->strings["Personal"] = "Personal";
-$a->strings["Home"] = "Home";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["%s commented on %s's post"] = "%s commented on %s's post";
-$a->strings["%s created a new post"] = "%s posted something new";
-$a->strings["%s liked %s's post"] = "%s liked %s's post";
-$a->strings["%s disliked %s's post"] = "%s disliked %s's post";
-$a->strings["%s is attending %s's event"] = "%s is going to %s's event";
-$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event";
-$a->strings["%s may attend %s's event"] = "%s may go to %s's event";
-$a->strings["%s is now friends with %s"] = "%s is now friends with %s";
-$a->strings["Friend Suggestion"] = "Friend suggestion";
-$a->strings["Friend/Connect Request"] = "Friend/Contact request";
-$a->strings["New Follower"] = "New follower";
-$a->strings["Wall Photos"] = "Wall photos";
-$a->strings["(no subject)"] = "(no subject)";
-$a->strings["noreply"] = "noreply";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
-$a->strings["photo"] = "photo";
-$a->strings["status"] = "status";
-$a->strings["event"] = "event";
-$a->strings["[no subject]"] = "[no subject]";
-$a->strings["Nothing new here"] = "Nothing new here";
-$a->strings["Clear notifications"] = "Clear notifications";
-$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
-$a->strings["Logout"] = "Logout";
-$a->strings["End this session"] = "End this session";
-$a->strings["Status"] = "Status";
-$a->strings["Your posts and conversations"] = "My posts and conversations";
-$a->strings["Profile"] = "Profile";
-$a->strings["Your profile page"] = "My profile page";
-$a->strings["Photos"] = "Photos";
-$a->strings["Your photos"] = "My photos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "My videos";
-$a->strings["Events"] = "Events";
-$a->strings["Your events"] = "My events";
-$a->strings["Personal notes"] = "Personal notes";
-$a->strings["Your personal notes"] = "My personal notes";
-$a->strings["Login"] = "Login";
-$a->strings["Sign in"] = "Sign in";
-$a->strings["Home Page"] = "Home page";
-$a->strings["Register"] = "Register";
-$a->strings["Create an account"] = "Create an account";
-$a->strings["Help"] = "Help";
-$a->strings["Help and documentation"] = "Help and documentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games";
-$a->strings["Search"] = "Search";
-$a->strings["Search site content"] = "Search site content";
-$a->strings["Full Text"] = "Full text";
-$a->strings["Tags"] = "Tags";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Community"] = "Community";
-$a->strings["Conversations on this site"] = "Public conversations on this site";
-$a->strings["Conversations on the network"] = "Conversations on the network";
-$a->strings["Events and Calendar"] = "Events and calendar";
-$a->strings["Directory"] = "Directory";
-$a->strings["People directory"] = "People directory";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Information about this Friendica instance";
-$a->strings["Conversations from your friends"] = "My friends' conversations";
-$a->strings["Network Reset"] = "Network reset";
-$a->strings["Load Network page with no filters"] = "Load network page without filters";
-$a->strings["Friend Requests"] = "Friend requests";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["See all notifications"] = "See all notifications";
-$a->strings["Mark as seen"] = "Mark as seen";
-$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
-$a->strings["Messages"] = "Messages";
-$a->strings["Private mail"] = "Private messages";
-$a->strings["Inbox"] = "Inbox";
-$a->strings["Outbox"] = "Outbox";
-$a->strings["New Message"] = "New Message";
-$a->strings["Manage"] = "Manage";
-$a->strings["Manage other pages"] = "Manage other pages";
-$a->strings["Delegations"] = "Delegations";
-$a->strings["Delegate Page Management"] = "Delegate page management";
-$a->strings["Settings"] = "Settings";
-$a->strings["Account settings"] = "Account settings";
-$a->strings["Profiles"] = "Profiles";
-$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles";
-$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site setup and configuration"] = "Site setup and configuration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Site map";
-$a->strings["Click here to upgrade."] = "Click here to upgrade.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan.";
-$a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan.";
-$a->strings["Male"] = "Male";
-$a->strings["Female"] = "Female";
-$a->strings["Currently Male"] = "Currently Male";
-$a->strings["Currently Female"] = "Currently Female";
-$a->strings["Mostly Male"] = "Mostly Male";
-$a->strings["Mostly Female"] = "Mostly Female";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transsexual";
-$a->strings["Hermaphrodite"] = "Hermaphrodite";
-$a->strings["Neuter"] = "Neuter";
-$a->strings["Non-specific"] = "Non-specific";
-$a->strings["Other"] = "Other";
-$a->strings["Undecided"] = array(
-       0 => "Undecided",
-       1 => "Undecided",
-);
-$a->strings["Males"] = "Males";
-$a->strings["Females"] = "Females";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbian";
-$a->strings["No Preference"] = "No Preference";
-$a->strings["Bisexual"] = "Bisexual";
-$a->strings["Autosexual"] = "Auto-sexual";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Virgin";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Asexual";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Lonely";
-$a->strings["Available"] = "Available";
-$a->strings["Unavailable"] = "Unavailable";
-$a->strings["Has crush"] = "Having a crush";
-$a->strings["Infatuated"] = "Infatuated";
-$a->strings["Dating"] = "Dating";
-$a->strings["Unfaithful"] = "Unfaithful";
-$a->strings["Sex Addict"] = "Sex addict";
-$a->strings["Friends"] = "Friends";
-$a->strings["Friends/Benefits"] = "Friends with benefits";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Engaged";
-$a->strings["Married"] = "Married";
-$a->strings["Imaginarily married"] = "Imaginarily married";
-$a->strings["Partners"] = "Partners";
-$a->strings["Cohabiting"] = "Cohabiting";
-$a->strings["Common law"] = "Common law spouse";
-$a->strings["Happy"] = "Happy";
-$a->strings["Not looking"] = "Not looking";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrayed";
-$a->strings["Separated"] = "Separated";
-$a->strings["Unstable"] = "Unstable";
-$a->strings["Divorced"] = "Divorced";
-$a->strings["Imaginarily divorced"] = "Imaginarily divorced";
-$a->strings["Widowed"] = "Widowed";
-$a->strings["Uncertain"] = "Uncertain";
-$a->strings["It's complicated"] = "It's complicated";
-$a->strings["Don't care"] = "Don't care";
-$a->strings["Ask me"] = "Ask me";
-$a->strings["Welcome "] = "Welcome ";
-$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
-$a->strings["Welcome back "] = "Welcome back ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
-$a->strings["Error decoding account file"] = "Error decoding account file";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?";
-$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname.";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!";
-$a->strings["User creation error"] = "User creation error";
-$a->strings["User profile creation error"] = "User profile creation error";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contact not imported",
-       1 => "%d contacts not imported",
-);
-$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password";
-$a->strings["View Profile"] = "View profile";
-$a->strings["Connect/Follow"] = "Connect/Follow";
-$a->strings["View Status"] = "View status";
-$a->strings["View Photos"] = "View photos";
-$a->strings["Network Posts"] = "Network posts";
-$a->strings["View Contact"] = "View contact";
-$a->strings["Drop Contact"] = "Drop contact";
-$a->strings["Send PM"] = "Send PM";
-$a->strings["Poke"] = "Poke";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "News";
-$a->strings["Forum"] = "Forum";
-$a->strings["Post to Email"] = "Post to email";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?";
-$a->strings["Visible to everybody"] = "Visible to everybody";
-$a->strings["show"] = "show";
-$a->strings["don't show"] = "don't show";
-$a->strings["CC: email addresses"] = "CC: email addresses";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com";
-$a->strings["Permissions"] = "Permissions";
-$a->strings["Close"] = "Close";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
-$a->strings["Logged out."] = "Logged out.";
-$a->strings["Login failed."] = "Login failed.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "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:"] = "The error message was:";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Starts:"] = "Starts:";
-$a->strings["Finishes:"] = "Finishes:";
-$a->strings["Location:"] = "Location:";
-$a->strings["Image/photo"] = "Image/Photo";
-$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 wrote:";
-$a->strings["Encrypted content"] = "Encrypted content";
-$a->strings["Invalid source protocol"] = "Invalid source protocol";
-$a->strings["Invalid link protocol"] = "Invalid link protocol";
 $a->strings["Unknown | Not categorised"] = "Unknown | Not categorised";
 $a->strings["Block immediately"] = "Block immediately";
 $a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
@@ -248,49 +34,151 @@ $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["Add New Contact"] = "Add new contact";
-$a->strings["Enter address or web location"] = "Enter address or web location";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo";
-$a->strings["Connect"] = "Connect";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitation available",
-       1 => "%d invitations available",
-);
-$a->strings["Find People"] = "Find people";
-$a->strings["Enter name or interest"] = "Enter name or interest";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing";
-$a->strings["Find"] = "Find";
-$a->strings["Friend Suggestions"] = "Friend suggestions";
-$a->strings["Similar Interests"] = "Similar interests";
-$a->strings["Random Profile"] = "Random profile";
-$a->strings["Invite Friends"] = "Invite friends";
-$a->strings["Networks"] = "Networks";
-$a->strings["All Networks"] = "All networks";
-$a->strings["Saved Folders"] = "Saved Folders";
-$a->strings["Everything"] = "Everything";
-$a->strings["Categories"] = "Categories";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contact in common",
-       1 => "%d contacts in common",
-);
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s is currently %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s with %4\$s";
-$a->strings["post/item"] = "Post/Item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marked %2\$s's %3\$s as favourite";
-$a->strings["Likes"] = "Likes";
-$a->strings["Dislikes"] = "Dislikes";
-$a->strings["Attending"] = array(
-       0 => "Attending",
-       1 => "Attending",
-);
-$a->strings["Not attending"] = "Not attending";
-$a->strings["Might attend"] = "Might attend";
-$a->strings["Select"] = "Select";
+$a->strings["General Features"] = "General";
+$a->strings["Multiple Profiles"] = "Multiple profiles";
+$a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles";
+$a->strings["Photo Location"] = "Photo location";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map.";
+$a->strings["Export Public Calendar"] = "Export public calendar";
+$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar";
+$a->strings["Post Composition Features"] = "Post composition";
+$a->strings["Post Preview"] = "Post preview";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Allow previewing posts and comments before publishing them";
+$a->strings["Auto-mention Forums"] = "Auto-mention forums";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window.";
+$a->strings["Network Sidebar Widgets"] = "Network sidebars";
+$a->strings["Search by Date"] = "Search by date";
+$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges";
+$a->strings["List Forums"] = "List forums";
+$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with";
+$a->strings["Group Filter"] = "Group filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group";
+$a->strings["Network Filter"] = "Network filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Enable widget to display network posts only from selected network";
+$a->strings["Saved Searches"] = "Saved searches";
+$a->strings["Save search terms for re-use"] = "Save search terms for re-use";
+$a->strings["Network Tabs"] = "Network tabs";
+$a->strings["Network Personal Tab"] = "Network personal tab";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Enable tab to display only network posts that you've interacted with";
+$a->strings["Network New Tab"] = "Network new tab";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)";
+$a->strings["Network Shared Links Tab"] = "Network shared links tab";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them";
+$a->strings["Post/Comment Tools"] = "Post/Comment tools";
+$a->strings["Multiple Deletion"] = "Multiple deletion";
+$a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once";
+$a->strings["Edit Sent Posts"] = "Edit sent posts";
+$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Ability to tag existing posts";
+$a->strings["Post Categories"] = "Post categories";
+$a->strings["Add categories to your posts"] = "Add categories to your posts";
+$a->strings["Saved Folders"] = "Saved Folders";
+$a->strings["Ability to file posts under folders"] = "Ability to file posts under folders";
+$a->strings["Dislike Posts"] = "Dislike posts";
+$a->strings["Ability to dislike posts/comments"] = "Ability to dislike posts/comments";
+$a->strings["Star Posts"] = "Star posts";
+$a->strings["Ability to mark special posts with a star indicator"] = "Ability to highlight posts with a star";
+$a->strings["Mute Post Notifications"] = "Mute post notifications";
+$a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread";
+$a->strings["Advanced Profile Settings"] = "Advanced profiles";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page";
+$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 deleted group with this name has been 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"] = "Default privacy group for new contacts";
+$a->strings["Everybody"] = "Everybody";
+$a->strings["edit"] = "edit";
+$a->strings["Groups"] = "Groups";
+$a->strings["Edit groups"] = "Edit groups";
+$a->strings["Edit group"] = "Edit group";
+$a->strings["Create a new group"] = "Create new group";
+$a->strings["Group Name: "] = "Group name: ";
+$a->strings["Contacts not in any group"] = "Contacts not in any group";
+$a->strings["add"] = "add";
+$a->strings["Forums"] = "Forums";
+$a->strings["External link to forum"] = "External link to forum";
+$a->strings["show more"] = "Show more...";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Network";
+$a->strings["Personal"] = "Personal";
+$a->strings["Home"] = "Home";
+$a->strings["Introductions"] = "Introductions";
+$a->strings["%s commented on %s's post"] = "%s commented on %s's post";
+$a->strings["%s created a new post"] = "%s posted something new";
+$a->strings["%s liked %s's post"] = "%s liked %s's post";
+$a->strings["%s disliked %s's post"] = "%s disliked %s's post";
+$a->strings["%s is attending %s's event"] = "%s is going to %s's event";
+$a->strings["%s is not attending %s's event"] = "%s is not going to %s's event";
+$a->strings["%s may attend %s's event"] = "%s may go to %s's event";
+$a->strings["%s is now friends with %s"] = "%s is now friends with %s";
+$a->strings["Friend Suggestion"] = "Friend suggestion";
+$a->strings["Friend/Connect Request"] = "Friend/Contact request";
+$a->strings["New Follower"] = "New follower";
+$a->strings["Post to Email"] = "Post to email";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Connectors are disabled since \"%s\" is enabled.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Hide profile details from unknown viewers?";
+$a->strings["Visible to everybody"] = "Visible to everybody";
+$a->strings["show"] = "show";
+$a->strings["don't show"] = "don't show";
+$a->strings["CC: email addresses"] = "CC: email addresses";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Example: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Close"] = "Close";
+$a->strings["Logged out."] = "Logged out.";
+$a->strings["Login failed."] = "Login failed.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "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:"] = "The error message was:";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Starts:";
+$a->strings["Finishes:"] = "Finishes:";
+$a->strings["Location:"] = "Location:";
+$a->strings["Add New Contact"] = "Add new contact";
+$a->strings["Enter address or web location"] = "Enter address or web location";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Example: jo@example.com, http://example.com/jo";
+$a->strings["Connect"] = "Connect";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation available",
+       1 => "%d invitations available",
+);
+$a->strings["Find People"] = "Find people";
+$a->strings["Enter name or interest"] = "Enter name or interest";
+$a->strings["Connect/Follow"] = "Connect/Follow";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examples: Robert Morgenstein, fishing";
+$a->strings["Find"] = "Find";
+$a->strings["Friend Suggestions"] = "Friend suggestions";
+$a->strings["Similar Interests"] = "Similar interests";
+$a->strings["Random Profile"] = "Random profile";
+$a->strings["Invite Friends"] = "Invite friends";
+$a->strings["Networks"] = "Networks";
+$a->strings["All Networks"] = "All networks";
+$a->strings["Everything"] = "Everything";
+$a->strings["Categories"] = "Categories";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contact in common",
+       1 => "%d contacts in common",
+);
+$a->strings["event"] = "event";
+$a->strings["status"] = "status";
+$a->strings["photo"] = "photo";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s likes %2\$s's %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s doesn't like %2\$s's %3\$s";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s goes to %2\$s's %3\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s doesn't go %2\$s's %3\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s might go to %2\$s's %3\$s";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s is now friends with %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s poked %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s is currently %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s with %4\$s";
+$a->strings["post/item"] = "Post/Item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marked %2\$s's %3\$s as favourite";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Dislikes";
+$a->strings["Attending"] = array(
+       0 => "Attending",
+       1 => "Attending",
+);
+$a->strings["Not attending"] = "Not attending";
+$a->strings["Might attend"] = "Might attend";
+$a->strings["Select"] = "Select";
 $a->strings["Delete"] = "Delete";
 $a->strings["View %s's profile @ %s"] = "View %s's profile @ %s";
 $a->strings["Categories:"] = "Categories:";
@@ -301,6 +189,13 @@ $a->strings["Please wait"] = "Please wait";
 $a->strings["remove"] = "Remove";
 $a->strings["Delete Selected Items"] = "Delete selected items";
 $a->strings["Follow Thread"] = "Follow thread";
+$a->strings["View Status"] = "View status";
+$a->strings["View Profile"] = "View profile";
+$a->strings["View Photos"] = "View photos";
+$a->strings["Network Posts"] = "Network posts";
+$a->strings["View Contact"] = "View contact";
+$a->strings["Send PM"] = "Send PM";
+$a->strings["Poke"] = "Poke";
 $a->strings["%s likes this."] = "%s likes this.";
 $a->strings["%s doesn't like this."] = "%s doesn't like this.";
 $a->strings["%s attends."] = "%s attends.";
@@ -366,6 +261,10 @@ $a->strings["Not Attending"] = array(
        0 => "Not attending",
        1 => "Not attending",
 );
+$a->strings["Undecided"] = array(
+       0 => "Undecided",
+       1 => "Undecided",
+);
 $a->strings["Miscellaneous"] = "Miscellaneous";
 $a->strings["Birthday:"] = "Birthday:";
 $a->strings["Age: "] = "Age: ";
@@ -389,66 +288,9 @@ $a->strings["seconds"] = "seconds";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s ago";
 $a->strings["%s's birthday"] = "%s's birthday";
 $a->strings["Happy Birthday %s"] = "Happy Birthday, %s!";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'";
-$a->strings["Friendica Notification"] = "Friendica notification";
-$a->strings["Thank You,"] = "Thank you";
-$a->strings["%s Administrator"] = "%s Administrator";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] New mail received at %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s sent you %2\$s.";
-$a->strings["a private message"] = "a private message";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Please visit %s to view or reply to your private messages.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%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]"] = "%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]"] = "%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] Comment to conversation #%1\$d by %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s commented on an item/conversation you have been following.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Please visit %s to view or reply to the conversation.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s posted to your profile wall";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s posted to your profile wall at %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s posted to [url=%2\$s]your wall[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s tagged you";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s tagged you at %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]tagged you[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s shared a new post";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%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]shared a post[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s poked you";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s poked you at %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]poked you[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s tagged your post";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s tagged your post at %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s tagged [url=%2\$s]your post[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduction received";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "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."] = "You've received [url=%1\$s]an introduction[/url] from %2\$s.";
-$a->strings["You may visit their profile at %s"] = "You may visit their profile at %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Please visit %s to approve or reject the introduction.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] A new person is sharing with you";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s is sharing with you at %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] You have a new follower";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "You have a new follower at %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Friend suggestion received";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "You've received a friend suggestion from '%1\$s' at %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Photo:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Please visit %s to approve or reject the suggestion.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Connection accepted";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' has accepted your connection request at %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s has accepted your [url=%1\$s]connection request[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "You are now mutual friends and may exchange status updates, photos, and email without restriction.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship.";
-$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' has chosen to accept you as \"Follower\". This 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' may choose to extend this into a two-way or more permissive relationship in the future.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Please visit %s  if you wish to make any changes to this relationship.";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica:Notify] registration request";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "You've received a registration request from '%1\$s' at %2\$s.";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "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."] = "Please visit %s to approve or reject the request.";
+$a->strings["(no subject)"] = "(no subject)";
+$a->strings["noreply"] = "noreply";
+$a->strings["%s\\'s birthday"] = "%s\\'s birthday";
 $a->strings["all-day"] = "All-day";
 $a->strings["Sun"] = "Sun";
 $a->strings["Mon"] = "Mon";
@@ -496,54 +338,6 @@ $a->strings["link to source"] = "Link to source";
 $a->strings["Export"] = "Export";
 $a->strings["Export calendar as ical"] = "Export calendar as ical";
 $a->strings["Export calendar as csv"] = "Export calendar as csv";
-$a->strings["General Features"] = "General";
-$a->strings["Multiple Profiles"] = "Multiple profiles";
-$a->strings["Ability to create multiple profiles"] = "Ability to create multiple profiles";
-$a->strings["Photo Location"] = "Photo location";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Photo metadata is normally removed. This extracts the location (if present) prior to removing metadata and links it to a map.";
-$a->strings["Export Public Calendar"] = "Export public calendar";
-$a->strings["Ability for visitors to download the public calendar"] = "Ability for visitors to download the public calendar";
-$a->strings["Post Composition Features"] = "Post composition";
-$a->strings["Post Preview"] = "Post preview";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Allow previewing posts and comments before publishing them";
-$a->strings["Auto-mention Forums"] = "Auto-mention forums";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Add/Remove mention when a forum page is selected or deselected in the ACL window.";
-$a->strings["Network Sidebar Widgets"] = "Network sidebars";
-$a->strings["Search by Date"] = "Search by date";
-$a->strings["Ability to select posts by date ranges"] = "Ability to select posts by date ranges";
-$a->strings["List Forums"] = "List forums";
-$a->strings["Enable widget to display the forums your are connected with"] = "Enable widget to display the forums your are connected with";
-$a->strings["Group Filter"] = "Group filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Enable widget to display network posts only from selected group";
-$a->strings["Network Filter"] = "Network filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Enable widget to display network posts only from selected network";
-$a->strings["Saved Searches"] = "Saved searches";
-$a->strings["Save search terms for re-use"] = "Save search terms for re-use";
-$a->strings["Network Tabs"] = "Network tabs";
-$a->strings["Network Personal Tab"] = "Network personal tab";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Enable tab to display only network posts that you've interacted with";
-$a->strings["Network New Tab"] = "Network new tab";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Enable tab to display only new network posts (last 12 hours)";
-$a->strings["Network Shared Links Tab"] = "Network shared links tab";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Enable tab to display only network posts with links in them";
-$a->strings["Post/Comment Tools"] = "Post/Comment tools";
-$a->strings["Multiple Deletion"] = "Multiple deletion";
-$a->strings["Select and delete multiple posts/comments at once"] = "Select and delete multiple posts/comments at once";
-$a->strings["Edit Sent Posts"] = "Edit sent posts";
-$a->strings["Edit and correct posts and comments after sending"] = "Ability to editing posts and comments after sending";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Ability to tag existing posts";
-$a->strings["Post Categories"] = "Post categories";
-$a->strings["Add categories to your posts"] = "Add categories to your posts";
-$a->strings["Ability to file posts under folders"] = "Ability to file posts under folders";
-$a->strings["Dislike Posts"] = "Dislike posts";
-$a->strings["Ability to dislike posts/comments"] = "Ability to dislike posts/comments";
-$a->strings["Star Posts"] = "Star posts";
-$a->strings["Ability to mark special posts with a star indicator"] = "Ability to highlight posts with a star";
-$a->strings["Mute Post Notifications"] = "Mute post notifications";
-$a->strings["Ability to mute notifications for a thread"] = "Ability to mute notifications for a thread";
-$a->strings["Advanced Profile Settings"] = "Advanced profiles";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Show visitors of public community forums at the advanced profile page";
 $a->strings["Disallowed profile URL."] = "Disallowed profile URL.";
 $a->strings["Blocked domain"] = "Blocked domain";
 $a->strings["Connect URL missing."] = "Connect URL missing.";
@@ -557,118 +351,14 @@ $a->strings["Use mailto: in front of address to force email check."] = "Use mail
 $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "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."] = "Limited profile: This person will be unable to receive direct/private messages from you.";
 $a->strings["Unable to retrieve contact information."] = "Unable to retrieve contact information.";
-$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 deleted group with this name has been 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"] = "Default privacy group for new contacts";
-$a->strings["Everybody"] = "Everybody";
-$a->strings["edit"] = "edit";
-$a->strings["Groups"] = "Groups";
-$a->strings["Edit groups"] = "Edit groups";
-$a->strings["Edit group"] = "Edit group";
-$a->strings["Create a new group"] = "Create new group";
-$a->strings["Group Name: "] = "Group name: ";
-$a->strings["Contacts not in any group"] = "Contacts not in any group";
-$a->strings["add"] = "add";
-$a->strings["Requested account is not available."] = "Requested account is unavailable.";
-$a->strings["Requested profile is not available."] = "Requested profile is unavailable.";
-$a->strings["Edit profile"] = "Edit profile";
-$a->strings["Atom feed"] = "Atom feed";
-$a->strings["Manage/edit profiles"] = "Manage/Edit profiles";
-$a->strings["Change profile photo"] = "Change profile photo";
-$a->strings["Create New Profile"] = "Create new profile";
-$a->strings["Profile Image"] = "Profile image";
-$a->strings["visible to everybody"] = "Visible to everybody";
-$a->strings["Edit visibility"] = "Edit visibility";
-$a->strings["Gender:"] = "Gender:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Home page:";
-$a->strings["About:"] = "About:";
-$a->strings["XMPP:"] = "XMPP:";
-$a->strings["Network:"] = "Network:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[today]";
-$a->strings["Birthday Reminders"] = "Birthday reminders";
-$a->strings["Birthdays this week:"] = "Birthdays this week:";
-$a->strings["[No description]"] = "[No description]";
-$a->strings["Event Reminders"] = "Event reminders";
-$a->strings["Events this week:"] = "Events this week:";
-$a->strings["Full Name:"] = "Full name:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Age:";
-$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexual preference:";
-$a->strings["Hometown:"] = "Home town:";
-$a->strings["Tags:"] = "Tags:";
-$a->strings["Political Views:"] = "Political views:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interests:";
-$a->strings["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
-$a->strings["Contact information and Social Networks:"] = "Contact information and social networks:";
-$a->strings["Musical interests:"] = "Musical interests:";
-$a->strings["Books, literature:"] = "Books/Literature:";
-$a->strings["Television:"] = "Television:";
-$a->strings["Film/dance/culture/entertainment:"] = "Arts, film, dance, culture, entertainment:";
-$a->strings["Love/Romance:"] = "Love/Romance:";
-$a->strings["Work/employment:"] = "Work/Employment:";
-$a->strings["School/education:"] = "School/Education:";
-$a->strings["Forums:"] = "Forums:";
-$a->strings["Basic"] = "Basic";
-$a->strings["Advanced"] = "Advanced";
-$a->strings["Status Messages and Posts"] = "Status Messages and Posts";
-$a->strings["Profile Details"] = "Profile Details";
-$a->strings["Photo Albums"] = "Photo Albums";
-$a->strings["Personal Notes"] = "Personal notes";
-$a->strings["Only You Can See This"] = "Only you can see this.";
-$a->strings["view full size"] = "view full size";
-$a->strings["Embedded content"] = "Embedded content";
-$a->strings["Embedding disabled"] = "Embedding disabled";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is going to %2\$s's %3\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is not going to %2\$s's %3\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s may go to %2\$s's %3\$s";
 $a->strings["Contact Photos"] = "Contact photos";
-$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
-$a->strings["An invitation is required."] = "An invitation is required.";
-$a->strings["Invitation could not be verified."] = "Invitation could not be verified.";
-$a->strings["Invalid OpenID url"] = "Invalid OpenID URL";
-$a->strings["Please enter the required information."] = "Please enter the required information.";
-$a->strings["Please use a shorter name."] = "Please use a shorter name.";
-$a->strings["Name too short."] = "Name too short.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site.";
-$a->strings["Not a valid email address."] = "Not a valid email address.";
-$a->strings["Cannot use that email."] = "Cannot use that email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\".";
-$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed.";
-$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again.";
-$a->strings["default"] = "default";
-$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again.";
-$a->strings["Profile Photos"] = "Profile photos";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending approval by the administrator.\n\t";
-$a->strings["Registration at %s"] = "Registration at %s";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s.";
-$a->strings["Registration details for %s"] = "Registration details for %s";
-$a->strings["There are no tables on MyISAM."] = "There are no tables on MyISAM.";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: ";
-$a->strings[": Database update"] = ": Database update";
-$a->strings["%s: updating %s table."] = "%s: updating %s table.";
-$a->strings["%s\\'s birthday"] = "%s\\'s birthday";
-$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network";
-$a->strings["Attachments:"] = "Attachments:";
-$a->strings["[Name Withheld]"] = "[Name Withheld]";
-$a->strings["Item not found."] = "Item not found.";
-$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?";
-$a->strings["Yes"] = "Yes";
-$a->strings["Permission denied."] = "Permission denied.";
-$a->strings["Archives"] = "Archives";
-$a->strings["%s is now following %s."] = "%s is now following %s.";
-$a->strings["following"] = "following";
-$a->strings["%s stopped following %s."] = "%s stopped following %s.";
-$a->strings["stopped following"] = "stopped following";
+$a->strings["Welcome "] = "Welcome ";
+$a->strings["Please upload a profile photo."] = "Please upload a profile photo.";
+$a->strings["Welcome back "] = "Welcome back ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "The form security token was incorrect. This probably happened because the form has not been submitted within 3 hours.";
 $a->strings["newer"] = "Later posts";
 $a->strings["older"] = "Earlier posts";
 $a->strings["first"] = "first";
@@ -683,7 +373,12 @@ $a->strings["%d Contact"] = array(
        1 => "%d contacts",
 );
 $a->strings["View Contacts"] = "View contacts";
+$a->strings["Search"] = "Search";
 $a->strings["Save"] = "Save";
+$a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
+$a->strings["Full Text"] = "Full text";
+$a->strings["Tags"] = "Tags";
+$a->strings["Contacts"] = "Contacts";
 $a->strings["poke"] = "poke";
 $a->strings["poked"] = "poked";
 $a->strings["ping"] = "ping";
@@ -728,129 +423,367 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "post";
 $a->strings["Item filed"] = "Item filed";
-$a->strings["No friends to display."] = "No friends to display.";
-$a->strings["Authorize application connection"] = "Authorize application connection";
-$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:";
-$a->strings["Please login to continue."] = "Please login to continue.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?";
-$a->strings["No"] = "No";
-$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. ";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "No installed applications.";
-$a->strings["Item not available."] = "Item not available.";
-$a->strings["Item was not found."] = "Item was not found.";
-$a->strings["The post was created"] = "The post was created";
-$a->strings["No contacts in common."] = "No contacts in common.";
-$a->strings["Common Friends"] = "Common friends";
-$a->strings["%d contact edited."] = array(
-       0 => "%d contact edited.",
-       1 => "%d contacts edited.",
-);
-$a->strings["Could not access contact record."] = "Could not access contact record.";
-$a->strings["Could not locate selected profile."] = "Could not locate selected profile.";
-$a->strings["Contact updated."] = "Contact updated.";
-$a->strings["Failed to update contact record."] = "Failed to update contact record.";
-$a->strings["Contact has been blocked"] = "Contact has been blocked";
-$a->strings["Contact has been unblocked"] = "Contact has been unblocked";
-$a->strings["Contact has been ignored"] = "Contact has been ignored";
-$a->strings["Contact has been unignored"] = "Contact has been unignored";
-$a->strings["Contact has been archived"] = "Contact has been archived";
-$a->strings["Contact has been unarchived"] = "Contact has been unarchived";
-$a->strings["Drop contact"] = "Drop contact";
-$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?";
-$a->strings["Contact has been removed."] = "Contact has been removed.";
-$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s";
-$a->strings["You are sharing with %s"] = "You are sharing with %s";
-$a->strings["%s is sharing with you"] = "%s is sharing with you";
-$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact.";
-$a->strings["Never"] = "Never";
-$a->strings["(Update was successful)"] = "(Update was successful)";
-$a->strings["(Update was not successful)"] = "(Update was not successful)";
-$a->strings["Suggest friends"] = "Suggest friends";
-$a->strings["Network type: %s"] = "Network type: %s";
-$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!";
-$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds";
-$a->strings["Disabled"] = "Disabled";
-$a->strings["Fetch information"] = "Fetch information";
-$a->strings["Fetch information and keywords"] = "Fetch information and keywords";
-$a->strings["Contact"] = "Contact";
-$a->strings["Submit"] = "Submit";
-$a->strings["Profile Visibility"] = "Profile visibility";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely.";
-$a->strings["Contact Information / Notes"] = "Personal note";
-$a->strings["Edit contact notes"] = "Edit contact notes";
-$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]";
-$a->strings["Block/Unblock contact"] = "Block/Unblock contact";
-$a->strings["Ignore contact"] = "Ignore contact";
-$a->strings["Repair URL settings"] = "Repair URL settings";
-$a->strings["View conversations"] = "View conversations";
-$a->strings["Last update:"] = "Last update:";
-$a->strings["Update public posts"] = "Update public posts";
-$a->strings["Update now"] = "Update now";
-$a->strings["Unblock"] = "Unblock";
-$a->strings["Block"] = "Block";
-$a->strings["Unignore"] = "Unignore";
-$a->strings["Ignore"] = "Ignore";
-$a->strings["Currently blocked"] = "Currently blocked";
-$a->strings["Currently ignored"] = "Currently ignored";
-$a->strings["Currently archived"] = "Currently archived";
-$a->strings["Hide this contact from others"] = "Hide this contact from others";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Replies/Likes to your public posts <strong>may</strong> still be visible";
-$a->strings["Notification for new posts"] = "Notification for new posts";
-$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact";
-$a->strings["Blacklisted keywords"] = "Blacklisted keywords";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected";
-$a->strings["Profile URL"] = "Profile URL:";
-$a->strings["Actions"] = "Actions";
-$a->strings["Contact Settings"] = "Notification and privacy ";
-$a->strings["Suggestions"] = "Suggestions";
-$a->strings["Suggest potential friends"] = "Suggest potential friends";
-$a->strings["All Contacts"] = "All contacts";
-$a->strings["Show all contacts"] = "Show all contacts";
-$a->strings["Unblocked"] = "Unblocked";
-$a->strings["Only show unblocked contacts"] = "Only show unblocked contacts";
-$a->strings["Blocked"] = "Blocked";
-$a->strings["Only show blocked contacts"] = "Only show blocked contacts";
-$a->strings["Ignored"] = "Ignored";
-$a->strings["Only show ignored contacts"] = "Only show ignored contacts";
-$a->strings["Archived"] = "Archived";
-$a->strings["Only show archived contacts"] = "Only show archived contacts";
-$a->strings["Hidden"] = "Hidden";
-$a->strings["Only show hidden contacts"] = "Only show hidden contacts";
-$a->strings["Search your contacts"] = "Search your contacts";
-$a->strings["Results for: %s"] = "Results for: %s";
-$a->strings["Update"] = "Update";
-$a->strings["Archive"] = "Archive";
-$a->strings["Unarchive"] = "Unarchive";
-$a->strings["Batch Actions"] = "Batch actions";
-$a->strings["View all contacts"] = "View all contacts";
-$a->strings["View all common friends"] = "View all common friends";
-$a->strings["Advanced Contact Settings"] = "Advanced contact settings";
-$a->strings["Mutual Friendship"] = "Mutual friendship";
-$a->strings["is a fan of yours"] = "is a fan of yours";
-$a->strings["you are a fan of"] = "I follow them";
-$a->strings["Edit contact"] = "Edit contact";
-$a->strings["Toggle Blocked status"] = "Toggle blocked status";
-$a->strings["Toggle Ignored status"] = "Toggle ignored status";
-$a->strings["Toggle Archive status"] = "Toggle archive status";
-$a->strings["Delete contact"] = "Delete contact";
-$a->strings["No such group"] = "No such group";
-$a->strings["Group is empty"] = "Group is empty";
-$a->strings["Group: %s"] = "Group: %s";
-$a->strings["This entry was edited"] = "This entry was edited";
-$a->strings["%d comment"] = array(
-       0 => "%d comment",
-       1 => "%d comments:",
-);
-$a->strings["Private Message"] = "Private message";
-$a->strings["I like this (toggle)"] = "I like this (toggle)";
-$a->strings["like"] = "Like";
-$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
-$a->strings["dislike"] = "Dislike";
-$a->strings["Share this"] = "Share this";
-$a->strings["share"] = "Share";
-$a->strings["This is you"] = "This is me";
-$a->strings["Comment"] = "Comment";
+$a->strings["Drop Contact"] = "Drop contact";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "News";
+$a->strings["Forum"] = "Forum";
+$a->strings["Image/photo"] = "Image/Photo";
+$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 wrote:";
+$a->strings["Encrypted content"] = "Encrypted content";
+$a->strings["Invalid source protocol"] = "Invalid source protocol";
+$a->strings["Invalid link protocol"] = "Invalid link protocol";
+$a->strings["Friendica Notification"] = "Friendica notification";
+$a->strings["Thank You,"] = "Thank you";
+$a->strings["%s Administrator"] = "%s Administrator";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] New mail received at %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s sent you a new private message at %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s sent you %2\$s.";
+$a->strings["a private message"] = "a private message";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Please visit %s to view or reply to your private messages.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%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]"] = "%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]"] = "%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] Comment to conversation #%1\$d by %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s commented on an item/conversation you have been following.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Please visit %s to view or reply to the conversation.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s posted to your profile wall";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s posted to your profile wall at %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s posted to [url=%2\$s]your wall[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s tagged you";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s tagged you at %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]tagged you[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s shared a new post";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%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]shared a post[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s poked you";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s poked you at %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]poked you[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s tagged your post";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s tagged your post at %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s tagged [url=%2\$s]your post[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Introduction received";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "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."] = "You've received [url=%1\$s]an introduction[/url] from %2\$s.";
+$a->strings["You may visit their profile at %s"] = "You may visit their profile at %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Please visit %s to approve or reject the introduction.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] A new person is sharing with you";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s is sharing with you at %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] You have a new follower";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "You have a new follower at %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Friend suggestion received";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "You've received a friend suggestion from '%1\$s' at %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Photo:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Please visit %s to approve or reject the suggestion.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Connection accepted";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' has accepted your connection request at %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s has accepted your [url=%1\$s]connection request[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "You are now mutual friends and may exchange status updates, photos, and email without restriction.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Please visit %s if you wish to make any changes to this relationship.";
+$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' has chosen to accept you as \"Follower\". This 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' may choose to extend this into a two-way or more permissive relationship in the future.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Please visit %s  if you wish to make any changes to this relationship.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica:Notify] registration request";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "You've received a registration request from '%1\$s' at %2\$s.";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "You've received a [url=%1\$s]registration request[/url] from %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "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."] = "Please visit %s to approve or reject the request.";
+$a->strings["[no subject]"] = "[no subject]";
+$a->strings["Wall Photos"] = "Wall photos";
+$a->strings["Nothing new here"] = "Nothing new here";
+$a->strings["Clear notifications"] = "Clear notifications";
+$a->strings["Logout"] = "Logout";
+$a->strings["End this session"] = "End this session";
+$a->strings["Status"] = "Status";
+$a->strings["Your posts and conversations"] = "My posts and conversations";
+$a->strings["Profile"] = "Profile";
+$a->strings["Your profile page"] = "My profile page";
+$a->strings["Photos"] = "Photos";
+$a->strings["Your photos"] = "My photos";
+$a->strings["Videos"] = "Videos";
+$a->strings["Your videos"] = "My videos";
+$a->strings["Events"] = "Events";
+$a->strings["Your events"] = "My events";
+$a->strings["Personal notes"] = "Personal notes";
+$a->strings["Your personal notes"] = "My personal notes";
+$a->strings["Login"] = "Login";
+$a->strings["Sign in"] = "Sign in";
+$a->strings["Home Page"] = "Home page";
+$a->strings["Register"] = "Register";
+$a->strings["Create an account"] = "Create account";
+$a->strings["Help"] = "Help";
+$a->strings["Help and documentation"] = "Help and documentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon applications, utilities, games";
+$a->strings["Search site content"] = "Search site content";
+$a->strings["Community"] = "Community";
+$a->strings["Conversations on this site"] = "Public conversations on this site";
+$a->strings["Conversations on the network"] = "Conversations on the network";
+$a->strings["Events and Calendar"] = "Events and calendar";
+$a->strings["Directory"] = "Directory";
+$a->strings["People directory"] = "People directory";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Information about this Friendica instance";
+$a->strings["Conversations from your friends"] = "My friends' conversations";
+$a->strings["Network Reset"] = "Network reset";
+$a->strings["Load Network page with no filters"] = "Load network page without filters";
+$a->strings["Friend Requests"] = "Friend requests";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["See all notifications"] = "See all notifications";
+$a->strings["Mark as seen"] = "Mark as seen";
+$a->strings["Mark all system notifications seen"] = "Mark all system notifications seen";
+$a->strings["Messages"] = "Messages";
+$a->strings["Private mail"] = "Private messages";
+$a->strings["Inbox"] = "Inbox";
+$a->strings["Outbox"] = "Outbox";
+$a->strings["New Message"] = "New Message";
+$a->strings["Manage"] = "Manage";
+$a->strings["Manage other pages"] = "Manage other pages";
+$a->strings["Delegations"] = "Delegations";
+$a->strings["Delegate Page Management"] = "Delegate page management";
+$a->strings["Settings"] = "Settings";
+$a->strings["Account settings"] = "Account settings";
+$a->strings["Profiles"] = "Profiles";
+$a->strings["Manage/Edit Profiles"] = "Manage/Edit profiles";
+$a->strings["Manage/edit friends and contacts"] = "Manage/Edit friends and contacts";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site setup and configuration"] = "Site setup and configuration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Site map";
+$a->strings["view full size"] = "view full size";
+$a->strings["Embedded content"] = "Embedded content";
+$a->strings["Embedding disabled"] = "Embedding disabled";
+$a->strings["Error decoding account file"] = "Error decoding account file";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Error! No version data in file! Is this a Friendica account file?";
+$a->strings["Error! Cannot check nickname"] = "Error! Cannot check nickname.";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' already exists on this server!";
+$a->strings["User creation error"] = "User creation error";
+$a->strings["User profile creation error"] = "User profile creation error";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contact not imported",
+       1 => "%d contacts not imported",
+);
+$a->strings["Done. You can now login with your username and password"] = "Done. You can now login with your username and password";
+$a->strings["Passwords do not match. Password unchanged."] = "Passwords do not match. Password unchanged.";
+$a->strings["An invitation is required."] = "An invitation is required.";
+$a->strings["Invitation could not be verified."] = "Invitation could not be verified.";
+$a->strings["Invalid OpenID url"] = "Invalid OpenID URL";
+$a->strings["Please enter the required information."] = "Please enter the required information.";
+$a->strings["Please use a shorter name."] = "Please use a shorter name.";
+$a->strings["Name too short."] = "Name too short.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "That doesn't appear to be your full (i.e first and last) name.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Your email domain is not allowed on this site.";
+$a->strings["Not a valid email address."] = "Not a valid email address.";
+$a->strings["Cannot use that email."] = "Cannot use that email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\".";
+$a->strings["Nickname is already registered. Please choose another."] = "Nickname is already registered. Please choose another.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Nickname was once registered here and may not be re-used. Please choose another.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SERIOUS ERROR: Generation of security keys failed.";
+$a->strings["An error occurred during registration. Please try again."] = "An error occurred during registration. Please try again.";
+$a->strings["default"] = "default";
+$a->strings["An error occurred creating your default profile. Please try again."] = "An error occurred creating your default profile. Please try again.";
+$a->strings["Friends"] = "Friends";
+$a->strings["Profile Photos"] = "Profile photos";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending approval by the administrator.\n\t";
+$a->strings["Registration at %s"] = "Registration at %s";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password for your account \"Settings\" after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in, if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, these settings may help to\n\t\tmake new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s.";
+$a->strings["Registration details for %s"] = "Registration details for %s";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Daily posting limit of %d posts reached. This post was rejected.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Weekly posting limit of %d posts reached. This post was rejected.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Monthly posting limit of %d posts reached. This post was rejected.";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Cannot locate DNS info for database server '%s'";
+$a->strings["There are no tables on MyISAM."] = "There are no tables on MyISAM.";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe Friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tFriendica developer if you can not help me on your own. My database\n                        might be invalid.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "The error message is\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nError %d occurred during database update:\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Errors encountered performing database changes: ";
+$a->strings[": Database update"] = ": Database update";
+$a->strings["%s: updating %s table."] = "%s: updating %s table.";
+$a->strings["Sharing notification from Diaspora network"] = "Sharing notification from Diaspora network";
+$a->strings["Attachments:"] = "Attachments:";
+$a->strings["Requested account is not available."] = "Requested account is unavailable.";
+$a->strings["Requested profile is not available."] = "Requested profile is unavailable.";
+$a->strings["Edit profile"] = "Edit profile";
+$a->strings["Atom feed"] = "Atom feed";
+$a->strings["Manage/edit profiles"] = "Manage/Edit profiles";
+$a->strings["Change profile photo"] = "Change profile photo";
+$a->strings["Create New Profile"] = "Create new profile";
+$a->strings["Profile Image"] = "Profile image";
+$a->strings["visible to everybody"] = "Visible to everybody";
+$a->strings["Edit visibility"] = "Edit visibility";
+$a->strings["Gender:"] = "Gender:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "About:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Network:";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[today]";
+$a->strings["Birthday Reminders"] = "Birthday reminders";
+$a->strings["Birthdays this week:"] = "Birthdays this week:";
+$a->strings["[No description]"] = "[No description]";
+$a->strings["Event Reminders"] = "Event reminders";
+$a->strings["Events this week:"] = "Events this week:";
+$a->strings["Full Name:"] = "Full name:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Age:"] = "Age:";
+$a->strings["for %1\$d %2\$s"] = "for %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexual preference:";
+$a->strings["Hometown:"] = "Home town:";
+$a->strings["Tags:"] = "Tags:";
+$a->strings["Political Views:"] = "Political views:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interests:";
+$a->strings["Likes:"] = "Likes:";
+$a->strings["Dislikes:"] = "Dislikes:";
+$a->strings["Contact information and Social Networks:"] = "Contact information and social networks:";
+$a->strings["Musical interests:"] = "Musical interests:";
+$a->strings["Books, literature:"] = "Books/Literature:";
+$a->strings["Television:"] = "Television:";
+$a->strings["Film/dance/culture/entertainment:"] = "Arts, film, dance, culture, entertainment:";
+$a->strings["Love/Romance:"] = "Love/Romance:";
+$a->strings["Work/employment:"] = "Work/Employment:";
+$a->strings["School/education:"] = "School/Education:";
+$a->strings["Forums:"] = "Forums:";
+$a->strings["Basic"] = "Basic";
+$a->strings["Advanced"] = "Advanced";
+$a->strings["Status Messages and Posts"] = "Status Messages and Posts";
+$a->strings["Profile Details"] = "Profile Details";
+$a->strings["Photo Albums"] = "Photo Albums";
+$a->strings["Personal Notes"] = "Personal notes";
+$a->strings["Only You Can See This"] = "Only you can see this.";
+$a->strings["[Name Withheld]"] = "[Name Withheld]";
+$a->strings["Item not found."] = "Item not found.";
+$a->strings["Do you really want to delete this item?"] = "Do you really want to delete this item?";
+$a->strings["Yes"] = "Yes";
+$a->strings["Permission denied."] = "Permission denied.";
+$a->strings["Archives"] = "Archives";
+$a->strings["%s is now following %s."] = "%s is now following %s.";
+$a->strings["following"] = "following";
+$a->strings["%s stopped following %s."] = "%s stopped following %s.";
+$a->strings["stopped following"] = "stopped following";
+$a->strings["Click here to upgrade."] = "Click here to upgrade.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "This action exceeds the limits set by your subscription plan.";
+$a->strings["This action is not available under your subscription plan."] = "This action is not available under your subscription plan.";
+$a->strings["Male"] = "Male";
+$a->strings["Female"] = "Female";
+$a->strings["Currently Male"] = "Currently Male";
+$a->strings["Currently Female"] = "Currently Female";
+$a->strings["Mostly Male"] = "Mostly Male";
+$a->strings["Mostly Female"] = "Mostly Female";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transsexual";
+$a->strings["Hermaphrodite"] = "Hermaphrodite";
+$a->strings["Neuter"] = "Neuter";
+$a->strings["Non-specific"] = "Non-specific";
+$a->strings["Other"] = "Other";
+$a->strings["Males"] = "Males";
+$a->strings["Females"] = "Females";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbian";
+$a->strings["No Preference"] = "No Preference";
+$a->strings["Bisexual"] = "Bisexual";
+$a->strings["Autosexual"] = "Auto-sexual";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Virgin";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Asexual";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Lonely";
+$a->strings["Available"] = "Available";
+$a->strings["Unavailable"] = "Unavailable";
+$a->strings["Has crush"] = "Having a crush";
+$a->strings["Infatuated"] = "Infatuated";
+$a->strings["Dating"] = "Dating";
+$a->strings["Unfaithful"] = "Unfaithful";
+$a->strings["Sex Addict"] = "Sex addict";
+$a->strings["Friends/Benefits"] = "Friends with benefits";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Engaged";
+$a->strings["Married"] = "Married";
+$a->strings["Imaginarily married"] = "Imaginarily married";
+$a->strings["Partners"] = "Partners";
+$a->strings["Cohabiting"] = "Cohabiting";
+$a->strings["Common law"] = "Common law spouse";
+$a->strings["Happy"] = "Happy";
+$a->strings["Not looking"] = "Not looking";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrayed";
+$a->strings["Separated"] = "Separated";
+$a->strings["Unstable"] = "Unstable";
+$a->strings["Divorced"] = "Divorced";
+$a->strings["Imaginarily divorced"] = "Imaginarily divorced";
+$a->strings["Widowed"] = "Widowed";
+$a->strings["Uncertain"] = "Uncertain";
+$a->strings["It's complicated"] = "It's complicated";
+$a->strings["Don't care"] = "Don't care";
+$a->strings["Ask me"] = "Ask me";
+$a->strings["No friends to display."] = "No friends to display.";
+$a->strings["Authorize application connection"] = "Authorize application connection";
+$a->strings["Return to your app and insert this Securty Code:"] = "Return to your app and insert this security code:";
+$a->strings["Please login to continue."] = "Please login to continue.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Do you want to authorize this application to access your posts and contacts and create new posts for you?";
+$a->strings["No"] = "No";
+$a->strings["You must be logged in to use addons. "] = "You must be logged in to use addons. ";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "No installed applications.";
+$a->strings["Item not available."] = "Item not available.";
+$a->strings["Item was not found."] = "Item was not found.";
+$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:";
+$a->strings["Source input: "] = "Source input: ";
+$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["The post was created"] = "The post was created";
+$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
+$a->strings["View"] = "View";
+$a->strings["Previous"] = "Previous";
+$a->strings["Next"] = "Next";
+$a->strings["list"] = "List";
+$a->strings["User not found"] = "User not found";
+$a->strings["This calendar format is not supported"] = "This calendar format is not supported";
+$a->strings["No exportable data found"] = "No exportable data found";
+$a->strings["calendar"] = "calendar";
+$a->strings["No contacts in common."] = "No contacts in common.";
+$a->strings["Common Friends"] = "Common friends";
+$a->strings["Public access denied."] = "Public access denied.";
+$a->strings["Not available."] = "Not available.";
+$a->strings["No results."] = "No results.";
+$a->strings["No such group"] = "No such group";
+$a->strings["Group is empty"] = "Group is empty";
+$a->strings["Group: %s"] = "Group: %s";
+$a->strings["This entry was edited"] = "This entry was edited";
+$a->strings["%d comment"] = array(
+       0 => "%d comment",
+       1 => "%d comments:",
+);
+$a->strings["Private Message"] = "Private message";
+$a->strings["I like this (toggle)"] = "I like this (toggle)";
+$a->strings["like"] = "Like";
+$a->strings["I don't like this (toggle)"] = "I don't like this (toggle)";
+$a->strings["dislike"] = "Dislike";
+$a->strings["Share this"] = "Share this";
+$a->strings["share"] = "Share";
+$a->strings["This is you"] = "This is me";
+$a->strings["Comment"] = "Comment";
+$a->strings["Submit"] = "Submit";
 $a->strings["Bold"] = "Bold";
 $a->strings["Italic"] = "Italic";
 $a->strings["Underline"] = "Underline";
@@ -908,27 +841,172 @@ $a->strings["Potential Delegates"] = "Potential delegates";
 $a->strings["Remove"] = "Remove";
 $a->strings["Add"] = "Add";
 $a->strings["No entries."] = "No entries.";
+$a->strings["Profile not found."] = "Profile not found.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "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."] = "Response from remote site was not understood.";
+$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: ";
+$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
+$a->strings["Remote site reported: "] = "Remote site reported: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
+$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
+$a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
+$a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
+$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "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."] = "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."] = "Unable to set your contact credentials on our system.";
+$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s";
 $a->strings["%1\$s welcomes %2\$s"] = "%1\$s welcomes %2\$s";
-$a->strings["Public access denied."] = "Public access denied.";
 $a->strings["Global Directory"] = "Global Directory";
 $a->strings["Find on this site"] = "Find on this site";
 $a->strings["Results for:"] = "Results for:";
 $a->strings["Site Directory"] = "Site directory";
 $a->strings["No entries (some entries may be hidden)."] = "No entries (entries may be hidden).";
-$a->strings["Access to this profile has been restricted."] = "Access to this profile has been restricted.";
+$a->strings["People Search - %s"] = "People search - %s";
+$a->strings["Forum Search - %s"] = "Forum search - %s";
+$a->strings["No matches"] = "No matches";
 $a->strings["Item has been removed."] = "Item has been removed.";
 $a->strings["Item not found"] = "Item not found";
 $a->strings["Edit post"] = "Edit post";
+$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
+$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
+$a->strings["Create New Event"] = "Create new event";
+$a->strings["Event details"] = "Event details";
+$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
+$a->strings["Event Starts:"] = "Event starts:";
+$a->strings["Required"] = "Required";
+$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
+$a->strings["Event Finishes:"] = "Event finishes:";
+$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Title:";
+$a->strings["Share this event"] = "Share this event";
+$a->strings["Failed to remove event"] = "Failed to remove event";
+$a->strings["Event removed"] = "Event removed";
 $a->strings["Files"] = "Files";
 $a->strings["Not Found"] = "Not found";
 $a->strings["- select -"] = "- select -";
+$a->strings["Submit Request"] = "Submit request";
+$a->strings["You already added this contact."] = "You already added this contact.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added.";
+$a->strings["Please answer the following:"] = "Please answer the following:";
+$a->strings["Does %s know you?"] = "Does %s know you?";
+$a->strings["Add a personal note:"] = "Add a personal note:";
+$a->strings["Your Identity Address:"] = "My identity address:";
+$a->strings["Profile URL"] = "Profile URL:";
+$a->strings["Contact added"] = "Contact added";
+$a->strings["This is Friendica, version"] = "This is Friendica, version";
+$a->strings["running at web location"] = "running at web location";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project.";
+$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit";
+$a->strings["the bugtracker at github"] = "the bugtracker at github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:";
+$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps";
+$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked.";
+$a->strings["Reason for the block"] = "Reason for the block";
 $a->strings["Friend suggestion sent."] = "Friend suggestion sent";
 $a->strings["Suggest Friends"] = "Suggest friends";
 $a->strings["Suggest a friend for %s"] = "Suggest a friend for %s";
+$a->strings["Group created."] = "Group created.";
+$a->strings["Could not create group."] = "Could not create group.";
+$a->strings["Group not found."] = "Group not found.";
+$a->strings["Group name changed."] = "Group name changed.";
+$a->strings["Permission denied"] = "Permission denied";
+$a->strings["Save Group"] = "Save group";
+$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
+$a->strings["Group removed."] = "Group removed.";
+$a->strings["Unable to remove group."] = "Unable to remove group.";
+$a->strings["Delete Group"] = "Delete group";
+$a->strings["Group Editor"] = "Group Editor";
+$a->strings["Edit Group Name"] = "Edit group name";
+$a->strings["Members"] = "Members";
+$a->strings["All Contacts"] = "All contacts";
+$a->strings["Remove Contact"] = "Remove contact";
+$a->strings["Add Contact"] = "Add contact";
+$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove.";
 $a->strings["No profile"] = "No profile";
 $a->strings["Help:"] = "Help:";
 $a->strings["Page not found."] = "Page not found";
 $a->strings["Welcome to %s"] = "Welcome to %s";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Communications Server - Setup";
+$a->strings["Could not connect to database."] = "Could not connect to database.";
+$a->strings["Could not create table."] = "Could not create table.";
+$a->strings["Your Friendica site database has been installed."] = "Your Friendica site database has been installed.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Please see the file \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Database already in use.";
+$a->strings["System check"] = "System check";
+$a->strings["Check again"] = "Check again";
+$a->strings["Database connection"] = "Database connection";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "In order to install Friendica we need to know how to connect to your database.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or site administrator if you have questions about these settings.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "The database you specify below should already exist. If it does not, please create it before continuing.";
+$a->strings["Database Server Name"] = "Database server name";
+$a->strings["Database Login Name"] = "Database login name";
+$a->strings["Database Login Password"] = "Database login password";
+$a->strings["For security reasons the password must not be empty"] = "For security reasons the password must not be empty";
+$a->strings["Database Name"] = "Database name";
+$a->strings["Site administrator email address"] = "Site administrator email address";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel.";
+$a->strings["Please select a default timezone for your website"] = "Please select a default time zone for your website";
+$a->strings["Site settings"] = "Site settings";
+$a->strings["System Language:"] = "System language:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Set the default language for your Friendica installation interface and email communication.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "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-poller'>'Setup the poller'</a>";
+$a->strings["PHP executable path"] = "PHP executable path";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation.";
+$a->strings["Command line PHP"] = "Command line PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable is not a php cli binary; it could possibly be a cgi-fgci version.";
+$a->strings["Found PHP version: "] = "Found 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."] = "The command line version of PHP on your system does not have \"register_argc_argv\" enabled.";
+$a->strings["This is required for message delivery to work."] = "This is required for message delivery to work.";
+$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"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows OS, please see \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generate encryption keys";
+$a->strings["libCurl PHP module"] = "libCurl PHP module";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP module";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP module";
+$a->strings["PDO or MySQLi PHP module"] = "PDO or MySQLi PHP module";
+$a->strings["mb_string PHP module"] = "mb_string PHP module";
+$a->strings["XML PHP module"] = "XML PHP module";
+$a->strings["iconv module"] = "iconv module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache web server mod-rewrite module is required but not installed.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Error: PDO or MySQLi PHP module required but not installed.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Error: MySQL driver for PDO is not installed.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Error: iconv PHP module required but not installed.";
+$a->strings["Error, XML PHP module required but not installed."] = "Error, XML PHP module required but not installed.";
+$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."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
+$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."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
+$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."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternatively, you may skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is writeable";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "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."] = "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 directory.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
+$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."] = "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 is writeable";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite in .htaccess is not working. Check your server configuration.";
+$a->strings["Url rewrite is working"] = "URL rewrite is working";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP extension is not installed";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick supports 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."] = "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.";
+$a->strings["<h1>What next</h1>"] = "<h1>What next</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller.";
 $a->strings["Total invitation limit exceeded."] = "Total invitation limit exceeded";
 $a->strings["%s : Not a valid email address."] = "%s : Not a valid email address";
 $a->strings["Please join us on Friendica"] = "Please join us on Friendica.";
@@ -973,17 +1051,64 @@ $a->strings["Your password may be changed from the <em>Settings</em> page after
 $a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records or change your password immediately to\n\t\t\t\tsomething that you will remember.\n\t\t\t";
 $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t";
 $a->strings["Your password has been changed at %s"] = "Your password has been changed at %s";
-$a->strings["Forgot your Password?"] = "Forgot your password?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter your email address and submit to reset your password. Then check your email for further instructions.";
-$a->strings["Nickname or Email: "] = "Nickname or Email: ";
+$a->strings["Forgot your Password?"] = "Reset My Password";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Enter email address or nickname to reset your password. You will receive further instruction via email.";
+$a->strings["Nickname or Email: "] = "Nickname or email: ";
 $a->strings["Reset"] = "Reset";
 $a->strings["System down for maintenance"] = "Sorry, the system is currently down for maintenance.";
+$a->strings["Manage Identities and/or Pages"] = "Manage Identities and Pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own.";
+$a->strings["Select an identity to manage: "] = "Select identity:";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "No keywords to match. Please add keywords to your default profile.";
 $a->strings["is interested in:"] = "is interested in:";
 $a->strings["Profile Match"] = "Profile Match";
-$a->strings["No matches"] = "No matches";
+$a->strings["No recipient selected."] = "No recipient selected.";
+$a->strings["Unable to locate contact information."] = "Unable to locate contact information.";
+$a->strings["Message could not be sent."] = "Message could not be sent.";
+$a->strings["Message collection failure."] = "Message collection failure.";
+$a->strings["Message sent."] = "Message sent.";
+$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?";
+$a->strings["Message deleted."] = "Message deleted.";
+$a->strings["Conversation removed."] = "Conversation removed.";
+$a->strings["Send Private Message"] = "Send private message";
+$a->strings["To:"] = "To:";
+$a->strings["Subject:"] = "Subject:";
+$a->strings["No messages."] = "No messages.";
+$a->strings["Message not available."] = "Message not available.";
+$a->strings["Delete message"] = "Delete message";
+$a->strings["Delete conversation"] = "Delete conversation";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page.";
+$a->strings["Send Reply"] = "Send reply";
+$a->strings["Unknown sender - %s"] = "Unknown sender - %s";
+$a->strings["You and %s"] = "Me and %s";
+$a->strings["%s and You"] = "%s and me";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
+);
 $a->strings["Mood"] = "Mood";
 $a->strings["Set your current mood and tell your friends"] = "Set your current mood and tell your friends";
+$a->strings["Results for: %s"] = "Results for: %s";
+$a->strings["Remove term"] = "Remove term";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.",
+       1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers.";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure.";
+$a->strings["Invalid contact."] = "Invalid contact.";
+$a->strings["Commented Order"] = "Commented last";
+$a->strings["Sort by Comment Date"] = "Sort by comment date";
+$a->strings["Posted Order"] = "Posted last";
+$a->strings["Sort by Post Date"] = "Sort by post date";
+$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me";
+$a->strings["New"] = "New";
+$a->strings["Activity Stream - by date"] = "Activity Stream - by date";
+$a->strings["Shared Links"] = "Shared links";
+$a->strings["Interesting Links"] = "Interesting links";
+$a->strings["Starred"] = "Starred";
+$a->strings["Favourite Posts"] = "My favourite posts";
 $a->strings["Welcome to Friendica"] = "Welcome to Friendica";
 $a->strings["New Member Checklist"] = "New Member Checklist";
 $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."] = "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.";
@@ -1015,10 +1140,42 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
 $a->strings["Getting Help"] = "Getting help";
 $a->strings["Go to the Help Section"] = "Go to the help section";
 $a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Our <strong>help</strong> pages may be consulted for detail on other program features and resources.";
+$a->strings["Visit %s's profile [%s]"] = "Visit %s's profile [%s]";
+$a->strings["Edit contact"] = "Edit contact";
 $a->strings["Contacts who are not members of a group"] = "Contacts who are not members of a group";
-$a->strings["No more system notifications."] = "No more system notifications.";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Discard";
+$a->strings["Ignore"] = "Ignore";
+$a->strings["Network Notifications"] = "Network notifications";
 $a->strings["System Notifications"] = "System notifications";
+$a->strings["Personal Notifications"] = "Personal notifications";
+$a->strings["Home Notifications"] = "Home notifications";
+$a->strings["Show Ignored Requests"] = "Show ignored requests.";
+$a->strings["Hide Ignored Requests"] = "Hide ignored requests";
+$a->strings["Notification type: "] = "Notification type: ";
+$a->strings["suggested by %s"] = "suggested by %s";
+$a->strings["Hide this contact from others"] = "Hide this contact from others";
+$a->strings["Post a new friend activity"] = "Post a new friend activity";
+$a->strings["if applicable"] = "if applicable";
+$a->strings["Approve"] = "Approve";
+$a->strings["Claims to be known to you: "] = "Says they know me:";
+$a->strings["yes"] = "yes";
+$a->strings["no"] = "no";
+$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
+$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."] = "Accepting %s as a friend allows %s to subscribe to your posts; 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."] = "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."] = "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"] = "Friend";
+$a->strings["Sharer"] = "Sharer";
+$a->strings["Subscriber"] = "Subscriber";
+$a->strings["No introductions."] = "No introductions.";
+$a->strings["Show unread"] = "Show unread";
+$a->strings["Show all"] = "Show all";
+$a->strings["No more %s notifications."] = "No more %s notifications.";
+$a->strings["No more system notifications."] = "No more system notifications.";
 $a->strings["Post successful."] = "Post successful.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
 $a->strings["Subscribing to OStatus contacts"] = "Subscribing to OStatus contacts";
 $a->strings["No contact provided."] = "No contact provided.";
 $a->strings["Couldn't fetch information for contact."] = "Couldn't fetch information for contact.";
@@ -1028,42 +1185,101 @@ $a->strings["success"] = "success";
 $a->strings["failed"] = "failed";
 $a->strings["Keep this window open until done."] = "Keep this window open until done.";
 $a->strings["Not Extended"] = "Not extended";
+$a->strings["Recent Photos"] = "Recent photos";
+$a->strings["Upload New Photos"] = "Upload new photos";
+$a->strings["everybody"] = "everybody";
+$a->strings["Contact information unavailable"] = "Contact information unavailable";
+$a->strings["Album not found."] = "Album not found.";
+$a->strings["Delete Album"] = "Delete album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
+$a->strings["Delete Photo"] = "Delete photo";
+$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
+$a->strings["a photo"] = "a photo";
+$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s";
+$a->strings["Image file is empty."] = "Image file is empty.";
+$a->strings["Unable to process image."] = "Unable to process image.";
+$a->strings["Image upload failed."] = "Image upload failed.";
+$a->strings["No photos selected"] = "No photos selected";
+$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.";
+$a->strings["Upload Photos"] = "Upload photos";
+$a->strings["New album name: "] = "New album name: ";
+$a->strings["or existing album name: "] = "or existing album name: ";
+$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
+$a->strings["Show to Groups"] = "Show to groups";
+$a->strings["Show to Contacts"] = "Show to contacts";
+$a->strings["Private Photo"] = "Private photo";
+$a->strings["Public Photo"] = "Public photo";
+$a->strings["Edit Album"] = "Edit album";
+$a->strings["Show Newest First"] = "Show newest first";
+$a->strings["Show Oldest First"] = "Show oldest first";
+$a->strings["View Photo"] = "View photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permission denied. Access to this item may be restricted.";
+$a->strings["Photo not available"] = "Photo not available";
+$a->strings["View photo"] = "View photo";
+$a->strings["Edit photo"] = "Edit photo";
+$a->strings["Use as profile photo"] = "Use as profile photo";
+$a->strings["View Full Size"] = "View full size";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Remove any tag]";
+$a->strings["New album name"] = "New album name";
+$a->strings["Caption"] = "Caption";
+$a->strings["Add a Tag"] = "Add Tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Example: @bob, @jojo@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Do not rotate";
+$a->strings["Rotate CW (right)"] = "Rotate right (CW)";
+$a->strings["Rotate CCW (left)"] = "Rotate left (CCW)";
+$a->strings["Private photo"] = "Private photo";
+$a->strings["Public photo"] = "Public photo";
+$a->strings["Map"] = "Map";
+$a->strings["View Album"] = "View album";
+$a->strings["{0} wants to be your friend"] = "{0} wants to be your friend";
+$a->strings["{0} sent you a message"] = "{0} sent you a message";
+$a->strings["{0} requested registration"] = "{0} requested registration";
 $a->strings["Poke/Prod"] = "Poke/Prod";
 $a->strings["poke, prod or do other things to somebody"] = "Poke, prod or do other things to somebody";
 $a->strings["Recipient"] = "Recipient:";
 $a->strings["Choose what you wish to do to recipient"] = "Choose what you wish to do:";
 $a->strings["Make this post private"] = "Make this post private";
-$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed.";
-$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately.";
-$a->strings["Unable to process image"] = "Unable to process image";
-$a->strings["Image exceeds size limit of %s"] = "Image exceeds size limit of %s";
-$a->strings["Unable to process image."] = "Unable to process image.";
-$a->strings["Upload File:"] = "Upload File:";
-$a->strings["Select a profile:"] = "Select a profile:";
-$a->strings["Upload"] = "Upload";
-$a->strings["or"] = "or";
-$a->strings["skip this step"] = "skip this step";
-$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums";
-$a->strings["Crop Image"] = "Crop Image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing.";
-$a->strings["Done Editing"] = "Done editing";
-$a->strings["Image uploaded successfully."] = "Image uploaded successfully.";
-$a->strings["Image upload failed."] = "Image upload failed.";
-$a->strings["Permission denied"] = "Permission denied";
+$a->strings["Tips for New Members"] = "Tips for New Members";
 $a->strings["Invalid profile identifier."] = "Invalid profile identifier.";
 $a->strings["Profile Visibility Editor"] = "Profile Visibility Editor";
-$a->strings["Click on a contact to add or remove."] = "Click on a contact to add or remove.";
 $a->strings["Visible To"] = "Visible to";
 $a->strings["All Contacts (with secure profile access)"] = "All contacts with secure profile access";
-$a->strings["Account approved."] = "Account approved.";
-$a->strings["Registration revoked for %s"] = "Registration revoked for %s";
-$a->strings["Please login."] = "Please login.";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registration successful. Please check your email for further instructions.";
+$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."] = "Failed to send email message. Here your account details:<br> login: %s<br> password: %s<br><br>You can change your password after login.";
+$a->strings["Registration successful."] = "Registration successful.";
+$a->strings["Your registration can not be processed."] = "Your registration cannot be processed.";
+$a->strings["Your registration is pending approval by the site owner."] = "Your registration is pending approval by the site administrator.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "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."] = "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.";
+$a->strings["Your OpenID (optional): "] = "Your OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Include your profile in member directory?";
+$a->strings["Note for the admin"] = "Note for the admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Leave a message for the admin, why you want to join this node.";
+$a->strings["Membership on this site is by invitation only."] = "Membership on this site is by invitation only.";
+$a->strings["Your invitation ID: "] = "Your invitation ID: ";
+$a->strings["Registration"] = "Registration";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Your full name: ";
+$a->strings["Your Email Address: "] = "Your email address: ";
+$a->strings["New Password:"] = "New password:";
+$a->strings["Leave empty for an auto generated password."] = "Leave empty for an auto generated password.";
+$a->strings["Confirm:"] = "Confirm new password:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choose a profile nickname. Your nickname will be part of your identity address; for example:  '<strong>nickname@\$sitename</strong>'.";
+$a->strings["Choose a nickname: "] = "Choose a nickname: ";
+$a->strings["Import"] = "Import profile";
+$a->strings["Import your profile to this friendica instance"] = "Import an existing Friendica profile to this node.";
 $a->strings["Remove My Account"] = "Remove my account";
 $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "This will completely remove your account. Once this has been done it is not recoverable.";
 $a->strings["Please enter your password for verification:"] = "Please enter your password for verification:";
 $a->strings["Resubscribing to OStatus contacts"] = "Resubscribing to OStatus contacts";
 $a->strings["Error"] = "Error";
+$a->strings["Only logged in users are permitted to perform a search."] = "Only logged in users are permitted to perform a search.";
+$a->strings["Too Many Requests"] = "Too many requests";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Only one search per minute is permitted for not logged in users.";
+$a->strings["Items tagged with: %s"] = "Items tagged with: %s";
 $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s is following %2\$s's %3\$s";
 $a->strings["Do you really want to delete this suggestion?"] = "Do you really want to delete this suggestion?";
 $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No suggestions available. If this is a new site, please try again in 24 hours.";
@@ -1071,15 +1287,17 @@ $a->strings["Ignore/Hide"] = "Ignore/Hide";
 $a->strings["Tag removed"] = "Tag removed";
 $a->strings["Remove Item Tag"] = "Remove Item tag";
 $a->strings["Select a tag to remove: "] = "Select a tag to remove: ";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.";
-$a->strings["Import"] = "Import";
-$a->strings["Move account"] = "Move account";
-$a->strings["You can import an account from another Friendica server."] = "You can import an account from another Friendica server.";
-$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."] = "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"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora";
-$a->strings["Account file"] = "Account file";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"";
+$a->strings["Export account"] = "Export account";
+$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."] = "Export your account info and contacts. Use this to backup your account or to move it to another server.";
+$a->strings["Export all"] = "Export all";
+$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)"] = "Export your account 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)";
+$a->strings["Export personal data"] = "Export personal data";
 $a->strings["[Embedded content - reload page to view]"] = "[Embedded content - reload page to view]";
+$a->strings["Do you really want to delete this video?"] = "Do you really want to delete this video?";
+$a->strings["Delete Video"] = "Delete video";
+$a->strings["No videos selected"] = "No videos selected";
+$a->strings["Recent Videos"] = "Recent videos";
+$a->strings["Upload New Videos"] = "Upload new videos";
 $a->strings["No contacts."] = "No contacts.";
 $a->strings["Access denied."] = "Access denied.";
 $a->strings["Invalid request."] = "Invalid request.";
@@ -1088,56 +1306,10 @@ $a->strings["Or - did you try to upload an empty file?"] = "Or did you try to up
 $a->strings["File exceeds size limit of %s"] = "File exceeds size limit of %s";
 $a->strings["File upload failed."] = "File upload failed.";
 $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Message failed.";
-$a->strings["No recipient selected."] = "No recipient selected.";
 $a->strings["Unable to check your home location."] = "Unable to check your home location.";
-$a->strings["Message could not be sent."] = "Message could not be sent.";
-$a->strings["Message collection failure."] = "Message collection failure.";
-$a->strings["Message sent."] = "Message sent.";
 $a->strings["No recipient."] = "No recipient.";
-$a->strings["Send Private Message"] = "Send private message";
 $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "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:"] = "To:";
-$a->strings["Subject:"] = "Subject:";
-$a->strings["Source (bbcode) text:"] = "Source (bbcode) text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Source (Diaspora) text to convert to BBcode:";
-$a->strings["Source input: "] = "Source input: ";
-$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Source input (Diaspora format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["View"] = "View";
-$a->strings["Previous"] = "Previous";
-$a->strings["Next"] = "Next";
-$a->strings["list"] = "List";
-$a->strings["User not found"] = "User not found";
-$a->strings["This calendar format is not supported"] = "This calendar format is not supported";
-$a->strings["No exportable data found"] = "No exportable data found";
-$a->strings["calendar"] = "calendar";
-$a->strings["Not available."] = "Not available.";
-$a->strings["No results."] = "No results.";
-$a->strings["Profile not found."] = "Profile not found.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "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."] = "Response from remote site was not understood.";
-$a->strings["Unexpected response from remote site: "] = "Unexpected response from remote site: ";
-$a->strings["Confirmation completed successfully."] = "Confirmation completed successfully.";
-$a->strings["Remote site reported: "] = "Remote site reported: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Temporary failure. Please wait and try again.";
-$a->strings["Introduction failed or was revoked."] = "Introduction failed or was revoked.";
-$a->strings["Unable to set contact photo."] = "Unable to set contact photo.";
-$a->strings["No user record found for '%s' "] = "No user record found for '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Our site encryption key is apparently messed up.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "An empty URL was provided or the URL could not be decrypted by us.";
-$a->strings["Contact record was not found for you on our site."] = "Contact record was not found for you on our site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "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."] = "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."] = "Unable to set your contact credentials on our system.";
-$a->strings["Unable to update your contact profile details on our system"] = "Unable to update your contact profile details on our system";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s has joined %2\$s";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Only logged in users are permitted to perform a probing.";
 $a->strings["This introduction has already been accepted."] = "This introduction has already been accepted.";
 $a->strings["Profile location is not valid or does not contain profile information."] = "Profile location is not valid or does not contain profile information.";
 $a->strings["Warning: profile location has no identifiable owner name."] = "Warning: profile location has no identifiable owner name.";
@@ -1146,174 +1318,447 @@ $a->strings["%d required parameter was not found at the given location"] = array
        0 => "%d required parameter was not found at the given location",
        1 => "%d required parameters were not found at the given location",
 );
-$a->strings["Introduction complete."] = "Introduction complete.";
-$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error.";
-$a->strings["Profile unavailable."] = "Profile unavailable.";
-$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today.";
-$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours.";
-$a->strings["Invalid locator"] = "Invalid locator";
-$a->strings["Invalid email address."] = "Invalid email address.";
-$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed.";
-$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here.";
-$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s.";
-$a->strings["Invalid profile URL."] = "Invalid profile URL.";
-$a->strings["Your introduction has been sent."] = "Your introduction has been sent.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system.";
-$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
-$a->strings["Confirm"] = "Confirm";
-$a->strings["Hide this contact"] = "Hide this contact";
-$a->strings["Welcome home %s."] = "Welcome home %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>.";
-$a->strings["Friend/Connection Request"] = "Friend/Connection request";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca";
-$a->strings["Please answer the following:"] = "Please answer the following:";
-$a->strings["Does %s know you?"] = "Does %s know you?";
-$a->strings["Add a personal note:"] = "Add a personal note:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
-$a->strings["Your Identity Address:"] = "My identity address:";
-$a->strings["Submit Request"] = "Submit request";
-$a->strings["People Search - %s"] = "People search - %s";
-$a->strings["Forum Search - %s"] = "Forum search - %s";
-$a->strings["Event can not end before it has started."] = "Event cannot end before it has started.";
-$a->strings["Event title and start time are required."] = "Event title and starting time are required.";
-$a->strings["Create New Event"] = "Create new event";
-$a->strings["Event details"] = "Event details";
-$a->strings["Starting date and Title are required."] = "Starting date and title are required.";
-$a->strings["Event Starts:"] = "Event starts:";
-$a->strings["Required"] = "Required";
-$a->strings["Finish date/time is not known or not relevant"] = "Finish date/time is not known or not relevant";
-$a->strings["Event Finishes:"] = "Event finishes:";
-$a->strings["Adjust for viewer timezone"] = "Adjust for viewer's time zone";
-$a->strings["Description:"] = "Description:";
-$a->strings["Title:"] = "Title:";
-$a->strings["Share this event"] = "Share this event";
-$a->strings["Failed to remove event"] = "Failed to remove event";
-$a->strings["Event removed"] = "Event removed";
-$a->strings["You already added this contact."] = "You already added this contact.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora support isn't enabled. Contact can't be added.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus support is disabled. Contact can't be added.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "The network type couldn't be detected. Contact can't be added.";
-$a->strings["Contact added"] = "Contact added";
-$a->strings["This is Friendica, version"] = "This is Friendica, version";
-$a->strings["running at web location"] = "running at web location";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project.";
-$a->strings["Bug reports and issues: please visit"] = "Bug reports and issues: please visit";
-$a->strings["the bugtracker at github"] = "the bugtracker at github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installed plugins/addons/apps:";
-$a->strings["No installed plugins/addons/apps"] = "No installed plugins/addons/apps";
-$a->strings["On this server the following remote servers are blocked."] = "On this server the following remote servers are blocked.";
-$a->strings["Reason for the block"] = "Reason for the block";
-$a->strings["Group created."] = "Group created.";
-$a->strings["Could not create group."] = "Could not create group.";
-$a->strings["Group not found."] = "Group not found.";
-$a->strings["Group name changed."] = "Group name changed.";
-$a->strings["Save Group"] = "Save group";
-$a->strings["Create a group of contacts/friends."] = "Create a group of contacts/friends.";
-$a->strings["Group removed."] = "Group removed.";
-$a->strings["Unable to remove group."] = "Unable to remove group.";
-$a->strings["Delete Group"] = "Delete group";
-$a->strings["Group Editor"] = "Group Editor";
-$a->strings["Edit Group Name"] = "Edit group name";
-$a->strings["Members"] = "Members";
-$a->strings["Remove Contact"] = "Remove contact";
-$a->strings["Add Contact"] = "Add contact";
-$a->strings["Manage Identities and/or Pages"] = "Manage identities/pages";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Accounts that I manage or own.";
-$a->strings["Select an identity to manage: "] = "Select identity:";
-$a->strings["Unable to locate contact information."] = "Unable to locate contact information.";
-$a->strings["Do you really want to delete this message?"] = "Do you really want to delete this message?";
-$a->strings["Message deleted."] = "Message deleted.";
-$a->strings["Conversation removed."] = "Conversation removed.";
-$a->strings["No messages."] = "No messages.";
-$a->strings["Message not available."] = "Message not available.";
-$a->strings["Delete message"] = "Delete message";
-$a->strings["Delete conversation"] = "Delete conversation";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "Send reply";
-$a->strings["Unknown sender - %s"] = "Unknown sender - %s";
-$a->strings["You and %s"] = "Me and %s";
-$a->strings["%s and You"] = "%s and me";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d message",
-       1 => "%d messages",
+$a->strings["Introduction complete."] = "Introduction complete.";
+$a->strings["Unrecoverable protocol error."] = "Unrecoverable protocol error.";
+$a->strings["Profile unavailable."] = "Profile unavailable.";
+$a->strings["%s has received too many connection requests today."] = "%s has received too many connection requests today.";
+$a->strings["Spam protection measures have been invoked."] = "Spam protection measures have been invoked.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Friends are advised to please try again in 24 hours.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Invalid email address.";
+$a->strings["This account has not been configured for email. Request failed."] = "This account has not been configured for email. Request failed.";
+$a->strings["You have already introduced yourself here."] = "You have already introduced yourself here.";
+$a->strings["Apparently you are already friends with %s."] = "Apparently you are already friends with %s.";
+$a->strings["Invalid profile URL."] = "Invalid profile URL.";
+$a->strings["Failed to update contact record."] = "Failed to update contact record.";
+$a->strings["Your introduction has been sent."] = "Your introduction has been sent.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Remote subscription can't be done for your network. Please subscribe directly on your system.";
+$a->strings["Please login to confirm introduction."] = "Please login to confirm introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Incorrect identity currently logged in. Please login to <strong>this</strong> profile.";
+$a->strings["Confirm"] = "Confirm";
+$a->strings["Hide this contact"] = "Hide this contact";
+$a->strings["Welcome home %s."] = "Welcome home %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Please confirm your introduction/connection request to %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Please enter your 'Identity address' from one of the following supported communications networks:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>.";
+$a->strings["Friend/Connection Request"] = "Friend/Connection request";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examples: jojo@friendica.example.com, http://friendica.example.com/profile/jojo, sam@identi.ca";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated social web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - please do not use this form.  Instead, enter %s into your Diaspora search bar.";
+$a->strings["Unable to locate original post."] = "Unable to locate original post.";
+$a->strings["Empty post discarded."] = "Empty post discarded.";
+$a->strings["System error. Post not saved."] = "System error. Post not saved.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "This message was sent to you by %s, a member of the Friendica social network.";
+$a->strings["You may visit them online at %s"] = "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."] = "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 posted an update.";
+$a->strings["Account approved."] = "Account approved.";
+$a->strings["Registration revoked for %s"] = "Registration revoked for %s";
+$a->strings["Please login."] = "Please login.";
+$a->strings["Move account"] = "Move Existing Friendica Account";
+$a->strings["You can import an account from another Friendica server."] = "You can import an existing Friendica profile to this node.";
+$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."] = "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"] = "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora.";
+$a->strings["Account file"] = "Account file:";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "To export your account, go to \"Settings->Export personal data\" and select \"Export account\"";
+$a->strings["Theme settings updated."] = "Theme settings updated.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Users";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Themes"] = "Theme selection";
+$a->strings["Additional features"] = "Additional features";
+$a->strings["DB updates"] = "DB updates";
+$a->strings["Inspect Queue"] = "Inspect queue";
+$a->strings["Server Blocklist"] = "Server blocklist";
+$a->strings["Federation Statistics"] = "Federation statistics";
+$a->strings["Logs"] = "Logs";
+$a->strings["View Logs"] = "View logs";
+$a->strings["probe address"] = "Probe address";
+$a->strings["check webfinger"] = "Check webfinger";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["diagnostics"] = "Diagnostics";
+$a->strings["User registrations waiting for confirmation"] = "User registrations awaiting confirmation";
+$a->strings["The blocked domain"] = "Blocked domain";
+$a->strings["The reason why you blocked this domain."] = "Reason why you blocked this domain.";
+$a->strings["Delete domain"] = "Delete domain";
+$a->strings["Check to delete this entry from the blocklist"] = "Check to delete this entry from the blocklist";
+$a->strings["Administration"] = "Administration";
+$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "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."] = "The list of blocked servers will publicly available on the Friendica page so that your users and people investigating communication problems can readily find the reason.";
+$a->strings["Add new entry to block list"] = "Add new entry to block list";
+$a->strings["Server Domain"] = "Server domain";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "The domain of the new server to add to the block list. Do not include the protocol.";
+$a->strings["Block reason"] = "Block reason";
+$a->strings["Add Entry"] = "Add entry";
+$a->strings["Save changes to the blocklist"] = "Save changes to the blocklist";
+$a->strings["Current Entries in the Blocklist"] = "Current entries in the blocklist";
+$a->strings["Delete entry from blocklist"] = "Delete entry from blocklist";
+$a->strings["Delete entry from blocklist?"] = "Delete entry from blocklist?";
+$a->strings["Server added to blocklist."] = "Server added to blocklist.";
+$a->strings["Site blocklist updated."] = "Site blocklist updated.";
+$a->strings["unknown"] = "unknown";
+$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."] = "This page offers you the amount of known part of the federated social network your Friendica node is part of. These numbers are not complete and 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."] = "The <em>Auto Discovered Contact Directory</em> feature is not enabled; enabling it will improve the data displayed here.";
+$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Currently this node is aware of %d nodes from the following platforms:";
+$a->strings["ID"] = "ID";
+$a->strings["Recipient Name"] = "Recipient name";
+$a->strings["Recipient Profile"] = "Recipient profile";
+$a->strings["Created"] = "Created";
+$a->strings["Last Tried"] = "Last Tried";
+$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 include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$a->strings["The database update failed. Please run \"php include/dbstructure.php update\" from the command line and have a look at the errors that might appear."] = "";
+$a->strings["Normal Account"] = "Standard account";
+$a->strings["Soapbox Account"] = "Soapbox account";
+$a->strings["Community/Celebrity Account"] = "";
+$a->strings["Automatic Friend Account"] = "";
+$a->strings["Blog Account"] = "";
+$a->strings["Private Forum"] = "";
+$a->strings["Message queues"] = "";
+$a->strings["Summary"] = "Summary";
+$a->strings["Registered users"] = "Registered users";
+$a->strings["Pending registrations"] = "Pending registrations";
+$a->strings["Version"] = "Version";
+$a->strings["Active plugins"] = "Active plugins";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Can not parse base URL. Must have at least <scheme>://<domain>";
+$a->strings["Site settings updated."] = "Site settings updated.";
+$a->strings["No special theme for mobile devices"] = "No special theme for mobile devices";
+$a->strings["No community page"] = "No community page";
+$a->strings["Public postings from users of this site"] = "Public postings from users of this site";
+$a->strings["Global community page"] = "Global community page";
+$a->strings["Never"] = "Never";
+$a->strings["At post arrival"] = "At post arrival";
+$a->strings["Disabled"] = "Disabled";
+$a->strings["Users, Global Contacts"] = "Users, Global Contacts";
+$a->strings["Users, Global Contacts/fallback"] = "Users, Global Contacts/fallback";
+$a->strings["One month"] = "One month";
+$a->strings["Three months"] = "Three months";
+$a->strings["Half a year"] = "Half a year";
+$a->strings["One year"] = "One a year";
+$a->strings["Multi user instance"] = "Multi user instance";
+$a->strings["Closed"] = "Closed";
+$a->strings["Requires approval"] = "Requires approval";
+$a->strings["Open"] = "Open";
+$a->strings["No SSL policy, links will track page SSL state"] = "No SSL policy, links will track page SSL state";
+$a->strings["Force all links to use SSL"] = "Force all links to use SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Self-signed certificate, use SSL for local links only (discouraged)";
+$a->strings["Save Settings"] = "Save settings";
+$a->strings["File upload"] = "File upload";
+$a->strings["Policies"] = "Policies";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Performance";
+$a->strings["Worker"] = "Worker";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable.";
+$a->strings["Site name"] = "Site name";
+$a->strings["Host name"] = "Host name";
+$a->strings["Sender Email"] = "Sender email";
+$a->strings["The email address your server shall use to send notification emails from."] = "The email address your server shall use to send notification emails from.";
+$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 to an icon that will be used for browsers.";
+$a->strings["Touch icon"] = "Touch icon";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link to an icon that will be used for tablets and mobiles.";
+$a->strings["Additional Info"] = "Additional Info";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "For public servers: add additional information here that will be listed at %s/siteinfo.";
+$a->strings["System language"] = "System language";
+$a->strings["System theme"] = "System theme";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Default system theme - may be overridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>";
+$a->strings["Mobile system theme"] = "Mobile system theme";
+$a->strings["Theme for mobile devices"] = "Theme for mobile devices";
+$a->strings["SSL link policy"] = "SSL link policy";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Determines whether generated links should be forced to use SSL";
+$a->strings["Force SSL"] = "Force SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "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"] = "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."] = "Hides the menu entry for the Help pages from the navigation menu. Help pages can still be accessed by calling ../help directly via its URL.";
+$a->strings["Single user instance"] = "Single user instance";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Make this instance multi-user or single-user for the named user";
+$a->strings["Maximum image size"] = "Maximum image size";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximum size in bytes of uploaded images. Default is 0, which means no limits.";
+$a->strings["Maximum image length"] = "Maximum image length";
+$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 image quality";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Register policy"] = "Register policy";
+$a->strings["Maximum Daily Registrations"] = "";
+$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"] = "";
+$a->strings["Will be displayed prominently on the registration page."] = "";
+$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"] = "";
+$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"] = "";
+$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["Block public"] = "";
+$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"] = "Global directory URL";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL to the global directory: If this is not set, the global directory is completely unavailable to the application.";
+$a->strings["Allow threaded items"] = "";
+$a->strings["Allow infinite level threading for items on this site."] = "";
+$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"] = "";
+$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"] = "";
+$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"] = "";
+$a->strings["OpenID support for registration and logins."] = "";
+$a->strings["Fullname check"] = "";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
+$a->strings["Community Page Style"] = "";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
+$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"] = "";
+$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["OStatus conversation completion interval"] = "";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
+$a->strings["Only import OStatus threads from our contacts"] = "";
+$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."] = "";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
+$a->strings["Enable Diaspora support"] = "";
+$a->strings["Provide built-in Diaspora network compatibility."] = "";
+$a->strings["Only allow Friendica contacts"] = "";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
+$a->strings["Verify 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"] = "";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "";
+$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 poller. 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'."] = "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 recommend 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"] = "";
+$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"] = "";
+$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["Suppress Tags"] = "";
+$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"] = "";
+$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"] = "New base URL";
+$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Change base URL for this server. Sends relocate message to all DFRN contacts of all users.";
+$a->strings["RINO Encryption"] = "";
+$a->strings["Encryption layer between nodes."] = "";
+$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 poller calls in your crontab."] = "";
+$a->strings["Enable 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 (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
+$a->strings["Update has been marked successful"] = "";
+$a->strings["Database structure update %s was successfully applied."] = "";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "";
+$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."] = "";
+$a->strings["Check database structure"] = "";
+$a->strings["Failed Updates"] = "";
+$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\tThank you and welcome to %4\$s."] = "";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "",
+       1 => "",
 );
-$a->strings["Remove term"] = "Remove term";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
-       0 => "Warning: This group contains %s member from a network that doesn't allow non public messages.",
-       1 => "Warning: This group contains %s members from a network that doesn't allow non public messages.",
+$a->strings["User '%s' deleted"] = "";
+$a->strings["User '%s' unblocked"] = "";
+$a->strings["User '%s' blocked"] = "";
+$a->strings["Register date"] = "";
+$a->strings["Last login"] = "";
+$a->strings["Last item"] = "";
+$a->strings["Account"] = "";
+$a->strings["Add User"] = "";
+$a->strings["select all"] = "";
+$a->strings["User registrations waiting for confirm"] = "";
+$a->strings["User waiting for permanent deletion"] = "";
+$a->strings["Request date"] = "";
+$a->strings["No registrations."] = "";
+$a->strings["Note from the user"] = "";
+$a->strings["Deny"] = "";
+$a->strings["Block"] = "Block";
+$a->strings["Unblock"] = "Unblock";
+$a->strings["Site admin"] = "";
+$a->strings["Account expired"] = "";
+$a->strings["New User"] = "";
+$a->strings["Deleted since"] = "";
+$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."] = "";
+$a->strings["Nickname"] = "";
+$a->strings["Nickname of the new user."] = "";
+$a->strings["Email address of the new user."] = "";
+$a->strings["Plugin %s disabled."] = "";
+$a->strings["Plugin %s enabled."] = "";
+$a->strings["Disable"] = "";
+$a->strings["Enable"] = "";
+$a->strings["Toggle"] = "";
+$a->strings["Author: "] = "";
+$a->strings["Maintainer: "] = "";
+$a->strings["Reload active plugins"] = "";
+$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
+$a->strings["No themes found."] = "";
+$a->strings["Screenshot"] = "";
+$a->strings["Reload active themes"] = "";
+$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
+$a->strings["[Experimental]"] = "";
+$a->strings["[Unsupported]"] = "";
+$a->strings["Log settings updated."] = "";
+$a->strings["PHP log currently enabled."] = "";
+$a->strings["PHP log currently disabled."] = "";
+$a->strings["Clear"] = "";
+$a->strings["Enable Debugging"] = "";
+$a->strings["Log file"] = "";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Log level"] = "";
+$a->strings["PHP logging"] = "";
+$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["Off"] = "";
+$a->strings["On"] = "";
+$a->strings["Lock feature %s"] = "";
+$a->strings["Manage Additional Features"] = "";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contact edited.",
+       1 => "%d contacts edited.",
 );
-$a->strings["Messages in this group won't be send to these receivers."] = "Messages in this group won't be send to these receivers.";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private messages to this person are at risk of public disclosure.";
-$a->strings["Invalid contact."] = "Invalid contact.";
-$a->strings["Commented Order"] = "Commented last";
-$a->strings["Sort by Comment Date"] = "Sort by comment date";
-$a->strings["Posted Order"] = "Posted last";
-$a->strings["Sort by Post Date"] = "Sort by post date";
-$a->strings["Posts that mention or involve you"] = "Posts mentioning or involving me";
-$a->strings["New"] = "New";
-$a->strings["Activity Stream - by date"] = "Activity Stream - by date";
-$a->strings["Shared Links"] = "Shared links";
-$a->strings["Interesting Links"] = "Interesting links";
-$a->strings["Starred"] = "Starred";
-$a->strings["Favourite Posts"] = "My favourite posts";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID protocol error. No ID returned.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Account not found and OpenID registration is not permitted on this site.";
-$a->strings["Recent Photos"] = "Recent photos";
-$a->strings["Upload New Photos"] = "Upload new photos";
-$a->strings["everybody"] = "everybody";
-$a->strings["Contact information unavailable"] = "Contact information unavailable";
-$a->strings["Album not found."] = "Album not found.";
-$a->strings["Delete Album"] = "Delete album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Do you really want to delete this photo album and all its photos?";
-$a->strings["Delete Photo"] = "Delete photo";
-$a->strings["Do you really want to delete this photo?"] = "Do you really want to delete this photo?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s was tagged in %2\$s by %3\$s";
-$a->strings["a photo"] = "a photo";
-$a->strings["Image file is empty."] = "Image file is empty.";
-$a->strings["No photos selected"] = "No photos selected";
-$a->strings["Access to this item is restricted."] = "Access to this item is restricted.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage.";
-$a->strings["Upload Photos"] = "Upload photos";
-$a->strings["New album name: "] = "New album name: ";
-$a->strings["or existing album name: "] = "or existing album name: ";
-$a->strings["Do not show a status post for this upload"] = "Do not show a status post for this upload";
-$a->strings["Show to Groups"] = "";
-$a->strings["Show to Contacts"] = "";
-$a->strings["Private Photo"] = "";
-$a->strings["Public Photo"] = "";
-$a->strings["Edit Album"] = "";
-$a->strings["Show Newest First"] = "";
-$a->strings["Show Oldest First"] = "";
-$a->strings["View Photo"] = "";
-$a->strings["Permission denied. Access to this item may be restricted."] = "";
-$a->strings["Photo not available"] = "";
-$a->strings["View photo"] = "";
-$a->strings["Edit photo"] = "";
-$a->strings["Use as profile photo"] = "";
-$a->strings["View Full Size"] = "";
-$a->strings["Tags: "] = "";
-$a->strings["[Remove any tag]"] = "";
-$a->strings["New album name"] = "";
-$a->strings["Caption"] = "";
-$a->strings["Add a Tag"] = "Add Tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "";
-$a->strings["Do not rotate"] = "";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
-$a->strings["Private photo"] = "";
-$a->strings["Public photo"] = "";
-$a->strings["Map"] = "";
-$a->strings["View Album"] = "";
-$a->strings["Only logged in users are permitted to perform a probing."] = "";
-$a->strings["Tips for New Members"] = "";
-$a->strings["Profile deleted."] = "";
+$a->strings["Could not access contact record."] = "Could not access contact record.";
+$a->strings["Could not locate selected profile."] = "Could not locate selected profile.";
+$a->strings["Contact updated."] = "Contact updated.";
+$a->strings["Contact has been blocked"] = "Contact has been blocked";
+$a->strings["Contact has been unblocked"] = "Contact has been unblocked";
+$a->strings["Contact has been ignored"] = "Contact has been ignored";
+$a->strings["Contact has been unignored"] = "Contact has been unignored";
+$a->strings["Contact has been archived"] = "Contact has been archived";
+$a->strings["Contact has been unarchived"] = "Contact has been unarchived";
+$a->strings["Drop contact"] = "Drop contact";
+$a->strings["Do you really want to delete this contact?"] = "Do you really want to delete this contact?";
+$a->strings["Contact has been removed."] = "Contact has been removed.";
+$a->strings["You are mutual friends with %s"] = "You are mutual friends with %s";
+$a->strings["You are sharing with %s"] = "You are sharing with %s";
+$a->strings["%s is sharing with you"] = "%s is sharing with you";
+$a->strings["Private communications are not available for this contact."] = "Private communications are not available for this contact.";
+$a->strings["(Update was successful)"] = "(Update was successful)";
+$a->strings["(Update was not successful)"] = "(Update was not successful)";
+$a->strings["Suggest friends"] = "Suggest friends";
+$a->strings["Network type: %s"] = "Network type: %s";
+$a->strings["Communications lost with this contact!"] = "Communications lost with this contact!";
+$a->strings["Fetch further information for feeds"] = "Fetch further information for feeds";
+$a->strings["Fetch information"] = "Fetch information";
+$a->strings["Fetch information and keywords"] = "Fetch information and keywords";
+$a->strings["Contact"] = "Contact";
+$a->strings["Profile Visibility"] = "Profile visibility";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Please choose the profile you would like to display to %s when viewing your profile securely.";
+$a->strings["Contact Information / Notes"] = "Personal note";
+$a->strings["Edit contact notes"] = "Edit contact notes";
+$a->strings["Block/Unblock contact"] = "Block/Unblock contact";
+$a->strings["Ignore contact"] = "Ignore contact";
+$a->strings["Repair URL settings"] = "Repair URL settings";
+$a->strings["View conversations"] = "View conversations";
+$a->strings["Last update:"] = "Last update:";
+$a->strings["Update public posts"] = "Update public posts";
+$a->strings["Update now"] = "Update now";
+$a->strings["Unignore"] = "Unignore";
+$a->strings["Currently blocked"] = "Currently blocked";
+$a->strings["Currently ignored"] = "Currently ignored";
+$a->strings["Currently archived"] = "Currently archived";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Replies/Likes to your public posts <strong>may</strong> still be visible";
+$a->strings["Notification for new posts"] = "Notification for new posts";
+$a->strings["Send a notification of every new post of this contact"] = "Send notification for every new post from this contact";
+$a->strings["Blacklisted keywords"] = "Blacklisted keywords";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected";
+$a->strings["Actions"] = "Actions";
+$a->strings["Contact Settings"] = "Notification and privacy ";
+$a->strings["Suggestions"] = "Suggestions";
+$a->strings["Suggest potential friends"] = "Suggest potential friends";
+$a->strings["Show all contacts"] = "Show all contacts";
+$a->strings["Unblocked"] = "Unblocked";
+$a->strings["Only show unblocked contacts"] = "Only show unblocked contacts";
+$a->strings["Blocked"] = "Blocked";
+$a->strings["Only show blocked contacts"] = "Only show blocked contacts";
+$a->strings["Ignored"] = "Ignored";
+$a->strings["Only show ignored contacts"] = "Only show ignored contacts";
+$a->strings["Archived"] = "Archived";
+$a->strings["Only show archived contacts"] = "Only show archived contacts";
+$a->strings["Hidden"] = "Hidden";
+$a->strings["Only show hidden contacts"] = "Only show hidden contacts";
+$a->strings["Search your contacts"] = "Search your contacts";
+$a->strings["Update"] = "Update";
+$a->strings["Archive"] = "Archive";
+$a->strings["Unarchive"] = "Unarchive";
+$a->strings["Batch Actions"] = "Batch actions";
+$a->strings["View all contacts"] = "View all contacts";
+$a->strings["View all common friends"] = "View all common friends";
+$a->strings["Advanced Contact Settings"] = "Advanced contact settings";
+$a->strings["Mutual Friendship"] = "Mutual friendship";
+$a->strings["is a fan of yours"] = "is a fan of yours";
+$a->strings["you are a fan of"] = "I follow them";
+$a->strings["Toggle Blocked status"] = "Toggle blocked status";
+$a->strings["Toggle Ignored status"] = "Toggle ignored status";
+$a->strings["Toggle Archive status"] = "Toggle archive status";
+$a->strings["Delete contact"] = "Delete contact";
+$a->strings["Image uploaded but image cropping failed."] = "Image uploaded but image cropping failed.";
+$a->strings["Image size reduction [%s] failed."] = "Image size reduction [%s] failed.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-reload the page or clear browser cache if the new photo does not display immediately.";
+$a->strings["Unable to process image"] = "Unable to process image";
+$a->strings["Upload File:"] = "Upload File:";
+$a->strings["Select a profile:"] = "Select a profile:";
+$a->strings["Upload"] = "Upload";
+$a->strings["or"] = "or";
+$a->strings["skip this step"] = "skip this step";
+$a->strings["select a photo from your photo albums"] = "select a photo from your photo albums";
+$a->strings["Crop Image"] = "Crop Image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Please adjust the image cropping for optimum viewing.";
+$a->strings["Done Editing"] = "Done editing";
+$a->strings["Image uploaded successfully."] = "Image uploaded successfully.";
+$a->strings["Profile deleted."] = "Profile deleted.";
 $a->strings["Profile-"] = "";
 $a->strings["New profile created."] = "";
 $a->strings["Profile unavailable to clone."] = "";
@@ -1326,7 +1771,7 @@ $a->strings["Political Views"] = "";
 $a->strings["Gender"] = "";
 $a->strings["Sexual Preference"] = "";
 $a->strings["XMPP"] = "";
-$a->strings["Homepage"] = "";
+$a->strings["Homepage"] = "Homepage";
 $a->strings["Interests"] = "";
 $a->strings["Address"] = "";
 $a->strings["Location"] = "";
@@ -1370,7 +1815,7 @@ $a->strings["Since [date]:"] = "";
 $a->strings["Tell us about yourself..."] = "";
 $a->strings["XMPP (Jabber) address:"] = "";
 $a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
-$a->strings["Homepage URL:"] = "";
+$a->strings["Homepage URL:"] = "Homepage URL:";
 $a->strings["Religious Views:"] = "";
 $a->strings["Public Keywords:"] = "";
 $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "";
@@ -1386,39 +1831,9 @@ $a->strings["Work/employment"] = "";
 $a->strings["School/education"] = "";
 $a->strings["Contact information and Social Networks"] = "";
 $a->strings["Edit/Manage Profiles"] = "";
-$a->strings["Registration successful. Please check your email for further instructions."] = "";
-$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."] = "";
-$a->strings["Your registration can not be processed."] = "";
-$a->strings["Your registration is pending approval by the site owner."] = "";
-$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."] = "";
-$a->strings["Your OpenID (optional): "] = "";
-$a->strings["Include your profile in member directory?"] = "";
-$a->strings["Note for the admin"] = "";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "";
-$a->strings["Membership on this site is by invitation only."] = "";
-$a->strings["Your invitation ID: "] = "";
-$a->strings["Registration"] = "";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
-$a->strings["Your Email Address: "] = "";
-$a->strings["New Password:"] = "New password:";
-$a->strings["Leave empty for an auto generated password."] = "";
-$a->strings["Confirm:"] = "Confirm new password:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "";
-$a->strings["Choose a nickname: "] = "";
-$a->strings["Import your profile to this friendica instance"] = "";
-$a->strings["Only logged in users are permitted to perform a search."] = "";
-$a->strings["Too Many Requests"] = "";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "";
-$a->strings["Items tagged with: %s"] = "";
-$a->strings["Account"] = "";
-$a->strings["Additional features"] = "";
 $a->strings["Display"] = "";
 $a->strings["Social Networks"] = "Social networks";
-$a->strings["Plugins"] = "";
 $a->strings["Connected apps"] = "";
-$a->strings["Export personal data"] = "";
 $a->strings["Remove account"] = "";
 $a->strings["Missing some important data!"] = "";
 $a->strings["Failed to connect with email account using the settings provided."] = "";
@@ -1438,11 +1853,10 @@ $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."] = "";
 $a->strings["Add application"] = "";
-$a->strings["Save Settings"] = "Save settings";
 $a->strings["Consumer Key"] = "";
 $a->strings["Consumer Secret"] = "";
 $a->strings["Redirect"] = "";
-$a->strings["Icon url"] = "";
+$a->strings["Icon url"] = "Icon URL";
 $a->strings["You can't edit this application."] = "";
 $a->strings["Connected Apps"] = "";
 $a->strings["Client key starts with"] = "";
@@ -1450,8 +1864,6 @@ $a->strings["No name"] = "";
 $a->strings["Remove authorization"] = "";
 $a->strings["No Plugin settings configured"] = "";
 $a->strings["Plugin Settings"] = "";
-$a->strings["Off"] = "";
-$a->strings["On"] = "";
 $a->strings["Additional Features"] = "";
 $a->strings["General Social Media Settings"] = "";
 $a->strings["Disable intelligent shortening"] = "";
@@ -1481,7 +1893,6 @@ $a->strings["Send public posts to all email contacts:"] = "";
 $a->strings["Action after import:"] = "";
 $a->strings["Move to folder"] = "Move to folder";
 $a->strings["Move to folder:"] = "Move to folder:";
-$a->strings["No special theme for mobile devices"] = "";
 $a->strings["Display Settings"] = "";
 $a->strings["Display Theme:"] = "";
 $a->strings["Mobile Theme:"] = "";
@@ -1592,417 +2003,6 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ch
 $a->strings["Relocate"] = "Recent relocation";
 $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."] = "If you have moved this profile from another server and some of your contacts don't receive your updates:";
 $a->strings["Resend relocate message to contacts"] = "";
-$a->strings["Export account"] = "";
-$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."] = "";
-$a->strings["Export all"] = "";
-$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)"] = "";
-$a->strings["Do you really want to delete this video?"] = "";
-$a->strings["Delete Video"] = "";
-$a->strings["No videos selected"] = "";
-$a->strings["Recent Videos"] = "";
-$a->strings["Upload New Videos"] = "";
-$a->strings["Friendica Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "";
-$a->strings["Could not create table."] = "";
-$a->strings["Your Friendica site database has been installed."] = "";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "";
-$a->strings["Database already in use."] = "";
-$a->strings["System check"] = "";
-$a->strings["Check again"] = "";
-$a->strings["Database connection"] = "";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "";
-$a->strings["Database Server Name"] = "";
-$a->strings["Database Login Name"] = "";
-$a->strings["Database Login Password"] = "";
-$a->strings["For security reasons the password must not be empty"] = "";
-$a->strings["Database Name"] = "";
-$a->strings["Site administrator email address"] = "";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
-$a->strings["Please select a default timezone for your website"] = "";
-$a->strings["Site settings"] = "";
-$a->strings["System Language:"] = "";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
-$a->strings["PHP executable path"] = "";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
-$a->strings["Command line PHP"] = "";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "";
-$a->strings["PHP cli binary"] = "";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "";
-$a->strings["This is required for message delivery to work."] = "";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "";
-$a->strings["Generate encryption keys"] = "";
-$a->strings["libCurl PHP module"] = "";
-$a->strings["GD graphics PHP module"] = "";
-$a->strings["OpenSSL PHP module"] = "";
-$a->strings["PDO or MySQLi PHP module"] = "";
-$a->strings["mb_string PHP module"] = "";
-$a->strings["XML PHP module"] = "";
-$a->strings["iconv module"] = "";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "";
-$a->strings["Error: libCURL PHP module required but not installed."] = "";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "";
-$a->strings["Error: openssl PHP module required but not installed."] = "";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
-$a->strings["Error: mb_string PHP module required but not installed."] = "";
-$a->strings["Error: iconv PHP module required but not installed."] = "";
-$a->strings["Error, XML PHP module required but not installed."] = "";
-$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."] = "The web installer needs to be able to create a file called \".htconfig.php\" in the top-level directory of your web server, but it is unable to do so.";
-$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."] = "This is most often a permission setting issue, as the web server may not be able to write files in your directory - even if you can.";
-$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."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top-level directory.";
-$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"] = "";
-$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."] = "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 directory.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Please ensure the user (e.g. www-data) that your web server runs as has write access to this directory.";
-$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"] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$a->strings["ImageMagick PHP extension is not installed"] = "";
-$a->strings["ImageMagick PHP extension is installed"] = "";
-$a->strings["ImageMagick supports 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."] = "";
-$a->strings["<h1>What next</h1>"] = "";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
-$a->strings["Unable to locate original post."] = "";
-$a->strings["Empty post discarded."] = "";
-$a->strings["System error. Post not saved."] = "";
-$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."] = "";
-$a->strings["Invalid request identifier."] = "";
-$a->strings["Discard"] = "";
-$a->strings["Network Notifications"] = "";
-$a->strings["Personal Notifications"] = "";
-$a->strings["Home Notifications"] = "";
-$a->strings["Show Ignored Requests"] = "Show ignored requests.";
-$a->strings["Hide Ignored Requests"] = "";
-$a->strings["Notification type: "] = "";
-$a->strings["suggested by %s"] = "";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "";
-$a->strings["Approve"] = "";
-$a->strings["Claims to be known to you: "] = "Says they know me:";
-$a->strings["yes"] = "";
-$a->strings["no"] = "";
-$a->strings["Shall your connection be bidirectional or not?"] = "Shall your connection be in both directions or not?";
-$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"] = "";
-$a->strings["Sharer"] = "";
-$a->strings["Subscriber"] = "";
-$a->strings["No introductions."] = "";
-$a->strings["Show unread"] = "";
-$a->strings["Show all"] = "";
-$a->strings["No more %s notifications."] = "";
-$a->strings["{0} wants to be your friend"] = "";
-$a->strings["{0} sent you a message"] = "";
-$a->strings["{0} requested registration"] = "";
-$a->strings["Theme settings updated."] = "";
-$a->strings["Site"] = "";
-$a->strings["Users"] = "";
-$a->strings["Themes"] = "Theme selection";
-$a->strings["DB updates"] = "";
-$a->strings["Inspect Queue"] = "";
-$a->strings["Server Blocklist"] = "";
-$a->strings["Federation Statistics"] = "";
-$a->strings["Logs"] = "";
-$a->strings["View Logs"] = "";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "";
-$a->strings["Plugin Features"] = "";
-$a->strings["diagnostics"] = "";
-$a->strings["User registrations waiting for confirmation"] = "";
-$a->strings["The blocked domain"] = "";
-$a->strings["The reason why you blocked this domain."] = "";
-$a->strings["Delete domain"] = "";
-$a->strings["Check to delete this entry from the blocklist"] = "";
-$a->strings["Administration"] = "";
-$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "";
-$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"] = "";
-$a->strings["Server Domain"] = "";
-$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
-$a->strings["Block reason"] = "";
-$a->strings["Add Entry"] = "";
-$a->strings["Save changes to the blocklist"] = "";
-$a->strings["Current Entries in the Blocklist"] = "";
-$a->strings["Delete entry from blocklist"] = "";
-$a->strings["Delete entry from blocklist?"] = "";
-$a->strings["Server added to blocklist."] = "";
-$a->strings["Site blocklist updated."] = "";
-$a->strings["unknown"] = "";
-$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 from the following platforms:"] = "";
-$a->strings["ID"] = "";
-$a->strings["Recipient Name"] = "";
-$a->strings["Recipient Profile"] = "";
-$a->strings["Created"] = "";
-$a->strings["Last Tried"] = "";
-$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 include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
-$a->strings["Normal Account"] = "Standard account";
-$a->strings["Soapbox Account"] = "Soapbox account";
-$a->strings["Community/Celebrity Account"] = "";
-$a->strings["Automatic Friend Account"] = "";
-$a->strings["Blog Account"] = "";
-$a->strings["Private Forum"] = "";
-$a->strings["Message queues"] = "";
-$a->strings["Summary"] = "";
-$a->strings["Registered users"] = "";
-$a->strings["Pending registrations"] = "";
-$a->strings["Version"] = "";
-$a->strings["Active plugins"] = "";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
-$a->strings["Site settings updated."] = "";
-$a->strings["No community page"] = "";
-$a->strings["Public postings from users of this site"] = "";
-$a->strings["Global community page"] = "";
-$a->strings["At post arrival"] = "";
-$a->strings["Users, Global Contacts"] = "";
-$a->strings["Users, Global Contacts/fallback"] = "";
-$a->strings["One month"] = "";
-$a->strings["Three months"] = "";
-$a->strings["Half a year"] = "";
-$a->strings["One year"] = "";
-$a->strings["Multi user instance"] = "";
-$a->strings["Closed"] = "";
-$a->strings["Requires approval"] = "";
-$a->strings["Open"] = "";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
-$a->strings["File upload"] = "";
-$a->strings["Policies"] = "";
-$a->strings["Auto Discovered Contact Directory"] = "";
-$a->strings["Performance"] = "";
-$a->strings["Worker"] = "";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocate - Warning, advanced function: This could make this server unreachable.";
-$a->strings["Site name"] = "";
-$a->strings["Host name"] = "";
-$a->strings["Sender Email"] = "";
-$a->strings["The email address your server shall use to send notification emails from."] = "";
-$a->strings["Banner/Logo"] = "";
-$a->strings["Shortcut icon"] = "";
-$a->strings["Link to an icon that will be used for browsers."] = "";
-$a->strings["Touch icon"] = "";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
-$a->strings["Additional Info"] = "";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
-$a->strings["System language"] = "";
-$a->strings["System theme"] = "";
-$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"] = "";
-$a->strings["Theme for mobile devices"] = "";
-$a->strings["SSL link policy"] = "";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "";
-$a->strings["Force SSL"] = "";
-$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"] = "";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "";
-$a->strings["Maximum image size"] = "";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Maximum image length"] = "";
-$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"] = "";
-$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"] = "";
-$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"] = "";
-$a->strings["Will be displayed prominently on the registration page."] = "";
-$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"] = "";
-$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"] = "";
-$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["Block public"] = "";
-$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"] = "";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "";
-$a->strings["Allow infinite level threading for items on this site."] = "";
-$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"] = "";
-$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"] = "";
-$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"] = "";
-$a->strings["OpenID support for registration and logins."] = "";
-$a->strings["Fullname check"] = "";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
-$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"] = "";
-$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["OStatus conversation completion interval"] = "";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "";
-$a->strings["Only import OStatus threads from our contacts"] = "";
-$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."] = "";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
-$a->strings["Enable Diaspora support"] = "";
-$a->strings["Provide built-in Diaspora network compatibility."] = "";
-$a->strings["Only allow Friendica contacts"] = "";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
-$a->strings["Verify 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"] = "";
-$a->strings["Proxy URL"] = "";
-$a->strings["Network timeout"] = "";
-$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 poller. 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'."] = "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 recommend 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"] = "";
-$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"] = "";
-$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["Suppress Tags"] = "";
-$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"] = "";
-$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 DFRN contacts of all users."] = "";
-$a->strings["RINO Encryption"] = "";
-$a->strings["Encryption layer between nodes."] = "";
-$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 poller calls in your crontab."] = "";
-$a->strings["Enable 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 (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Database structure update %s was successfully applied."] = "";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "";
-$a->strings["Executing %s failed with error: %s"] = "";
-$a->strings["Update %s was successfully applied."] = "";
-$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."] = "";
-$a->strings["Check database structure"] = "";
-$a->strings["Failed Updates"] = "";
-$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\tThank you and welcome to %4\$s."] = "";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "",
-       1 => "",
-);
-$a->strings["User '%s' deleted"] = "";
-$a->strings["User '%s' unblocked"] = "";
-$a->strings["User '%s' blocked"] = "";
-$a->strings["Register date"] = "";
-$a->strings["Last login"] = "";
-$a->strings["Last item"] = "";
-$a->strings["Add User"] = "";
-$a->strings["select all"] = "";
-$a->strings["User registrations waiting for confirm"] = "";
-$a->strings["User waiting for permanent deletion"] = "";
-$a->strings["Request date"] = "";
-$a->strings["No registrations."] = "";
-$a->strings["Note from the user"] = "";
-$a->strings["Deny"] = "";
-$a->strings["Site admin"] = "";
-$a->strings["Account expired"] = "";
-$a->strings["New User"] = "";
-$a->strings["Deleted since"] = "";
-$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."] = "";
-$a->strings["Nickname"] = "";
-$a->strings["Nickname of the new user."] = "";
-$a->strings["Email address of the new user."] = "";
-$a->strings["Plugin %s disabled."] = "";
-$a->strings["Plugin %s enabled."] = "";
-$a->strings["Disable"] = "";
-$a->strings["Enable"] = "";
-$a->strings["Toggle"] = "";
-$a->strings["Author: "] = "";
-$a->strings["Maintainer: "] = "";
-$a->strings["Reload active plugins"] = "";
-$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
-$a->strings["No themes found."] = "";
-$a->strings["Screenshot"] = "";
-$a->strings["Reload active themes"] = "";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
-$a->strings["[Experimental]"] = "";
-$a->strings["[Unsupported]"] = "";
-$a->strings["Log settings updated."] = "";
-$a->strings["PHP log currently enabled."] = "";
-$a->strings["PHP log currently disabled."] = "";
-$a->strings["Clear"] = "";
-$a->strings["Enable Debugging"] = "";
-$a->strings["Log file"] = "";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
-$a->strings["Log level"] = "";
-$a->strings["PHP logging"] = "";
-$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["Lock feature %s"] = "";
-$a->strings["Manage Additional Features"] = "";
 $a->strings["via"] = "";
 $a->strings["greenzero"] = "";
 $a->strings["purplezero"] = "";
@@ -2011,16 +2011,6 @@ $a->strings["darkzero"] = "";
 $a->strings["comix"] = "";
 $a->strings["slackr"] = "";
 $a->strings["Variations"] = "";
-$a->strings["Default"] = "";
-$a->strings["Note: "] = "";
-$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
-$a->strings["Select scheme"] = "";
-$a->strings["Navigation bar background color"] = "";
-$a->strings["Navigation bar icon color "] = "";
-$a->strings["Link color"] = "";
-$a->strings["Set the background color"] = "";
-$a->strings["Content background transparency"] = "";
-$a->strings["Set the background image"] = "";
 $a->strings["Repeat the image"] = "";
 $a->strings["Will repeat your image to fill the background."] = "";
 $a->strings["Stretch"] = "";
@@ -2029,12 +2019,22 @@ $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"] = "";
+$a->strings["Note: "] = "";
+$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
+$a->strings["Select scheme"] = "";
+$a->strings["Navigation bar background color"] = "Navigation bar background colour";
+$a->strings["Navigation bar icon color "] = "Navigation bar icon colour ";
+$a->strings["Link color"] = "Link colour";
+$a->strings["Set the background color"] = "Set the background colour";
+$a->strings["Content background transparency"] = "";
+$a->strings["Set the background image"] = "";
 $a->strings["Guest"] = "";
 $a->strings["Visitor"] = "";
 $a->strings["Alignment"] = "";
 $a->strings["Left"] = "";
-$a->strings["Center"] = "";
-$a->strings["Color scheme"] = "";
+$a->strings["Center"] = "Centre";
+$a->strings["Color scheme"] = "Colour scheme";
 $a->strings["Posts font size"] = "";
 $a->strings["Textareas font size"] = "";
 $a->strings["Comma separated list of helper forums"] = "";
@@ -2047,9 +2047,9 @@ $a->strings["Find Friends"] = "";
 $a->strings["Last users"] = "";
 $a->strings["Local Directory"] = "";
 $a->strings["Quick Start"] = "";
-$a->strings["toggle mobile"] = "";
 $a->strings["Delete this item?"] = "Delete this item?";
 $a->strings["show fewer"] = "Show fewer.";
+$a->strings["toggle mobile"] = "";
 $a->strings["Update %s failed. See error logs."] = "Update %s failed. See error logs.";
 $a->strings["Create a New Account"] = "Create a new account";
 $a->strings["Password: "] = "Password: ";
index 2dfb52fc929830333a9027f32a09b6a071b9bcc1..828cb58d7f913444a3981c802a16e92819dc8386 100644 (file)
@@ -12,7 +12,7 @@
 # Calango Jr <jcsojr@gmail.com>, 2014
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011-2013
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011
-# Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011-2013
+# Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011-2013,2017
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2012
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011
 # FULL NAME <EMAIL@ADDRESS>, 2011
@@ -24,9 +24,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-08-09 18:10+0200\n"
-"PO-Revision-Date: 2016-09-18 20:53+0000\n"
-"Last-Translator: André Alves <and2099@riseup.net>\n"
+"POT-Creation-Date: 2017-05-03 07:08+0200\n"
+"PO-Revision-Date: 2017-05-19 17:42+0000\n"
+"Last-Translator: Frederico Gonçalves Guimarães <frederico@teia.bio.br>\n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/Friendica/friendica/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,720 +34,439 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:698
-msgid "Miscellaneous"
-msgstr "Miscelânea"
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
+#: view/theme/vier/theme.php:254
+msgid "Forums"
+msgstr "Fóruns"
 
-#: include/datetime.php:183 include/identity.php:627
-msgid "Birthday:"
-msgstr "Aniversário:"
+#: include/ForumManager.php:116 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Link externo para fórum"
 
-#: include/datetime.php:185 mod/profiles.php:721
-msgid "Age: "
-msgstr "Idade: "
+#: include/ForumManager.php:119 include/contact_widgets.php:269
+#: include/items.php:2450 mod/content.php:624 object/Item.php:420
+#: view/theme/vier/theme.php:259 boot.php:1000
+msgid "show more"
+msgstr "exibir mais"
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "AAAA-MM-DD ou MM-DD"
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "Sistema"
 
-#: include/datetime.php:341
-msgid "never"
-msgstr "nunca"
+#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517
+#: view/theme/frio/theme.php:253
+msgid "Network"
+msgstr "Rede"
 
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "menos de um segundo atrás"
+#: include/NotificationsManager.php:167 mod/network.php:832
+#: mod/profiles.php:696
+msgid "Personal"
+msgstr "Pessoal"
 
-#: include/datetime.php:357
-msgid "year"
-msgstr "ano"
+#: include/NotificationsManager.php:174 include/nav.php:105
+#: include/nav.php:161
+msgid "Home"
+msgstr "Pessoal"
 
-#: include/datetime.php:357
-msgid "years"
-msgstr "anos"
+#: include/NotificationsManager.php:181 include/nav.php:166
+msgid "Introductions"
+msgstr "Apresentações"
 
-#: include/datetime.php:358 include/event.php:480 mod/cal.php:287
-#: mod/events.php:389
-msgid "month"
-msgstr "s"
+#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s comentou a publicação de %s"
 
-#: include/datetime.php:358
-msgid "months"
-msgstr "meses"
+#: include/NotificationsManager.php:250
+#, php-format
+msgid "%s created a new post"
+msgstr "%s criou uma nova publicação"
 
-#: include/datetime.php:359 include/event.php:481 mod/cal.php:288
-#: mod/events.php:390
-msgid "week"
-msgstr "semana"
+#: include/NotificationsManager.php:265
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s gostou da publicação de %s"
 
-#: include/datetime.php:359
-msgid "weeks"
-msgstr "semanas"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s desgostou da publicação de %s"
 
-#: include/datetime.php:360 include/event.php:482 mod/cal.php:289
-#: mod/events.php:391
-msgid "day"
-msgstr "dia"
+#: include/NotificationsManager.php:291
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s comparecerá ao evento de %s"
 
-#: include/datetime.php:360
-msgid "days"
-msgstr "dias"
+#: include/NotificationsManager.php:304
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s não comparecerá ao evento de %s"
 
-#: include/datetime.php:361
-msgid "hour"
-msgstr "hora"
+#: include/NotificationsManager.php:317
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s talvez compareça ao evento de %s"
 
-#: include/datetime.php:361
-msgid "hours"
-msgstr "horas"
+#: include/NotificationsManager.php:334
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s agora é amigo de %s"
 
-#: include/datetime.php:362
-msgid "minute"
-msgstr "minuto"
+#: include/NotificationsManager.php:770
+msgid "Friend Suggestion"
+msgstr "Sugestão de amizade"
 
-#: include/datetime.php:362
-msgid "minutes"
-msgstr "minutos"
+#: include/NotificationsManager.php:803
+msgid "Friend/Connect Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: include/datetime.php:363
-msgid "second"
-msgstr "segundo"
+#: include/NotificationsManager.php:803
+msgid "New Follower"
+msgstr "Novo acompanhante"
 
-#: include/datetime.php:363
-msgid "seconds"
-msgstr "segundos"
+#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
+#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
+#: mod/item.php:467
+msgid "Wall Photos"
+msgstr "Fotos do mural"
+
+#: include/delivery.php:427
+msgid "(no subject)"
+msgstr "(sem assunto)"
+
+#: include/delivery.php:439 include/enotify.php:43
+msgid "noreply"
+msgstr "naoresponda"
 
-#: include/datetime.php:372
+#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s atrás"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s gosta de %3$s de %2$s"
 
-#: include/datetime.php:578
+#: include/like.php:31 include/like.php:36 include/conversation.php:156
 #, php-format
-msgid "%s's birthday"
-msgstr "aniversário de %s"
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s não gosta de %3$s de %2$s"
 
-#: include/datetime.php:579 include/dfrn.php:1111
+#: include/like.php:41
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Feliz aniversário, %s"
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s vai a %3$s de %2$s"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Adicionar Contato Novo"
+#: include/like.php:46
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s não vai a %3$s de %2$s"
 
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Forneça endereço ou localização web"
+#: include/like.php:51
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s está pensando em ir a %3$s de %2$s"
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
+#: include/like.php:178 include/conversation.php:141
+#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "photo"
+msgstr "foto"
 
-#: include/contact_widgets.php:10 include/identity.php:212 mod/match.php:87
-#: mod/allfriends.php:82 mod/suggest.php:101 mod/dirfind.php:201
-msgid "Connect"
-msgstr "Conectar"
+#: include/like.php:178 include/conversation.php:136
+#: include/conversation.php:146 include/conversation.php:288
+#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "status"
+msgstr "status"
 
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d convite disponível"
-msgstr[1] "%d convites disponíveis"
+#: include/like.php:180 include/conversation.php:133
+#: include/conversation.php:285 include/text.php:1870
+msgid "event"
+msgstr "evento"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Pesquisar por pessoas"
+#: include/message.php:15 include/message.php:169
+msgid "[no subject]"
+msgstr "[sem assunto]"
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Fornecer nome ou interesse"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
+msgstr "Nada de novo aqui"
 
-#: include/contact_widgets.php:32 include/conversation.php:978
-#: include/Contact.php:324 mod/match.php:72 mod/allfriends.php:66
-#: mod/follow.php:103 mod/suggest.php:83 mod/contacts.php:602
-#: mod/dirfind.php:204
-msgid "Connect/Follow"
-msgstr "Conectar-se/acompanhar"
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
+msgstr "Descartar notificações"
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examplos: Robert Morgenstein, Fishing"
+#: include/nav.php:40 include/text.php:1083
+msgid "@name, !forum, #tags, content"
+msgstr ""
 
-#: include/contact_widgets.php:34 mod/directory.php:212 mod/contacts.php:796
-msgid "Find"
-msgstr "Pesquisar"
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
+msgid "Logout"
+msgstr "Sair"
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Sugestões de amigos"
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
+msgstr "Terminar esta sessão"
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-#: view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Interesses Parecidos"
+#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645
+#: mod/contacts.php:841 view/theme/frio/theme.php:246
+msgid "Status"
+msgstr "Status"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Perfil Randômico"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
+msgstr "Suas publicações e conversas"
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-#: view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Convidar amigos"
+#: include/nav.php:82 include/identity.php:622 include/identity.php:744
+#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849
+#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
+msgid "Profile"
+msgstr "Perfil "
 
-#: include/contact_widgets.php:108
-msgid "Networks"
-msgstr "Redes"
+#: include/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
+msgstr "Sua página de perfil"
 
-#: include/contact_widgets.php:111
-msgid "All Networks"
-msgstr "Todas as redes"
+#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31
+#: view/theme/frio/theme.php:248
+msgid "Photos"
+msgstr "Fotos"
 
-#: include/contact_widgets.php:141 include/features.php:103
-msgid "Saved Folders"
-msgstr "Pastas salvas"
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
+msgstr "Suas fotos"
 
-#: include/contact_widgets.php:144 include/contact_widgets.php:176
-msgid "Everything"
-msgstr "Tudo"
+#: include/nav.php:84 include/identity.php:793 include/identity.php:796
+#: view/theme/frio/theme.php:249
+msgid "Videos"
+msgstr "Vídeos"
 
-#: include/contact_widgets.php:173
-msgid "Categories"
-msgstr "Categorias"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
+msgstr "Seus vídeos"
 
-#: include/contact_widgets.php:237
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contato em comum"
-msgstr[1] "%d contatos em comum"
+#: include/nav.php:85 include/nav.php:149 include/identity.php:805
+#: include/identity.php:816 mod/cal.php:270 mod/events.php:374
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
+msgstr "Eventos"
 
-#: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2122 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:903
-msgid "show more"
-msgstr "exibir mais"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
+msgstr "Seus eventos"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Notificação Friendica"
+#: include/nav.php:86
+msgid "Personal notes"
+msgstr "Suas anotações pessoais"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Obrigado,"
+#: include/nav.php:86
+msgid "Your personal notes"
+msgstr "Suas anotações pessoais"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrador"
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
+msgid "Login"
+msgstr "Entrar"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrador"
+#: include/nav.php:95
+msgid "Sign in"
+msgstr "Entrar"
 
-#: include/enotify.php:43 include/delivery.php:450
-msgid "noreply"
-msgstr "naoresponda"
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Página pessoal"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/nav.php:109 mod/register.php:289 boot.php:1844
+msgid "Register"
+msgstr "Registrar"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Criar uma conta"
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297
+msgid "Help"
+msgstr "Ajuda"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s lhe enviou %2$s."
+#: include/nav.php:115
+msgid "Help and documentation"
+msgstr "Ajuda e documentação"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "uma mensagem privada"
+#: include/nav.php:119
+msgid "Apps"
+msgstr "Aplicativos"
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
+msgstr "Complementos, utilitários, jogos"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
+#: include/nav.php:123 include/text.php:1080 mod/search.php:149
+msgid "Search"
+msgstr "Pesquisar"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
+#: include/nav.php:123
+msgid "Search site content"
+msgstr "Pesquisar conteúdo no site"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
+#: include/nav.php:126 include/text.php:1088
+msgid "Full Text"
+msgstr ""
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
+#: include/nav.php:127 include/text.php:1089
+msgid "Tags"
+msgstr ""
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s comentou um item/conversa que você está seguindo."
+#: include/nav.php:128 include/nav.php:192 include/identity.php:838
+#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
+#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
+msgid "Contacts"
+msgstr "Contatos"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Favor visitar %s para ver e/ou responder à conversa."
+#: include/nav.php:143 include/nav.php:145 mod/community.php:32
+msgid "Community"
+msgstr "Comunidade"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
+#: include/nav.php:143
+msgid "Conversations on this site"
+msgstr "Conversas neste site"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s publicou no mural do seu perfil em %2$s"
+#: include/nav.php:145
+msgid "Conversations on the network"
+msgstr "Conversas na rede"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
+#: include/nav.php:149 include/identity.php:808 include/identity.php:819
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
+msgstr "Eventos e Agenda"
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s etiquetou você"
+#: include/nav.php:152
+msgid "Directory"
+msgstr "Diretório"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s etiquetou você em %2$s"
+#: include/nav.php:152
+msgid "People directory"
+msgstr "Diretório de pessoas"
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]etiquetou você[/url]."
+#: include/nav.php:154
+msgid "Information"
+msgstr "Informação"
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
+#: include/nav.php:154
+msgid "Information about this friendica instance"
+msgstr "Informação sobre esta instância do friendica"
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s compartilhou uma nova publicação em %2$s"
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
+msgstr "Conversas dos seus amigos"
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
+#: include/nav.php:159
+msgid "Network Reset"
+msgstr "Reiniciar Rede"
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s cutucou você"
+#: include/nav.php:159
+msgid "Load Network page with no filters"
+msgstr "Carregar página Rede sem filtros"
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s cutucou você em %2$s"
+#: include/nav.php:166
+msgid "Friend Requests"
+msgstr "Requisições de Amizade"
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]cutucou você[/url]."
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
+msgstr "Notificações"
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s etiquetou sua publicação"
+#: include/nav.php:170
+msgid "See all notifications"
+msgstr "Ver todas notificações"
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s etiquetou sua publicação em %2$s"
+#: include/nav.php:171 mod/settings.php:906
+msgid "Mark as seen"
+msgstr "Marcar como visto"
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas as notificações de sistema como vistas"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Você recebeu uma apresentação"
+#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
+msgid "Messages"
+msgstr "Mensagens"
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
+msgstr "Mensagem privada"
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
+#: include/nav.php:176
+msgid "Inbox"
+msgstr "Recebidas"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Você pode visitar o perfil deles em %s"
+#: include/nav.php:177
+msgid "Outbox"
+msgstr "Enviadas"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
+msgstr "Nova mensagem"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"
+#: include/nav.php:181
+msgid "Manage"
+msgstr "Gerenciar"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s está compartilhando com você via %2$s"
+#: include/nav.php:181
+msgid "Manage other pages"
+msgstr "Gerenciar outras páginas"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notificação] Você tem um novo seguidor"
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
+msgstr "Delegações"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Você tem um novo seguidor em %2$s : %1$s"
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegar Administração de Página"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
+msgid "Settings"
+msgstr "Configurações"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
+msgstr "Configurações da conta"
 
-#: include/enotify.php:288
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
+#: include/nav.php:189 include/identity.php:290
+msgid "Profiles"
+msgstr "Perfis"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Nome:"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
+msgstr "Administrar/Editar Perfis"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto:"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
+msgstr "Gerenciar/editar amigos e contatos"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
+#: include/nav.php:197 mod/admin.php:196
+msgid "Admin"
+msgstr "Admin"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notificação] Conexão aceita"
+#: include/nav.php:197
+msgid "Site setup and configuration"
+msgstr "Configurações do site"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' aceitou o seu pedido de conexão no %2$s"
+#: include/nav.php:200
+msgid "Navigation"
+msgstr "Navegação"
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s Foi aceita [url=%1$s] a conexão solicitada[/url]."
+#: include/nav.php:200
+msgid "Site map"
+msgstr "Mapa do Site"
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente."
-
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr ""
-
-#: include/enotify.php:326
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."
-
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr ""
-
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."
-
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica: Notificação do Sistema] solicitação de cadastro"
-
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Você recebeu um pedido de cadastro de '%1$s' em %2$s"
-
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Você recebeu uma [url=%1$s]solicitação de cadastro[/url] de %2$s."
-
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s)"
-
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação."
-
-#: include/ForumManager.php:114 include/nav.php:130 include/text.php:1007
-#: view/theme/vier/theme.php:255
-msgid "Forums"
-msgstr "Fóruns"
-
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
-msgstr "Link externo para fórum"
-
-#: include/event.php:16 include/bb2diaspora.php:148 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ H:i"
-
-#: include/event.php:33 include/event.php:51 include/bb2diaspora.php:154
-msgid "Starts:"
-msgstr "Início:"
-
-#: include/event.php:36 include/event.php:57 include/bb2diaspora.php:162
-msgid "Finishes:"
-msgstr "Término:"
-
-#: include/event.php:39 include/event.php:63 include/bb2diaspora.php:170
-#: include/identity.php:329 mod/directory.php:145 mod/contacts.php:628
-#: mod/events.php:495 mod/notifications.php:232
-msgid "Location:"
-msgstr "Localização:"
-
-#: include/event.php:441
-msgid "Sun"
-msgstr "Dom"
-
-#: include/event.php:442
-msgid "Mon"
-msgstr "Seg"
-
-#: include/event.php:443
-msgid "Tue"
-msgstr "Ter"
-
-#: include/event.php:444
-msgid "Wed"
-msgstr "Qua"
-
-#: include/event.php:445
-msgid "Thu"
-msgstr "Qui"
-
-#: include/event.php:446
-msgid "Fri"
-msgstr "Sex"
-
-#: include/event.php:447
-msgid "Sat"
-msgstr "Sáb"
-
-#: include/event.php:448 include/text.php:1112 mod/settings.php:955
-msgid "Sunday"
-msgstr "Domingo"
-
-#: include/event.php:449 include/text.php:1112 mod/settings.php:955
-msgid "Monday"
-msgstr "Segunda"
-
-#: include/event.php:450 include/text.php:1112
-msgid "Tuesday"
-msgstr "Terça"
-
-#: include/event.php:451 include/text.php:1112
-msgid "Wednesday"
-msgstr "Quarta"
-
-#: include/event.php:452 include/text.php:1112
-msgid "Thursday"
-msgstr "Quinta"
-
-#: include/event.php:453 include/text.php:1112
-msgid "Friday"
-msgstr "Sexta"
-
-#: include/event.php:454 include/text.php:1112
-msgid "Saturday"
-msgstr "Sábado"
-
-#: include/event.php:455
-msgid "Jan"
-msgstr "Jan"
-
-#: include/event.php:456
-msgid "Feb"
-msgstr "Fev"
-
-#: include/event.php:457
-msgid "Mar"
-msgstr "Mar"
-
-#: include/event.php:458
-msgid "Apr"
-msgstr "Abr"
-
-#: include/event.php:459 include/event.php:471 include/text.php:1116
-msgid "May"
-msgstr "Maio"
-
-#: include/event.php:460
-msgid "Jun"
-msgstr "Jun"
-
-#: include/event.php:461
-msgid "Jul"
-msgstr "Jul"
-
-#: include/event.php:462
-msgid "Aug"
-msgstr "Ago"
-
-#: include/event.php:463
-msgid "Sept"
-msgstr "Set"
-
-#: include/event.php:464
-msgid "Oct"
-msgstr "Out"
-
-#: include/event.php:465
-msgid "Nov"
-msgstr "Nov"
-
-#: include/event.php:466
-msgid "Dec"
-msgstr "Dez"
-
-#: include/event.php:467 include/text.php:1116
-msgid "January"
-msgstr "Janeiro"
-
-#: include/event.php:468 include/text.php:1116
-msgid "February"
-msgstr "Fevereiro"
-
-#: include/event.php:469 include/text.php:1116
-msgid "March"
-msgstr "Março"
-
-#: include/event.php:470 include/text.php:1116
-msgid "April"
-msgstr "Abril"
-
-#: include/event.php:472 include/text.php:1116
-msgid "June"
-msgstr "Junho"
-
-#: include/event.php:473 include/text.php:1116
-msgid "July"
-msgstr "Julho"
-
-#: include/event.php:474 include/text.php:1116
-msgid "August"
-msgstr "Agosto"
-
-#: include/event.php:475 include/text.php:1116
-msgid "September"
-msgstr "Setembro"
-
-#: include/event.php:476 include/text.php:1116
-msgid "October"
-msgstr "Outubro"
-
-#: include/event.php:477 include/text.php:1116
-msgid "November"
-msgstr "Novembro"
-
-#: include/event.php:478 include/text.php:1116
-msgid "December"
-msgstr "Dezembro"
-
-#: include/event.php:479 mod/cal.php:286 mod/events.php:388
-msgid "today"
-msgstr "hoje"
-
-#: include/event.php:567
-msgid "l, F j"
-msgstr "l, F j"
-
-#: include/event.php:586
-msgid "Edit event"
-msgstr "Editar o evento"
-
-#: include/event.php:608 include/text.php:1518 include/text.php:1525
-msgid "link to source"
-msgstr "exibir a origem"
-
-#: include/event.php:843
-msgid "Export"
-msgstr "Exportar"
-
-#: include/event.php:844
-msgid "Export calendar as ical"
-msgstr "Exportar a agenda como iCal"
-
-#: include/event.php:845
-msgid "Export calendar as csv"
-msgstr "Exportar a agenda como CSV"
-
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Bem-vindo(a) "
-
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Por favor, envie uma foto para o perfil."
+#: include/plugin.php:530 include/plugin.php:532
+msgid "Click here to upgrade."
+msgstr "Clique aqui para atualização (upgrade)."
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Bem-vindo(a) de volta "
+#: include/plugin.php:538
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
 
-#: include/security.php:375
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
+#: include/plugin.php:543
+msgid "This action is not available under your subscription plan."
+msgstr "Essa ação não está disponível em seu plano de assinatura."
 
 #: include/profile_selectors.php:6
 msgid "Male"
@@ -801,7 +520,7 @@ msgstr "Não específico"
 msgid "Other"
 msgstr "Outro"
 
-#: include/profile_selectors.php:6 include/conversation.php:1477
+#: include/profile_selectors.php:6 include/conversation.php:1547
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] ""
@@ -895,7 +614,7 @@ msgstr "Infiel"
 msgid "Sex Addict"
 msgstr "Viciado(a) em sexo"
 
-#: include/profile_selectors.php:42 include/user.php:299 include/user.php:303
+#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267
 msgid "Friends"
 msgstr "Amigos"
 
@@ -983,1791 +702,2228 @@ msgstr "Não importa"
 msgid "Ask me"
 msgstr "Pergunte-me"
 
-#: include/oembed.php:229
-msgid "Embedded content"
-msgstr "Conteúdo incorporado"
+#: include/security.php:61
+msgid "Welcome "
+msgstr "Bem-vindo(a) "
 
-#: include/oembed.php:238
-msgid "Embedding disabled"
-msgstr "A incorporação está desabilitada"
+#: include/security.php:62
+msgid "Please upload a profile photo."
+msgstr "Por favor, envie uma foto para o perfil."
 
-#: include/bbcode.php:349 include/bbcode.php:1054 include/bbcode.php:1055
-msgid "Image/photo"
-msgstr "Imagem/foto"
+#: include/security.php:65
+msgid "Welcome back "
+msgstr "Bem-vindo(a) de volta "
 
-#: include/bbcode.php:466
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/security.php:429
+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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
 
-#: include/bbcode.php:1014 include/bbcode.php:1034
-msgid "$1 wrote:"
-msgstr "$1 escreveu:"
+#: include/uimport.php:91
+msgid "Error decoding account file"
+msgstr "Erro ao decodificar arquivo de conta"
 
-#: include/bbcode.php:1063 include/bbcode.php:1064
-msgid "Encrypted content"
-msgstr "Conteúdo criptografado"
+#: include/uimport.php:97
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
 
-#: include/dba_pdo.php:72 include/dba.php:56
+#: include/uimport.php:113 include/uimport.php:124
+msgid "Error! Cannot check nickname"
+msgstr "Erro! Não consigo conferir o apelido (nickname)"
+
+#: include/uimport.php:117 include/uimport.php:128
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' já existe nesse servidor!"
 
-#: include/auth.php:45
-msgid "Logged out."
-msgstr "Saiu."
+#: include/uimport.php:150
+msgid "User creation error"
+msgstr "Erro na criação do usuário"
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
-msgid "Login failed."
-msgstr "Não foi possível autenticar."
+#: include/uimport.php:170
+msgid "User profile creation error"
+msgstr "Erro na criação do perfil do Usuário"
 
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
+#: include/uimport.php:219
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contato não foi importado"
+msgstr[1] "%d contatos não foram importados"
 
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
-msgstr "A mensagem de erro foi:"
+#: include/uimport.php:289
+msgid "Done. You can now login with your username and password"
+msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha."
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453
+#: include/conversation.php:1004 include/conversation.php:1020
+#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73
+#: mod/suggest.php:82 mod/dirfind.php:209
+msgid "View Profile"
+msgstr "Ver Perfil"
 
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
-msgstr "Grupo de privacidade padrão para novos contatos"
+#: include/Contact.php:409 include/contact_widgets.php:32
+#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610
+#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106
+msgid "Connect/Follow"
+msgstr "Conectar-se/acompanhar"
 
-#: include/group.php:242
-msgid "Everybody"
-msgstr "Todos"
+#: include/Contact.php:452 include/conversation.php:1003
+msgid "View Status"
+msgstr "Ver Status"
 
-#: include/group.php:265
-msgid "edit"
-msgstr "editar"
+#: include/Contact.php:454 include/conversation.php:1005
+msgid "View Photos"
+msgstr "Ver Fotos"
 
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
-msgstr "Grupos"
+#: include/Contact.php:455 include/conversation.php:1006
+msgid "Network Posts"
+msgstr "Publicações da Rede"
 
-#: include/group.php:288
-msgid "Edit groups"
-msgstr "Editar grupos"
+#: include/Contact.php:456 include/conversation.php:1007
+msgid "View Contact"
+msgstr ""
 
-#: include/group.php:290
-msgid "Edit group"
-msgstr "Editar grupo"
+#: include/Contact.php:457
+msgid "Drop Contact"
+msgstr "Excluir o contato"
 
-#: include/group.php:291
-msgid "Create a new group"
-msgstr "Criar um novo grupo"
+#: include/Contact.php:458 include/conversation.php:1008
+msgid "Send PM"
+msgstr "Enviar MP"
 
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
-msgstr "Nome do grupo: "
+#: include/Contact.php:459 include/conversation.php:1012
+msgid "Poke"
+msgstr "Cutucar"
 
-#: include/group.php:294
-msgid "Contacts not in any group"
-msgstr "Contatos não estão dentro de nenhum grupo"
+#: include/Contact.php:840
+msgid "Organisation"
+msgstr ""
 
-#: include/group.php:296 mod/network.php:201
-msgid "add"
-msgstr "adicionar"
+#: include/Contact.php:843
+msgid "News"
+msgstr ""
 
-#: include/Photo.php:996 include/Photo.php:1011 include/Photo.php:1018
-#: include/Photo.php:1040 include/message.php:145 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:472
-msgid "Wall Photos"
-msgstr "Fotos do mural"
+#: include/Contact.php:846
+msgid "Forum"
+msgstr "Fórum"
 
-#: include/delivery.php:439
-msgid "(no subject)"
-msgstr "(sem assunto)"
+#: include/acl_selectors.php:353
+msgid "Post to Email"
+msgstr "Enviar por e-mail"
 
-#: include/user.php:39 mod/settings.php:370
-msgid "Passwords do not match. Password unchanged."
-msgstr "As senhas não correspondem. A senha não foi modificada."
+#: include/acl_selectors.php:358
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
 
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "É necessário um convite."
+#: include/acl_selectors.php:359 mod/settings.php:1188
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Não foi possível verificar o convite."
+#: include/acl_selectors.php:365
+msgid "Visible to everybody"
+msgstr "Visível para todos"
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "A URL do OpenID é inválida"
+#: include/acl_selectors.php:366 view/theme/vier/config.php:108
+msgid "show"
+msgstr "exibir"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Por favor, forneça a informação solicitada."
+#: include/acl_selectors.php:367 view/theme/vier/config.php:108
+msgid "don't show"
+msgstr "não exibir"
 
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Por favor, use um nome mais curto."
+#: include/acl_selectors.php:373 mod/editpost.php:123
+msgid "CC: email addresses"
+msgstr "CC: endereço de e-mail"
 
-#: include/user.php:98
-msgid "Name too short."
-msgstr "O nome é muito curto."
+#: include/acl_selectors.php:374 mod/editpost.php:130
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
+#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196
+#: mod/photos.php:1593
+msgid "Permissions"
+msgstr "Permissões"
 
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
+#: include/acl_selectors.php:377
+msgid "Close"
+msgstr "Fechar"
 
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Não é um endereço de e-mail válido."
+#: include/api.php:1089
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."
 
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Não é possível usar esse e-mail."
+#: include/api.php:1110
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."
 
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr ""
+#: include/api.php:1131
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."
 
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+#: include/auth.php:51
+msgid "Logged out."
+msgstr "Saiu."
 
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+#: include/auth.php:122 include/auth.php:184 mod/openid.php:110
+msgid "Login failed."
+msgstr "Não foi possível autenticar."
 
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+#: include/auth.php:138 include/user.php:75
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
 
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+#: include/auth.php:138 include/user.php:75
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
 
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "padrão"
+#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ H:i"
 
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54
+#: include/event.php:525
+msgid "Starts:"
+msgstr "Início:"
 
-#: include/user.php:345 include/user.php:352 include/user.php:359
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:79 mod/photos.php:193
-#: mod/photos.php:770 mod/photos.php:1233 mod/photos.php:1256
-#: mod/photos.php:1849 view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Fotos do perfil"
+#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60
+#: include/event.php:526
+msgid "Finishes:"
+msgstr "Término:"
 
-#: include/user.php:387
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tCaro %1$s,\n\t\t\tObrigado por se cadastrar em %2$s. Sua conta foi criada.\n\t"
+#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
+#: include/event.php:527 include/identity.php:336 mod/contacts.php:636
+#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
+msgid "Location:"
+msgstr "Localização:"
 
-#: include/user.php:391
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3$s\n\t\t\tNome de Login:\t%1$s\n\t\t\tSenha:\t%5$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2$s."
+#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133
+msgid "Image/photo"
+msgstr "Imagem/foto"
 
-#: include/user.php:423 mod/admin.php:1181
+#: include/bbcode.php:497
 #, php-format
-msgid "Registration details for %s"
-msgstr "Detalhes do registro de %s"
-
-#: include/features.php:63
-msgid "General Features"
-msgstr "Funcionalidades Gerais"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/features.php:65
-msgid "Multiple Profiles"
-msgstr "Perfis Múltiplos"
+#: include/bbcode.php:1089 include/bbcode.php:1111
+msgid "$1 wrote:"
+msgstr "$1 escreveu:"
 
-#: include/features.php:65
-msgid "Ability to create multiple profiles"
-msgstr "Capacidade de criar perfis múltiplos"
+#: include/bbcode.php:1141 include/bbcode.php:1142
+msgid "Encrypted content"
+msgstr "Conteúdo criptografado"
 
-#: include/features.php:66
-msgid "Photo Location"
+#: include/bbcode.php:1257
+msgid "Invalid source protocol"
 msgstr ""
 
-#: include/features.php:66
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
+#: include/bbcode.php:1267
+msgid "Invalid link protocol"
 msgstr ""
 
-#: include/features.php:67
-msgid "Export Public Calendar"
-msgstr "Exportar a agenda pública"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Desconhecido | Não categorizado"
 
-#: include/features.php:67
-msgid "Ability for visitors to download the public calendar"
-msgstr "Visitantes podem baixar a agenda pública"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquear imediatamente"
 
-#: include/features.php:72
-msgid "Post Composition Features"
-msgstr "Funcionalidades de Composição de Publicações"
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Dissimulado, spammer, propagandista"
 
-#: include/features.php:73
-msgid "Richtext Editor"
-msgstr "Editor Richtext"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
 
-#: include/features.php:73
-msgid "Enable richtext editor"
-msgstr "Habilite editor richtext"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "Ok, provavelmente inofensivo"
 
-#: include/features.php:74
-msgid "Post Preview"
-msgstr "Pré-visualização da Publicação"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Boa reputação, tem minha confiança"
 
-#: include/features.php:74
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
+#: include/contact_selectors.php:56 mod/admin.php:980
+msgid "Frequently"
+msgstr "Frequentemente"
 
-#: include/features.php:75
-msgid "Auto-mention Forums"
-msgstr "Auto-menção Fóruns"
+#: include/contact_selectors.php:57 mod/admin.php:981
+msgid "Hourly"
+msgstr "De hora em hora"
 
-#: include/features.php:75
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
+#: include/contact_selectors.php:58 mod/admin.php:982
+msgid "Twice daily"
+msgstr "Duas vezes ao dia"
 
-#: include/features.php:80
-msgid "Network Sidebar Widgets"
-msgstr "Widgets da Barra Lateral da Rede"
+#: include/contact_selectors.php:59 mod/admin.php:983
+msgid "Daily"
+msgstr "Diariamente"
 
-#: include/features.php:81
-msgid "Search by Date"
-msgstr "Buscar por Data"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Semanalmente"
 
-#: include/features.php:81
-msgid "Ability to select posts by date ranges"
-msgstr "Capacidade de selecionar publicações por intervalos de data"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Mensalmente"
 
-#: include/features.php:82 include/features.php:112
-msgid "List Forums"
-msgstr ""
+#: include/contact_selectors.php:76 mod/dfrn_request.php:886
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/features.php:82
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/features.php:83
-msgid "Group Filter"
-msgstr "Filtrar Grupo"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/features.php:83
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
+msgid "Email"
+msgstr "E-mail"
 
-#: include/features.php:84
-msgid "Network Filter"
-msgstr "Filtrar Rede"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:888
+#: mod/settings.php:848
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/features.php:84
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/features.php:85 mod/search.php:34 mod/network.php:200
-msgid "Saved Searches"
-msgstr "Pesquisas salvas"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: include/features.php:85
-msgid "Save search terms for re-use"
-msgstr "Guarde as palavras-chaves para reuso"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/features.php:90
-msgid "Network Tabs"
-msgstr "Abas da Rede"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: include/features.php:91
-msgid "Network Personal Tab"
-msgstr "Aba Pessoal da Rede"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/features.php:91
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/features.php:92
-msgid "Network New Tab"
-msgstr "Aba Nova da Rede"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/features.php:92
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/features.php:93
-msgid "Network Shared Links Tab"
-msgstr "Aba de Links Compartilhados da Rede"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Conector do Diáspora"
 
-#: include/features.php:93
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr ""
 
-#: include/features.php:98
-msgid "Post/Comment Tools"
-msgstr "Ferramentas de Publicação/Comentário"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr ""
 
-#: include/features.php:99
-msgid "Multiple Deletion"
-msgstr "Deleção Multipla"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/features.php:99
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
+#: include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Adicionar Contato Novo"
 
-#: include/features.php:100
-msgid "Edit Sent Posts"
-msgstr "Editar Publicações Enviadas"
+#: include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Forneça endereço ou localização web"
 
-#: include/features.php:100
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editar e corrigir publicações e comentários após envio"
+#: include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
 
-#: include/features.php:101
-msgid "Tagging"
-msgstr "Etiquetagem"
+#: include/contact_widgets.php:10 include/identity.php:224
+#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101
+#: mod/dirfind.php:207
+msgid "Connect"
+msgstr "Conectar"
 
-#: include/features.php:101
-msgid "Ability to tag existing posts"
-msgstr "Capacidade de colocar etiquetas em publicações existentes"
+#: include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d convite disponível"
+msgstr[1] "%d convites disponíveis"
 
-#: include/features.php:102
-msgid "Post Categories"
-msgstr "Categorias de Publicações"
+#: include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Pesquisar por pessoas"
 
-#: include/features.php:102
-msgid "Add categories to your posts"
-msgstr "Adicione Categorias ás Publicações"
+#: include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Fornecer nome ou interesse"
 
-#: include/features.php:103
-msgid "Ability to file posts under folders"
-msgstr "Capacidade de arquivar publicações em pastas"
+#: include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examplos: Robert Morgenstein, Fishing"
 
-#: include/features.php:104
-msgid "Dislike Posts"
-msgstr "Desgostar de publicações"
+#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
+msgid "Find"
+msgstr "Pesquisar"
 
-#: include/features.php:104
-msgid "Ability to dislike posts/comments"
-msgstr "Capacidade de desgostar de publicações/comentários"
+#: include/contact_widgets.php:35 mod/suggest.php:114
+#: view/theme/vier/theme.php:201
+msgid "Friend Suggestions"
+msgstr "Sugestões de amigos"
 
-#: include/features.php:105
-msgid "Star Posts"
-msgstr "Destacar publicações"
+#: include/contact_widgets.php:36 view/theme/vier/theme.php:200
+msgid "Similar Interests"
+msgstr "Interesses Parecidos"
 
-#: include/features.php:105
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
+#: include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Perfil Randômico"
 
-#: include/features.php:106
-msgid "Mute Post Notifications"
-msgstr "Silenciar Notificações de Postagem"
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
+msgid "Invite Friends"
+msgstr "Convidar amigos"
 
-#: include/features.php:106
-msgid "Ability to mute notifications for a thread"
-msgstr "Habilitar notificação silenciosa para a tarefa"
+#: include/contact_widgets.php:125
+msgid "Networks"
+msgstr "Redes"
 
-#: include/features.php:111
-msgid "Advanced Profile Settings"
-msgstr "Configurações de perfil avançadas"
+#: include/contact_widgets.php:128
+msgid "All Networks"
+msgstr "Todas as redes"
 
-#: include/features.php:112
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr ""
+#: include/contact_widgets.php:160 include/features.php:104
+msgid "Saved Folders"
+msgstr "Pastas salvas"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Nada de novo aqui"
+#: include/contact_widgets.php:163 include/contact_widgets.php:198
+msgid "Everything"
+msgstr "Tudo"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Descartar notificações"
+#: include/contact_widgets.php:195
+msgid "Categories"
+msgstr "Categorias"
 
-#: include/nav.php:40 include/text.php:997
-msgid "@name, !forum, #tags, content"
+#: include/contact_widgets.php:264
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contato em comum"
+msgstr[1] "%d contatos em comum"
+
+#: include/conversation.php:159
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/nav.php:75 view/theme/frio/theme.php:243 boot.php:1655
-msgid "Logout"
-msgstr "Sair"
+#: include/conversation.php:162
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr ""
 
-#: include/nav.php:75 view/theme/frio/theme.php:243
-msgid "End this session"
-msgstr "Terminar esta sessão"
+#: include/conversation.php:165
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr ""
 
-#: include/nav.php:78 include/identity.php:712 mod/contacts.php:635
-#: mod/contacts.php:831 view/theme/frio/theme.php:246
-msgid "Status"
-msgstr "Status"
+#: include/conversation.php:198 mod/dfrn_confirm.php:478
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s agora é amigo de %2$s"
 
-#: include/nav.php:78 include/nav.php:163 view/theme/frio/theme.php:246
-#: view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Suas publicações e conversas"
+#: include/conversation.php:239
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s cutucou %2$s"
 
-#: include/nav.php:79 include/identity.php:603 include/identity.php:689
-#: include/identity.php:720 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:637 mod/contacts.php:839 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Perfil "
+#: include/conversation.php:260 mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s atualmente está %2$s"
 
-#: include/nav.php:79 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Sua página de perfil"
+#: include/conversation.php:307 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
 
-#: include/nav.php:80 include/identity.php:728 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Fotos"
+#: include/conversation.php:334
+msgid "post/item"
+msgstr "postagem/item"
 
-#: include/nav.php:80 view/theme/frio/theme.php:248
-#: view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Suas fotos"
+#: include/conversation.php:335
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marcou %3$s de %2$s como favorito"
 
-#: include/nav.php:81 include/identity.php:736 include/identity.php:739
-#: view/theme/frio/theme.php:249
-msgid "Videos"
-msgstr "Vídeos"
+#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
+#: mod/profiles.php:340
+msgid "Likes"
+msgstr "Gosta de"
 
-#: include/nav.php:81 view/theme/frio/theme.php:249
-msgid "Your videos"
-msgstr "Seus vídeos"
+#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
+#: mod/profiles.php:344
+msgid "Dislikes"
+msgstr "Não gosta de"
 
-#: include/nav.php:82 include/nav.php:146 include/identity.php:748
-#: include/identity.php:759 mod/cal.php:278 mod/events.php:379
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-#: view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Eventos"
+#: include/conversation.php:615 include/conversation.php:1541
+#: mod/content.php:373 mod/photos.php:1663
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-#: view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Seus eventos"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
+msgid "Not attending"
+msgstr ""
 
-#: include/nav.php:83 view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Suas anotações pessoais"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
+msgid "Might attend"
+msgstr ""
 
-#: include/nav.php:83
-msgid "Your personal notes"
-msgstr "Suas anotações pessoais"
+#: include/conversation.php:747 mod/content.php:453 mod/content.php:759
+#: mod/photos.php:1728 object/Item.php:137
+msgid "Select"
+msgstr "Selecionar"
 
-#: include/nav.php:94 mod/bookmarklet.php:12 boot.php:1656
-msgid "Login"
-msgstr "Entrar"
+#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
+#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
+#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
+msgid "Delete"
+msgstr "Excluir"
 
-#: include/nav.php:94
-msgid "Sign in"
-msgstr "Entrar"
+#: include/conversation.php:791 mod/content.php:487 mod/content.php:915
+#: mod/content.php:916 object/Item.php:356 object/Item.php:357
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Ver o perfil de %s @ %s"
 
-#: include/nav.php:107 include/nav.php:163
-#: include/NotificationsManager.php:174 view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Pessoal"
+#: include/conversation.php:803 object/Item.php:344
+msgid "Categories:"
+msgstr "Categorias:"
 
-#: include/nav.php:107
-msgid "Home Page"
-msgstr "Página pessoal"
+#: include/conversation.php:804 object/Item.php:345
+msgid "Filed under:"
+msgstr "Arquivado sob:"
 
-#: include/nav.php:111 mod/register.php:280 boot.php:1631
-msgid "Register"
-msgstr "Registrar"
+#: include/conversation.php:811 mod/content.php:497 mod/content.php:928
+#: object/Item.php:370
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: include/nav.php:111
-msgid "Create an account"
-msgstr "Criar uma conta"
+#: include/conversation.php:827 mod/content.php:513
+msgid "View in context"
+msgstr "Ver no contexto"
 
-#: include/nav.php:116 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Ajuda"
+#: include/conversation.php:829 include/conversation.php:1298
+#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
+#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522
+#: mod/photos.php:1627 object/Item.php:395
+msgid "Please wait"
+msgstr "Por favor, espere"
 
-#: include/nav.php:116
-msgid "Help and documentation"
-msgstr "Ajuda e documentação"
+#: include/conversation.php:906
+msgid "remove"
+msgstr "remover"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Aplicativos"
+#: include/conversation.php:910
+msgid "Delete Selected Items"
+msgstr "Excluir os itens selecionados"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Complementos, utilitários, jogos"
+#: include/conversation.php:1002
+msgid "Follow Thread"
+msgstr "Seguir o Thread"
 
-#: include/nav.php:122 include/text.php:994 mod/search.php:149
-msgid "Search"
-msgstr "Pesquisar"
+#: include/conversation.php:1139
+#, php-format
+msgid "%s likes this."
+msgstr "%s gostou disso."
 
-#: include/nav.php:122
-msgid "Search site content"
-msgstr "Pesquisar conteúdo no site"
+#: include/conversation.php:1142
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s não gostou disso."
 
-#: include/nav.php:125 include/text.php:1002
-msgid "Full Text"
+#: include/conversation.php:1145
+#, php-format
+msgid "%s attends."
 msgstr ""
 
-#: include/nav.php:126 include/text.php:1003
-msgid "Tags"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/nav.php:127 include/nav.php:193 include/identity.php:781
-#: include/identity.php:784 include/text.php:1004 mod/viewcontacts.php:116
-#: mod/contacts.php:790 mod/contacts.php:851 view/theme/frio/theme.php:257
-#: view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contatos"
+#: include/conversation.php:1151
+#, php-format
+msgid "%s attends maybe."
+msgstr ""
 
-#: include/nav.php:141 include/nav.php:143 mod/community.php:36
-#: view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Comunidade"
+#: include/conversation.php:1162
+msgid "and"
+msgstr "e"
 
-#: include/nav.php:141
-msgid "Conversations on this site"
-msgstr "Conversas neste site"
+#: include/conversation.php:1168
+#, php-format
+msgid ", and %d other people"
+msgstr ", e mais %d outras pessoas"
 
-#: include/nav.php:143
-msgid "Conversations on the network"
-msgstr "Conversas na rede"
+#: include/conversation.php:1177
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
 
-#: include/nav.php:146 include/identity.php:751 include/identity.php:762
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
-msgstr "Eventos e Agenda"
+#: include/conversation.php:1178
+#, php-format
+msgid "%s like this."
+msgstr "%s curtiu."
 
-#: include/nav.php:148
-msgid "Directory"
-msgstr "Diretório"
+#: include/conversation.php:1181
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
 
-#: include/nav.php:148
-msgid "People directory"
-msgstr "Diretório de pessoas"
+#: include/conversation.php:1182
+#, php-format
+msgid "%s don't like this."
+msgstr "%s não curtiu."
 
-#: include/nav.php:150
-msgid "Information"
-msgstr "Informação"
+#: include/conversation.php:1185
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr ""
 
-#: include/nav.php:150
-msgid "Information about this friendica instance"
-msgstr "Informação sobre esta instância do friendica"
+#: include/conversation.php:1186
+#, php-format
+msgid "%s attend."
+msgstr ""
 
-#: include/nav.php:160 include/NotificationsManager.php:160 mod/admin.php:402
-#: view/theme/frio/theme.php:253
-msgid "Network"
-msgstr "Rede"
+#: include/conversation.php:1189
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr ""
 
-#: include/nav.php:160 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
-msgstr "Conversas dos seus amigos"
+#: include/conversation.php:1190
+#, php-format
+msgid "%s don't attend."
+msgstr ""
 
-#: include/nav.php:161
-msgid "Network Reset"
-msgstr "Reiniciar Rede"
+#: include/conversation.php:1193
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr ""
 
-#: include/nav.php:161
-msgid "Load Network page with no filters"
-msgstr "Carregar página Rede sem filtros"
+#: include/conversation.php:1194
+#, php-format
+msgid "%s anttend maybe."
+msgstr ""
 
-#: include/nav.php:168 include/NotificationsManager.php:181
-msgid "Introductions"
-msgstr "Apresentações"
+#: include/conversation.php:1223 include/conversation.php:1239
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visível para <strong>todos</strong>"
 
-#: include/nav.php:168
-msgid "Friend Requests"
-msgstr "Requisições de Amizade"
+#: include/conversation.php:1224 include/conversation.php:1240
+#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271
+#: mod/message.php:278 mod/message.php:418 mod/message.php:425
+msgid "Please enter a link URL:"
+msgstr "Por favor, digite uma URL:"
 
-#: include/nav.php:171 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Notificações"
+#: include/conversation.php:1225 include/conversation.php:1241
+msgid "Please enter a video link/URL:"
+msgstr "Favor fornecer um link/URL de vídeo"
 
-#: include/nav.php:172
-msgid "See all notifications"
-msgstr "Ver todas notificações"
+#: include/conversation.php:1226 include/conversation.php:1242
+msgid "Please enter an audio link/URL:"
+msgstr "Favor fornecer um link/URL de áudio"
 
-#: include/nav.php:173 mod/settings.php:887
-msgid "Mark as seen"
-msgstr "Marcar como visto"
+#: include/conversation.php:1227 include/conversation.php:1243
+msgid "Tag term:"
+msgstr "Etiqueta:"
 
-#: include/nav.php:173
-msgid "Mark all system notifications seen"
-msgstr "Marcar todas as notificações de sistema como vistas"
+#: include/conversation.php:1228 include/conversation.php:1244
+#: mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Salvar na pasta:"
 
-#: include/nav.php:177 mod/message.php:190 view/theme/frio/theme.php:255
-msgid "Messages"
-msgstr "Mensagens"
+#: include/conversation.php:1229 include/conversation.php:1245
+msgid "Where are you right now?"
+msgstr "Onde você está agora?"
 
-#: include/nav.php:177 view/theme/frio/theme.php:255
-msgid "Private mail"
-msgstr "Mensagem privada"
+#: include/conversation.php:1230
+msgid "Delete item(s)?"
+msgstr "Deletar item(s)?"
 
-#: include/nav.php:178
-msgid "Inbox"
-msgstr "Recebidas"
+#: include/conversation.php:1279
+msgid "Share"
+msgstr "Compartilhar"
 
-#: include/nav.php:179
-msgid "Outbox"
-msgstr "Enviadas"
+#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138
+#: mod/message.php:335 mod/message.php:519
+msgid "Upload photo"
+msgstr "Enviar foto"
 
-#: include/nav.php:180 mod/message.php:16
-msgid "New Message"
-msgstr "Nova mensagem"
+#: include/conversation.php:1281 mod/editpost.php:101
+msgid "upload photo"
+msgstr "upload de foto"
 
-#: include/nav.php:183
-msgid "Manage"
-msgstr "Gerenciar"
+#: include/conversation.php:1282 mod/editpost.php:102
+msgid "Attach file"
+msgstr "Anexar arquivo"
 
-#: include/nav.php:183
-msgid "Manage other pages"
-msgstr "Gerenciar outras páginas"
+#: include/conversation.php:1283 mod/editpost.php:103
+msgid "attach file"
+msgstr "anexar arquivo"
 
-#: include/nav.php:186 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegações"
+#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139
+#: mod/message.php:336 mod/message.php:520
+msgid "Insert web link"
+msgstr "Inserir link web"
 
-#: include/nav.php:186 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegar Administração de Página"
+#: include/conversation.php:1285 mod/editpost.php:105
+msgid "web link"
+msgstr "link web"
 
-#: include/nav.php:188 mod/newmember.php:22 mod/admin.php:1501
-#: mod/admin.php:1759 mod/settings.php:111 view/theme/frio/theme.php:256
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Configurações"
+#: include/conversation.php:1286 mod/editpost.php:106
+msgid "Insert video link"
+msgstr "Inserir link de vídeo"
 
-#: include/nav.php:188 view/theme/frio/theme.php:256
-msgid "Account settings"
-msgstr "Configurações da conta"
+#: include/conversation.php:1287 mod/editpost.php:107
+msgid "video link"
+msgstr "link de vídeo"
 
-#: include/nav.php:191 include/identity.php:276
-msgid "Profiles"
-msgstr "Perfis"
+#: include/conversation.php:1288 mod/editpost.php:108
+msgid "Insert audio link"
+msgstr "Inserir link de áudio"
 
-#: include/nav.php:191
-msgid "Manage/Edit Profiles"
-msgstr "Administrar/Editar Perfis"
+#: include/conversation.php:1289 mod/editpost.php:109
+msgid "audio link"
+msgstr "link de áudio"
 
-#: include/nav.php:193 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
-msgstr "Gerenciar/editar amigos e contatos"
+#: include/conversation.php:1290 mod/editpost.php:110
+msgid "Set your location"
+msgstr "Definir sua localização"
 
-#: include/nav.php:200 mod/admin.php:186
-msgid "Admin"
-msgstr "Admin"
+#: include/conversation.php:1291 mod/editpost.php:111
+msgid "set location"
+msgstr "configure localização"
 
-#: include/nav.php:200
-msgid "Site setup and configuration"
-msgstr "Configurações do site"
+#: include/conversation.php:1292 mod/editpost.php:112
+msgid "Clear browser location"
+msgstr "Limpar a localização do navegador"
 
-#: include/nav.php:204
-msgid "Navigation"
-msgstr "Navegação"
+#: include/conversation.php:1293 mod/editpost.php:113
+msgid "clear location"
+msgstr "apague localização"
 
-#: include/nav.php:204
-msgid "Site map"
-msgstr "Mapa do Site"
+#: include/conversation.php:1295 mod/editpost.php:127
+msgid "Set title"
+msgstr "Definir o título"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Desconhecido | Não categorizado"
+#: include/conversation.php:1297 mod/editpost.php:129
+msgid "Categories (comma-separated list)"
+msgstr "Categorias (lista separada por vírgulas)"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquear imediatamente"
+#: include/conversation.php:1299 mod/editpost.php:115
+msgid "Permission settings"
+msgstr "Configurações de permissão"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Dissimulado, spammer, propagandista"
+#: include/conversation.php:1300 mod/editpost.php:144
+msgid "permissions"
+msgstr "permissões"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
+#: include/conversation.php:1308 mod/editpost.php:124
+msgid "Public post"
+msgstr "Publicação pública"
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Ok, provavelmente inofensivo"
+#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135
+#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689
+#: mod/photos.php:1769 object/Item.php:714
+msgid "Preview"
+msgstr "Pré-visualização"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Boa reputação, tem minha confiança"
+#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
+#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
+#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
+#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
+#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682
+#: mod/settings.php:708 mod/videos.php:132
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: include/contact_selectors.php:56 mod/admin.php:861
-msgid "Frequently"
-msgstr "Frequentemente"
+#: include/conversation.php:1323
+msgid "Post to Groups"
+msgstr "Postar em Grupos"
 
-#: include/contact_selectors.php:57 mod/admin.php:862
-msgid "Hourly"
-msgstr "De hora em hora"
+#: include/conversation.php:1324
+msgid "Post to Contacts"
+msgstr "Publique para Contatos"
 
-#: include/contact_selectors.php:58 mod/admin.php:863
-msgid "Twice daily"
-msgstr "Duas vezes ao dia"
+#: include/conversation.php:1325
+msgid "Private post"
+msgstr "Publicação privada"
 
-#: include/contact_selectors.php:59 mod/admin.php:864
-msgid "Daily"
-msgstr "Diariamente"
+#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142
+msgid "Message"
+msgstr "Mensagem"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Semanalmente"
+#: include/conversation.php:1331 mod/editpost.php:143
+msgid "Browser"
+msgstr "Navegador"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Mensalmente"
+#: include/conversation.php:1513
+msgid "View all"
+msgstr ""
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:867
-msgid "Friendica"
-msgstr "Friendica"
+#: include/conversation.php:1535
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Curtida"
+msgstr[1] "Curtidas"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/conversation.php:1538
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Não curtiu"
+msgstr[1] "Não curtiram"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/conversation.php:1544
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Não vai"
+msgstr[1] "Não vão"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1374 mod/admin.php:1387 mod/admin.php:1399 mod/admin.php:1417
-msgid "Email"
-msgstr "E-mail"
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698
+msgid "Miscellaneous"
+msgstr "Miscelânea"
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:869
-#: mod/settings.php:827
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/datetime.php:196 include/identity.php:644
+msgid "Birthday:"
+msgstr "Aniversário:"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/datetime.php:198 mod/profiles.php:721
+msgid "Age: "
+msgstr "Idade: "
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: include/datetime.php:200
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "AAAA-MM-DD ou MM-DD"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/datetime.php:370
+msgid "never"
+msgstr "nunca"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: include/datetime.php:376
+msgid "less than a second ago"
+msgstr "menos de um segundo atrás"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/datetime.php:379
+msgid "year"
+msgstr "ano"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/datetime.php:379
+msgid "years"
+msgstr "anos"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/datetime.php:380 include/event.php:519 mod/cal.php:279
+#: mod/events.php:384
+msgid "month"
+msgstr "mês"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/datetime.php:380
+msgid "months"
+msgstr "meses"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Conector do Diáspora"
+#: include/datetime.php:381 include/event.php:520 mod/cal.php:280
+#: mod/events.php:385
+msgid "week"
+msgstr "semana"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
-msgstr "GNU Social"
+#: include/datetime.php:381
+msgid "weeks"
+msgstr "semanas"
 
-#: include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: include/datetime.php:382 include/event.php:521 mod/cal.php:281
+#: mod/events.php:386
+msgid "day"
+msgstr "dia"
 
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
-msgstr "Hubzilla/Redmatrix"
+#: include/datetime.php:382
+msgid "days"
+msgstr "dias"
 
-#: include/conversation.php:122 include/conversation.php:258
-#: include/like.php:165 include/text.php:1788 view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "evento"
+#: include/datetime.php:383
+msgid "hour"
+msgstr "hora"
 
-#: include/conversation.php:125 include/conversation.php:134
-#: include/conversation.php:261 include/conversation.php:270
-#: include/diaspora.php:1402 include/like.php:163 mod/subthread.php:87
-#: mod/tagger.php:62 view/theme/diabook/theme.php:466
-#: view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "status"
+#: include/datetime.php:383
+msgid "hours"
+msgstr "horas"
 
-#: include/conversation.php:130 include/conversation.php:266
-#: include/like.php:163 include/text.php:1790 mod/subthread.php:87
-#: mod/tagger.php:62 view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "foto"
+#: include/datetime.php:384
+msgid "minute"
+msgstr "minuto"
 
-#: include/conversation.php:141 include/diaspora.php:1398 include/like.php:182
-#: view/theme/diabook/theme.php:480
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s gosta de %3$s de %2$s"
+#: include/datetime.php:384
+msgid "minutes"
+msgstr "minutos"
+
+#: include/datetime.php:385
+msgid "second"
+msgstr "segundo"
+
+#: include/datetime.php:385
+msgid "seconds"
+msgstr "segundos"
 
-#: include/conversation.php:144 include/like.php:184
+#: include/datetime.php:394
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s não gosta de %3$s de %2$s"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s atrás"
 
-#: include/conversation.php:147
+#: include/datetime.php:620
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr ""
+msgid "%s's birthday"
+msgstr "aniversário de %s"
 
-#: include/conversation.php:150
+#: include/datetime.php:621 include/dfrn.php:1252
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr ""
+msgid "Happy Birthday %s"
+msgstr "Feliz aniversário, %s"
 
-#: include/conversation.php:153
+#: include/dba_pdo.php:72 include/dba.php:47
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr ""
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:473
+#: include/enotify.php:24
+msgid "Friendica Notification"
+msgstr "Notificação Friendica"
+
+#: include/enotify.php:27
+msgid "Thank You,"
+msgstr "Obrigado,"
+
+#: include/enotify.php:30
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s agora é amigo de %2$s"
+msgid "%s Administrator"
+msgstr "%s Administrador"
 
-#: include/conversation.php:219
+#: include/enotify.php:32
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s cutucou %2$s"
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrador"
 
-#: include/conversation.php:239 mod/mood.php:62
+#: include/enotify.php:70
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s atualmente está %2$s"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/conversation.php:278 mod/tagger.php:95
+#: include/enotify.php:83
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "postagem/item"
+#: include/enotify.php:85
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
 
-#: include/conversation.php:304
+#: include/enotify.php:86
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marcou %3$s de %2$s como favorito"
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lhe enviou %2$s."
 
-#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:345
-#: mod/photos.php:1634
-msgid "Likes"
-msgstr "Gosta de"
+#: include/enotify.php:86
+msgid "a private message"
+msgstr "uma mensagem privada"
 
-#: include/conversation.php:587 mod/content.php:372 mod/profiles.php:349
-#: mod/photos.php:1634
-msgid "Dislikes"
-msgstr "Não gosta de"
+#: include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
 
-#: include/conversation.php:588 include/conversation.php:1471
-#: mod/content.php:373 mod/photos.php:1635
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
 
-#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635
-msgid "Not attending"
-msgstr ""
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
 
-#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1635
-msgid "Might attend"
-msgstr ""
-
-#: include/conversation.php:710 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1709 object/Item.php:133
-msgid "Select"
-msgstr "Selecionar"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
 
-#: include/conversation.php:711 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/admin.php:1391 mod/contacts.php:806
-#: mod/contacts.php:1021 mod/settings.php:726 mod/photos.php:1710
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Excluir"
+#: include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
 
-#: include/conversation.php:755 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
+#: include/enotify.php:161
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Ver o perfil de %s @ %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s comentou um item/conversa que você está seguindo."
 
-#: include/conversation.php:767 object/Item.php:355
-msgid "Categories:"
-msgstr "Categorias:"
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Favor visitar %s para ver e/ou responder à conversa."
 
-#: include/conversation.php:768 object/Item.php:356
-msgid "Filed under:"
-msgstr "Arquivado sob:"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
 
-#: include/conversation.php:775 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
+#: include/enotify.php:173
 #, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s publicou no mural do seu perfil em %2$s"
 
-#: include/conversation.php:791 mod/content.php:513
-msgid "View in context"
-msgstr "Ver no contexto"
+#: include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
 
-#: include/conversation.php:793 include/conversation.php:1255
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1597 object/Item.php:406
-msgid "Please wait"
-msgstr "Por favor, espere"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s etiquetou você"
 
-#: include/conversation.php:872
-msgid "remove"
-msgstr "remover"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s etiquetou você em %2$s"
 
-#: include/conversation.php:876
-msgid "Delete Selected Items"
-msgstr "Excluir os itens selecionados"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]etiquetou você[/url]."
 
-#: include/conversation.php:964
-msgid "Follow Thread"
-msgstr "Seguir o Thread"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
 
-#: include/conversation.php:965 include/Contact.php:364
-msgid "View Status"
-msgstr "Ver Status"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s compartilhou uma nova publicação em %2$s"
 
-#: include/conversation.php:966 include/conversation.php:980
-#: include/Contact.php:310 include/Contact.php:323 include/Contact.php:365
-#: mod/directory.php:163 mod/match.php:71 mod/allfriends.php:65
-#: mod/suggest.php:82 mod/dirfind.php:203
-msgid "View Profile"
-msgstr "Ver Perfil"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
 
-#: include/conversation.php:967 include/Contact.php:366
-msgid "View Photos"
-msgstr "Ver Fotos"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s cutucou você"
 
-#: include/conversation.php:968 include/Contact.php:367
-msgid "Network Posts"
-msgstr "Publicações da Rede"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s cutucou você em %2$s"
 
-#: include/conversation.php:969 include/Contact.php:368
-msgid "Edit Contact"
-msgstr "Editar Contato"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]cutucou você[/url]."
 
-#: include/conversation.php:970 include/Contact.php:370
-msgid "Send PM"
-msgstr "Enviar MP"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s etiquetou sua publicação"
 
-#: include/conversation.php:974 include/Contact.php:371
-msgid "Poke"
-msgstr "Cutucar"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s etiquetou sua publicação em %2$s"
 
-#: include/conversation.php:1088
+#: include/enotify.php:234
 #, php-format
-msgid "%s likes this."
-msgstr "%s gostou disso."
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
+
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Você recebeu uma apresentação"
 
-#: include/conversation.php:1091
+#: include/enotify.php:247
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s não gostou disso."
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
 
-#: include/conversation.php:1094
+#: include/enotify.php:248
 #, php-format
-msgid "%s attends."
-msgstr ""
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
 
-#: include/conversation.php:1097
+#: include/enotify.php:252 include/enotify.php:295
 #, php-format
-msgid "%s doesn't attend."
-msgstr ""
+msgid "You may visit their profile at %s"
+msgstr "Você pode visitar o perfil deles em %s"
 
-#: include/conversation.php:1100
+#: include/enotify.php:254
 #, php-format
-msgid "%s attends maybe."
-msgstr ""
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
 
-#: include/conversation.php:1110
-msgid "and"
-msgstr "e"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"
 
-#: include/conversation.php:1116
+#: include/enotify.php:264 include/enotify.php:265
 #, php-format
-msgid ", and %d other people"
-msgstr ", e mais %d outras pessoas"
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s está compartilhando com você via %2$s"
+
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notificação] Você tem um novo seguidor"
 
-#: include/conversation.php:1125
+#: include/enotify.php:273 include/enotify.php:274
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Você tem um novo seguidor em %2$s : %1$s"
+
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
 
-#: include/conversation.php:1126
+#: include/enotify.php:287
 #, php-format
-msgid "%s like this."
-msgstr "%s curtiu."
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
 
-#: include/conversation.php:1129
+#: include/enotify.php:288
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d pessoas</span> não gostaram disso"
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
+
+#: include/enotify.php:293
+msgid "Name:"
+msgstr "Nome:"
+
+#: include/enotify.php:294
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/conversation.php:1130
+#: include/enotify.php:297
 #, php-format
-msgid "%s don't like this."
-msgstr "%s não curtiu."
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
 
-#: include/conversation.php:1133
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notificação] Conexão aceita"
+
+#: include/enotify.php:307 include/enotify.php:321
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr ""
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' aceitou o seu pedido de conexão no %2$s"
 
-#: include/conversation.php:1134
+#: include/enotify.php:308 include/enotify.php:322
 #, php-format
-msgid "%s attend."
-msgstr ""
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s Foi aceita [url=%1$s] a conexão solicitada[/url]."
+
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente."
 
-#: include/conversation.php:1137
+#: include/enotify.php:314
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
+msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/conversation.php:1138
+#: include/enotify.php:326
 #, php-format
-msgid "%s don't attend."
-msgstr ""
+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' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."
 
-#: include/conversation.php:1141
+#: include/enotify.php:328
 #, php-format
-msgid "<span  %1$s>%2$d people</span> anttend maybe"
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
 msgstr ""
 
-#: include/conversation.php:1142
+#: include/enotify.php:330
 #, php-format
-msgid "%s anttend maybe."
-msgstr ""
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."
 
-#: include/conversation.php:1181 include/conversation.php:1199
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visível para <strong>todos</strong>"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica: Notificação do Sistema] solicitação de cadastro"
 
-#: include/conversation.php:1182 include/conversation.php:1200
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Por favor, digite uma URL:"
+#: include/enotify.php:342
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Você recebeu um pedido de cadastro de '%1$s' em %2$s"
 
-#: include/conversation.php:1183 include/conversation.php:1201
-msgid "Please enter a video link/URL:"
-msgstr "Favor fornecer um link/URL de vídeo"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Você recebeu uma [url=%1$s]solicitação de cadastro[/url] de %2$s."
 
-#: include/conversation.php:1184 include/conversation.php:1202
-msgid "Please enter an audio link/URL:"
-msgstr "Favor fornecer um link/URL de áudio"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s)"
 
-#: include/conversation.php:1185 include/conversation.php:1203
-msgid "Tag term:"
-msgstr "Etiqueta:"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação."
 
-#: include/conversation.php:1186 include/conversation.php:1204
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Salvar na pasta:"
-
-#: include/conversation.php:1187 include/conversation.php:1205
-msgid "Where are you right now?"
-msgstr "Onde você está agora?"
+#: include/event.php:474
+msgid "all-day"
+msgstr ""
 
-#: include/conversation.php:1188
-msgid "Delete item(s)?"
-msgstr "Deletar item(s)?"
+#: include/event.php:476
+msgid "Sun"
+msgstr "Dom"
 
-#: include/conversation.php:1236 mod/photos.php:1596
-msgid "Share"
-msgstr "Compartilhar"
+#: include/event.php:477
+msgid "Mon"
+msgstr "Seg"
 
-#: include/conversation.php:1237 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Enviar foto"
+#: include/event.php:478
+msgid "Tue"
+msgstr "Ter"
 
-#: include/conversation.php:1238 mod/editpost.php:111
-msgid "upload photo"
-msgstr "upload de foto"
+#: include/event.php:479
+msgid "Wed"
+msgstr "Qua"
 
-#: include/conversation.php:1239 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Anexar arquivo"
+#: include/event.php:480
+msgid "Thu"
+msgstr "Qui"
 
-#: include/conversation.php:1240 mod/editpost.php:113
-msgid "attach file"
-msgstr "anexar arquivo"
+#: include/event.php:481
+msgid "Fri"
+msgstr "Sex"
 
-#: include/conversation.php:1241 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Inserir link web"
+#: include/event.php:482
+msgid "Sat"
+msgstr "Sáb"
 
-#: include/conversation.php:1242 mod/editpost.php:115
-msgid "web link"
-msgstr "link web"
+#: include/event.php:484 include/text.php:1198 mod/settings.php:981
+msgid "Sunday"
+msgstr "Domingo"
 
-#: include/conversation.php:1243 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Inserir link de vídeo"
+#: include/event.php:485 include/text.php:1198 mod/settings.php:981
+msgid "Monday"
+msgstr "Segunda"
 
-#: include/conversation.php:1244 mod/editpost.php:117
-msgid "video link"
-msgstr "link de vídeo"
+#: include/event.php:486 include/text.php:1198
+msgid "Tuesday"
+msgstr "Terça"
 
-#: include/conversation.php:1245 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Inserir link de áudio"
+#: include/event.php:487 include/text.php:1198
+msgid "Wednesday"
+msgstr "Quarta"
 
-#: include/conversation.php:1246 mod/editpost.php:119
-msgid "audio link"
-msgstr "link de áudio"
+#: include/event.php:488 include/text.php:1198
+msgid "Thursday"
+msgstr "Quinta"
 
-#: include/conversation.php:1247 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Definir sua localização"
+#: include/event.php:489 include/text.php:1198
+msgid "Friday"
+msgstr "Sexta"
 
-#: include/conversation.php:1248 mod/editpost.php:121
-msgid "set location"
-msgstr "configure localização"
+#: include/event.php:490 include/text.php:1198
+msgid "Saturday"
+msgstr "Sábado"
 
-#: include/conversation.php:1249 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Limpar a localização do navegador"
+#: include/event.php:492
+msgid "Jan"
+msgstr "Jan"
 
-#: include/conversation.php:1250 mod/editpost.php:123
-msgid "clear location"
-msgstr "apague localização"
+#: include/event.php:493
+msgid "Feb"
+msgstr "Fev"
 
-#: include/conversation.php:1252 mod/editpost.php:137
-msgid "Set title"
-msgstr "Definir o título"
+#: include/event.php:494
+msgid "Mar"
+msgstr "Mar"
 
-#: include/conversation.php:1254 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Categorias (lista separada por vírgulas)"
+#: include/event.php:495
+msgid "Apr"
+msgstr "Abr"
 
-#: include/conversation.php:1256 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Configurações de permissão"
+#: include/event.php:496 include/event.php:509 include/text.php:1202
+msgid "May"
+msgstr "Maio"
 
-#: include/conversation.php:1257 mod/editpost.php:154
-msgid "permissions"
-msgstr "permissões"
+#: include/event.php:497
+msgid "Jun"
+msgstr "Jun"
 
-#: include/conversation.php:1265 mod/editpost.php:134
-msgid "Public post"
-msgstr "Publicação pública"
+#: include/event.php:498
+msgid "Jul"
+msgstr "Jul"
 
-#: include/conversation.php:1270 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:505 mod/photos.php:1618 mod/photos.php:1666
-#: mod/photos.php:1754 object/Item.php:729
-msgid "Preview"
-msgstr "Pré-visualização"
+#: include/event.php:499
+msgid "Aug"
+msgstr "Ago"
 
-#: include/conversation.php:1274 include/items.php:1849 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
-#: mod/suggest.php:32 mod/editpost.php:148 mod/message.php:220
-#: mod/dfrn_request.php:875 mod/contacts.php:445 mod/settings.php:664
-#: mod/settings.php:690 mod/videos.php:131 mod/photos.php:248
-#: mod/photos.php:337
-msgid "Cancel"
-msgstr "Cancelar"
+#: include/event.php:500
+msgid "Sept"
+msgstr "Set"
 
-#: include/conversation.php:1280
-msgid "Post to Groups"
-msgstr "Postar em Grupos"
+#: include/event.php:501
+msgid "Oct"
+msgstr "Out"
 
-#: include/conversation.php:1281
-msgid "Post to Contacts"
-msgstr "Publique para Contatos"
+#: include/event.php:502
+msgid "Nov"
+msgstr "Nov"
 
-#: include/conversation.php:1282
-msgid "Private post"
-msgstr "Publicação privada"
+#: include/event.php:503
+msgid "Dec"
+msgstr "Dez"
 
-#: include/conversation.php:1287 include/identity.php:250 mod/editpost.php:152
-msgid "Message"
-msgstr "Mensagem"
+#: include/event.php:505 include/text.php:1202
+msgid "January"
+msgstr "Janeiro"
 
-#: include/conversation.php:1288 mod/editpost.php:153
-msgid "Browser"
-msgstr "Navegador"
+#: include/event.php:506 include/text.php:1202
+msgid "February"
+msgstr "Fevereiro"
 
-#: include/conversation.php:1443
-msgid "View all"
-msgstr ""
+#: include/event.php:507 include/text.php:1202
+msgid "March"
+msgstr "Março"
 
-#: include/conversation.php:1465
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Curtida"
-msgstr[1] "Curtidas"
+#: include/event.php:508 include/text.php:1202
+msgid "April"
+msgstr "Abril"
 
-#: include/conversation.php:1468
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Não curtiu"
-msgstr[1] "Não curtiram"
+#: include/event.php:510 include/text.php:1202
+msgid "June"
+msgstr "Junho"
 
-#: include/conversation.php:1474
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Não vai"
-msgstr[1] "Não vão"
+#: include/event.php:511 include/text.php:1202
+msgid "July"
+msgstr "Julho"
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "ver na tela inteira"
+#: include/event.php:512 include/text.php:1202
+msgid "August"
+msgstr "Agosto"
 
-#: include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."
+#: include/event.php:513 include/text.php:1202
+msgid "September"
+msgstr "Setembro"
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "A mensagem de erro é\n[pre]%s[/pre]"
+#: include/event.php:514 include/text.php:1202
+msgid "October"
+msgstr "Outubro"
 
-#: include/dbstructure.php:153
-msgid "Errors encountered creating database tables."
-msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+#: include/event.php:515 include/text.php:1202
+msgid "November"
+msgstr "Novembro"
 
-#: include/dbstructure.php:230
-msgid "Errors encountered performing database changes."
-msgstr "Erros encontrados realizando mudanças no banco de dados."
+#: include/event.php:516 include/text.php:1202
+msgid "December"
+msgstr "Dezembro"
 
-#: include/Contact.php:119
-msgid "stopped following"
-msgstr "parou de acompanhar"
+#: include/event.php:518 mod/cal.php:278 mod/events.php:383
+msgid "today"
+msgstr "hoje"
 
-#: include/Contact.php:369
-msgid "Drop Contact"
-msgstr "Excluir o contato"
+#: include/event.php:523
+msgid "No events to display"
+msgstr ""
 
-#: include/acl_selectors.php:327
-msgid "Post to Email"
-msgstr "Enviar por e-mail"
+#: include/event.php:636
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/acl_selectors.php:332
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
+#: include/event.php:658
+msgid "Edit event"
+msgstr "Editar o evento"
 
-#: include/acl_selectors.php:333 mod/settings.php:1131
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
+#: include/event.php:659
+msgid "Delete event"
+msgstr ""
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: include/event.php:685 include/text.php:1600 include/text.php:1607
+msgid "link to source"
+msgstr "exibir a origem"
 
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
-msgid "show"
-msgstr "exibir"
+#: include/event.php:939
+msgid "Export"
+msgstr "Exportar"
 
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
-msgid "don't show"
-msgstr "não exibir"
+#: include/event.php:940
+msgid "Export calendar as ical"
+msgstr "Exportar a agenda como iCal"
 
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "CC: endereço de e-mail"
+#: include/event.php:941
+msgid "Export calendar as csv"
+msgstr "Exportar a agenda como CSV"
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
+#: include/features.php:65
+msgid "General Features"
+msgstr "Funcionalidades Gerais"
 
-#: include/acl_selectors.php:349 mod/photos.php:1178 mod/photos.php:1562
-msgid "Permissions"
-msgstr "Permissões"
+#: include/features.php:67
+msgid "Multiple Profiles"
+msgstr "Perfis Múltiplos"
 
-#: include/acl_selectors.php:350
-msgid "Close"
-msgstr "Fechar"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr "Capacidade de criar perfis múltiplos"
 
-#: include/api.php:975
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."
+#: include/features.php:68
+msgid "Photo Location"
+msgstr ""
 
-#: include/api.php:995
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr ""
 
-#: include/api.php:1016
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."
+#: include/features.php:69
+msgid "Export Public Calendar"
+msgstr "Exportar a agenda pública"
 
-#: include/dfrn.php:1110
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "Aniversário de %s\\"
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
+msgstr "Visitantes podem baixar a agenda pública"
 
-#: include/diaspora.php:1954
-msgid "Sharing notification from Diaspora network"
-msgstr "Notificação de compartilhamento da rede Diaspora"
+#: include/features.php:74
+msgid "Post Composition Features"
+msgstr "Funcionalidades de Composição de Publicações"
 
-#: include/diaspora.php:2854
-msgid "Attachments:"
-msgstr "Anexos:"
+#: include/features.php:75
+msgid "Post Preview"
+msgstr "Pré-visualização da Publicação"
 
-#: include/follow.php:77 mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
-msgstr "URL de perfil não permitida."
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
 
-#: include/follow.php:82
-msgid "Connect URL missing."
-msgstr "URL de conexão faltando."
+#: include/features.php:76
+msgid "Auto-mention Forums"
+msgstr "Auto-menção Fóruns"
 
-#: include/follow.php:109
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr ""
+
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
+msgstr "Widgets da Barra Lateral da Rede"
+
+#: include/features.php:82
+msgid "Search by Date"
+msgstr "Buscar por Data"
+
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
+msgstr "Capacidade de selecionar publicações por intervalos de data"
+
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
+msgstr ""
+
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
+
+#: include/features.php:84
+msgid "Group Filter"
+msgstr "Filtrar Grupo"
+
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
+
+#: include/features.php:85
+msgid "Network Filter"
+msgstr "Filtrar Rede"
+
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
+
+#: include/features.php:86 mod/network.php:206 mod/search.php:34
+msgid "Saved Searches"
+msgstr "Pesquisas salvas"
+
+#: include/features.php:86
+msgid "Save search terms for re-use"
+msgstr "Guarde as palavras-chaves para reuso"
+
+#: include/features.php:91
+msgid "Network Tabs"
+msgstr "Abas da Rede"
+
+#: include/features.php:92
+msgid "Network Personal Tab"
+msgstr "Aba Pessoal da Rede"
+
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
+
+#: include/features.php:93
+msgid "Network New Tab"
+msgstr "Aba Nova da Rede"
+
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
+
+#: include/features.php:94
+msgid "Network Shared Links Tab"
+msgstr "Aba de Links Compartilhados da Rede"
+
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
+
+#: include/features.php:99
+msgid "Post/Comment Tools"
+msgstr "Ferramentas de Publicação/Comentário"
+
+#: include/features.php:100
+msgid "Multiple Deletion"
+msgstr "Deleção Multipla"
+
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
+
+#: include/features.php:101
+msgid "Edit Sent Posts"
+msgstr "Editar Publicações Enviadas"
+
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editar e corrigir publicações e comentários após envio"
+
+#: include/features.php:102
+msgid "Tagging"
+msgstr "Etiquetagem"
+
+#: include/features.php:102
+msgid "Ability to tag existing posts"
+msgstr "Capacidade de colocar etiquetas em publicações existentes"
+
+#: include/features.php:103
+msgid "Post Categories"
+msgstr "Categorias de Publicações"
+
+#: include/features.php:103
+msgid "Add categories to your posts"
+msgstr "Adicione Categorias ás Publicações"
+
+#: include/features.php:104
+msgid "Ability to file posts under folders"
+msgstr "Capacidade de arquivar publicações em pastas"
+
+#: include/features.php:105
+msgid "Dislike Posts"
+msgstr "Desgostar de publicações"
+
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
+msgstr "Capacidade de desgostar de publicações/comentários"
+
+#: include/features.php:106
+msgid "Star Posts"
+msgstr "Destacar publicações"
+
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
+
+#: include/features.php:107
+msgid "Mute Post Notifications"
+msgstr "Silenciar Notificações de Postagem"
+
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
+msgstr "Habilitar notificação silenciosa para a tarefa"
+
+#: include/features.php:112
+msgid "Advanced Profile Settings"
+msgstr "Configurações de perfil avançadas"
+
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
+
+#: include/follow.php:81 mod/dfrn_request.php:512
+msgid "Disallowed profile URL."
+msgstr "URL de perfil não permitida."
+
+#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
+#: mod/admin.php:279 mod/admin.php:297
+msgid "Blocked domain"
+msgstr ""
+
+#: include/follow.php:91
+msgid "Connect URL missing."
+msgstr "URL de conexão faltando."
+
+#: include/follow.php:119
 msgid ""
 "This site is not configured to allow communications with other networks."
 msgstr "Este site não está configurado para permitir comunicações com outras redes."
 
-#: include/follow.php:110 include/follow.php:130
+#: include/follow.php:120 include/follow.php:134
 msgid "No compatible communication protocols or feeds were discovered."
 msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
 
-#: include/follow.php:128
+#: include/follow.php:132
 msgid "The profile address specified does not provide adequate information."
 msgstr "O endereço de perfil especificado não fornece informação adequada."
 
-#: include/follow.php:132
+#: include/follow.php:137
 msgid "An author or name was not found."
 msgstr "Não foi encontrado nenhum autor ou nome."
 
-#: include/follow.php:134
+#: include/follow.php:140
 msgid "No browser URL could be matched to this address."
 msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
 
-#: include/follow.php:136
+#: include/follow.php:143
 msgid ""
 "Unable to match @-style Identity Address with a known protocol or email "
 "contact."
 msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
 
-#: include/follow.php:137
+#: include/follow.php:144
 msgid "Use mailto: in front of address to force email check."
 msgstr "Use mailto: antes do endereço para forçar a checagem de email."
 
-#: include/follow.php:143
+#: include/follow.php:150
 msgid ""
 "The profile address specified belongs to a network which has been disabled "
 "on this site."
 msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
 
-#: include/follow.php:153
+#: include/follow.php:155
 msgid ""
 "Limited profile. This person will be unable to receive direct/personal "
 "notifications from you."
 msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
 
-#: include/follow.php:254
+#: include/follow.php:256
 msgid "Unable to retrieve contact information."
 msgstr "Não foi possível recuperar a informação do contato."
 
-#: include/follow.php:287
-msgid "following"
-msgstr "acompanhando"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
+msgstr "Grupo de privacidade padrão para novos contatos"
+
+#: include/group.php:243
+msgid "Everybody"
+msgstr "Todos"
+
+#: include/group.php:266
+msgid "edit"
+msgstr "editar"
+
+#: include/group.php:287 mod/newmember.php:61
+msgid "Groups"
+msgstr "Grupos"
+
+#: include/group.php:289
+msgid "Edit groups"
+msgstr "Editar grupos"
+
+#: include/group.php:291
+msgid "Edit group"
+msgstr "Editar grupo"
+
+#: include/group.php:292
+msgid "Create a new group"
+msgstr "Criar um novo grupo"
+
+#: include/group.php:293 mod/group.php:99 mod/group.php:196
+msgid "Group Name: "
+msgstr "Nome do grupo: "
+
+#: include/group.php:295
+msgid "Contacts not in any group"
+msgstr "Contatos não estão dentro de nenhum grupo"
+
+#: include/group.php:297 mod/network.php:207
+msgid "add"
+msgstr "adicionar"
 
-#: include/identity.php:42
+#: include/identity.php:43
 msgid "Requested account is not available."
 msgstr "Conta solicitada não disponível"
 
-#: include/identity.php:51 mod/profile.php:21
+#: include/identity.php:52 mod/profile.php:21
 msgid "Requested profile is not available."
 msgstr "Perfil solicitado não está disponível."
 
-#: include/identity.php:95 include/identity.php:305 include/identity.php:686
+#: include/identity.php:96 include/identity.php:319 include/identity.php:740
 msgid "Edit profile"
 msgstr "Editar perfil"
 
-#: include/identity.php:245
+#: include/identity.php:259
 msgid "Atom feed"
 msgstr ""
 
-#: include/identity.php:276
+#: include/identity.php:290
 msgid "Manage/edit profiles"
 msgstr "Gerenciar/editar perfis"
 
-#: include/identity.php:281 include/identity.php:307 mod/profiles.php:787
+#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787
 msgid "Change profile photo"
 msgstr "Mudar a foto do perfil"
 
-#: include/identity.php:282 mod/profiles.php:788
+#: include/identity.php:296 mod/profiles.php:788
 msgid "Create New Profile"
 msgstr "Criar um novo perfil"
 
-#: include/identity.php:292 mod/profiles.php:777
+#: include/identity.php:306 mod/profiles.php:777
 msgid "Profile Image"
 msgstr "Imagem do perfil"
 
-#: include/identity.php:295 mod/profiles.php:779
+#: include/identity.php:309 mod/profiles.php:779
 msgid "visible to everybody"
 msgstr "visível para todos"
 
-#: include/identity.php:296 mod/profiles.php:684 mod/profiles.php:780
+#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780
 msgid "Edit visibility"
 msgstr "Editar a visibilidade"
 
-#: include/identity.php:319 mod/directory.php:174 mod/match.php:84
-#: mod/viewcontacts.php:105 mod/allfriends.php:79 mod/cal.php:44
-#: mod/suggest.php:98 mod/hovercard.php:80 mod/common.php:123
-#: mod/network.php:517 mod/contacts.php:51 mod/contacts.php:626
-#: mod/contacts.php:953 mod/dirfind.php:223 mod/videos.php:37
-#: mod/photos.php:42
-msgid "Forum"
-msgstr "Fórum"
-
-#: include/identity.php:331 include/identity.php:614 mod/directory.php:147
-#: mod/notifications.php:238
+#: include/identity.php:338 include/identity.php:633 mod/directory.php:141
+#: mod/notifications.php:250
 msgid "Gender:"
 msgstr "Gênero:"
 
-#: include/identity.php:334 include/identity.php:634 mod/directory.php:149
+#: include/identity.php:341 include/identity.php:651 mod/directory.php:143
 msgid "Status:"
 msgstr "Situação:"
 
-#: include/identity.php:336 include/identity.php:645 mod/directory.php:151
+#: include/identity.php:343 include/identity.php:667 mod/directory.php:145
 msgid "Homepage:"
 msgstr "Página web:"
 
-#: include/identity.php:338 include/identity.php:655 mod/directory.php:153
-#: mod/contacts.php:630 mod/notifications.php:234
+#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
+#: mod/directory.php:147 mod/notifications.php:246
 msgid "About:"
 msgstr "Sobre:"
 
-#: include/identity.php:420 mod/contacts.php:50 mod/notifications.php:246
+#: include/identity.php:347 mod/contacts.php:638
+msgid "XMPP:"
+msgstr ""
+
+#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
 msgid "Network:"
 msgstr "Rede:"
 
-#: include/identity.php:449 include/identity.php:533
+#: include/identity.php:462 include/identity.php:552
 msgid "g A l F d"
 msgstr "G l d F"
 
-#: include/identity.php:450 include/identity.php:534
+#: include/identity.php:463 include/identity.php:553
 msgid "F d"
 msgstr "F d"
 
-#: include/identity.php:495 include/identity.php:580
+#: include/identity.php:514 include/identity.php:599
 msgid "[today]"
 msgstr "[hoje]"
 
-#: include/identity.php:507
+#: include/identity.php:526
 msgid "Birthday Reminders"
 msgstr "Lembretes de aniversário"
 
-#: include/identity.php:508
+#: include/identity.php:527
 msgid "Birthdays this week:"
 msgstr "Aniversários nesta semana:"
 
-#: include/identity.php:567
+#: include/identity.php:586
 msgid "[No description]"
 msgstr "[Sem descrição]"
 
-#: include/identity.php:591
+#: include/identity.php:610
 msgid "Event Reminders"
 msgstr "Lembretes de eventos"
 
-#: include/identity.php:592
+#: include/identity.php:611
 msgid "Events this week:"
 msgstr "Eventos esta semana:"
 
-#: include/identity.php:612 mod/settings.php:1229
+#: include/identity.php:631 mod/settings.php:1286
 msgid "Full Name:"
 msgstr "Nome completo:"
 
-#: include/identity.php:619
+#: include/identity.php:636
 msgid "j F, Y"
 msgstr "j de F, Y"
 
-#: include/identity.php:620
+#: include/identity.php:637
 msgid "j F"
 msgstr "j de F"
 
-#: include/identity.php:631
+#: include/identity.php:648
 msgid "Age:"
 msgstr "Idade:"
 
-#: include/identity.php:640
+#: include/identity.php:659
 #, php-format
 msgid "for %1$d %2$s"
 msgstr "para %1$d %2$s"
 
-#: include/identity.php:643 mod/profiles.php:703
+#: include/identity.php:663 mod/profiles.php:703
 msgid "Sexual Preference:"
 msgstr "Preferência sexual:"
 
-#: include/identity.php:647 mod/profiles.php:729
+#: include/identity.php:671 mod/profiles.php:730
 msgid "Hometown:"
 msgstr "Cidade:"
 
-#: include/identity.php:649 mod/follow.php:134 mod/contacts.php:632
-#: mod/notifications.php:236
+#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
+#: mod/notifications.php:248
 msgid "Tags:"
 msgstr "Etiquetas:"
 
-#: include/identity.php:651 mod/profiles.php:730
+#: include/identity.php:679 mod/profiles.php:731
 msgid "Political Views:"
 msgstr "Posição política:"
 
-#: include/identity.php:653
+#: include/identity.php:683
 msgid "Religion:"
 msgstr "Religião:"
 
-#: include/identity.php:657
+#: include/identity.php:691
 msgid "Hobbies/Interests:"
 msgstr "Passatempos/Interesses:"
 
-#: include/identity.php:659 mod/profiles.php:734
+#: include/identity.php:695 mod/profiles.php:735
 msgid "Likes:"
 msgstr "Gosta de:"
 
-#: include/identity.php:661 mod/profiles.php:735
+#: include/identity.php:699 mod/profiles.php:736
 msgid "Dislikes:"
 msgstr "Não gosta de:"
 
-#: include/identity.php:664
+#: include/identity.php:703
 msgid "Contact information and Social Networks:"
 msgstr "Informações de contato e redes sociais:"
 
-#: include/identity.php:666
+#: include/identity.php:707
 msgid "Musical interests:"
 msgstr "Preferências musicais:"
 
-#: include/identity.php:668
+#: include/identity.php:711
 msgid "Books, literature:"
 msgstr "Livros, literatura:"
 
-#: include/identity.php:670
+#: include/identity.php:715
 msgid "Television:"
 msgstr "Televisão:"
 
-#: include/identity.php:672
+#: include/identity.php:719
 msgid "Film/dance/culture/entertainment:"
 msgstr "Filmes/dança/cultura/entretenimento:"
 
-#: include/identity.php:674
+#: include/identity.php:723
 msgid "Love/Romance:"
 msgstr "Amor/romance:"
 
-#: include/identity.php:676
+#: include/identity.php:727
 msgid "Work/employment:"
 msgstr "Trabalho/emprego:"
 
-#: include/identity.php:678
+#: include/identity.php:731
 msgid "School/education:"
 msgstr "Escola/educação:"
 
-#: include/identity.php:682
+#: include/identity.php:736
 msgid "Forums:"
 msgstr "Fóruns:"
 
-#: include/identity.php:690 mod/events.php:508
+#: include/identity.php:745 mod/events.php:506
 msgid "Basic"
 msgstr ""
 
-#: include/identity.php:691 mod/admin.php:930 mod/contacts.php:868
-#: mod/events.php:509
+#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
+#: mod/admin.php:1059
 msgid "Advanced"
 msgstr "Avançado"
 
-#: include/identity.php:715 mod/follow.php:143 mod/contacts.php:834
+#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145
 msgid "Status Messages and Posts"
 msgstr "Mensagem de Estado (status) e Publicações"
 
-#: include/identity.php:723 mod/contacts.php:842
+#: include/identity.php:780 mod/contacts.php:852
 msgid "Profile Details"
 msgstr "Detalhe do Perfil"
 
-#: include/identity.php:731 mod/photos.php:100
+#: include/identity.php:788 mod/photos.php:93
 msgid "Photo Albums"
 msgstr "Álbuns de fotos"
 
-#: include/identity.php:770 mod/notes.php:46
+#: include/identity.php:827 mod/notes.php:47
 msgid "Personal Notes"
 msgstr "Notas pessoais"
 
-#: include/identity.php:773
+#: include/identity.php:830
 msgid "Only You Can See This"
 msgstr "Somente Você Pode Ver Isso"
 
-#: include/items.php:1447 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
-msgid "[Name Withheld]"
-msgstr "[Nome não revelado]"
+#: include/network.php:687
+msgid "view full size"
+msgstr "ver na tela inteira"
 
-#: include/items.php:1805 mod/viewsrc.php:15 mod/display.php:104
-#: mod/display.php:279 mod/display.php:478 mod/notice.php:15 mod/admin.php:234
-#: mod/admin.php:1448 mod/admin.php:1682
-msgid "Item not found."
-msgstr "O item não foi encontrado."
+#: include/oembed.php:255
+msgid "Embedded content"
+msgstr "Conteúdo incorporado"
 
-#: include/items.php:1844
-msgid "Do you really want to delete this item?"
-msgstr "Você realmente deseja deletar esse item?"
+#: include/oembed.php:263
+msgid "Embedding disabled"
+msgstr "A incorporação está desabilitada"
 
-#: include/items.php:1846 mod/follow.php:110 mod/suggest.php:29
-#: mod/api.php:105 mod/message.php:217 mod/dfrn_request.php:861
-#: mod/contacts.php:442 mod/profiles.php:641 mod/profiles.php:644
-#: mod/profiles.php:670 mod/register.php:238 mod/settings.php:1113
-#: mod/settings.php:1119 mod/settings.php:1127 mod/settings.php:1131
-#: mod/settings.php:1136 mod/settings.php:1142 mod/settings.php:1148
-#: mod/settings.php:1154 mod/settings.php:1180 mod/settings.php:1181
-#: mod/settings.php:1182 mod/settings.php:1183 mod/settings.php:1184
-msgid "Yes"
-msgstr "Sim"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
+#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
+#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
+#: mod/photos.php:1853
+msgid "Contact Photos"
+msgstr "Fotos dos contatos"
 
-#: include/items.php:2011 mod/wall_upload.php:77 mod/wall_upload.php:80
-#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
-#: mod/invite.php:101 mod/viewcontacts.php:45 mod/wall_attach.php:67
-#: mod/wall_attach.php:70 mod/allfriends.php:12 mod/cal.php:308
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/suggest.php:58
-#: mod/display.php:474 mod/common.php:18 mod/editpost.php:10 mod/network.php:4
-#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
-#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
-#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
-#: mod/contacts.php:350 mod/dfrn_confirm.php:57 mod/dirfind.php:11
-#: mod/events.php:190 mod/fsuggest.php:78 mod/item.php:185 mod/item.php:197
-#: mod/mood.php:114 mod/poke.php:150 mod/profile_photo.php:19
-#: mod/profile_photo.php:175 mod/profile_photo.php:186
-#: mod/profile_photo.php:199 mod/profiles.php:166 mod/profiles.php:598
-#: mod/register.php:42 mod/regmod.php:110 mod/settings.php:22
-#: mod/settings.php:128 mod/settings.php:650 mod/notifications.php:71
-#: mod/photos.php:172 mod/photos.php:1093 index.php:397
-msgid "Permission denied."
-msgstr "Permissão negada."
+#: include/user.php:39 mod/settings.php:375
+msgid "Passwords do not match. Password unchanged."
+msgstr "As senhas não correspondem. A senha não foi modificada."
 
-#: include/items.php:2116
-msgid "Archives"
-msgstr "Arquivos"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "É necessário um convite."
 
-#: include/like.php:186
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s vai a %3$s de %2$s"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Não foi possível verificar o convite."
 
-#: include/like.php:188
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s não vai a %3$s de %2$s"
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "A URL do OpenID é inválida"
 
-#: include/like.php:190
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s está pensando em ir a %3$s de %2$s"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Por favor, forneça a informação solicitada."
 
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
-msgstr "[sem assunto]"
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Por favor, use um nome mais curto."
 
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
-msgstr "Clique aqui para atualização (upgrade)."
+#: include/user.php:98
+msgid "Name too short."
+msgstr "O nome é muito curto."
 
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
+#: include/user.php:106
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
-msgstr "Essa ação não está disponível em seu plano de assinatura."
+#: include/user.php:111
+msgid "Your email domain is not among those allowed on this site."
+msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
+
+#: include/user.php:114
+msgid "Not a valid email address."
+msgstr "Não é um endereço de e-mail válido."
+
+#: include/user.php:127
+msgid "Cannot use that email."
+msgstr "Não é possível usar esse e-mail."
+
+#: include/user.php:133
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr ""
+
+#: include/user.php:140 include/user.php:228
+msgid "Nickname is already registered. Please choose another."
+msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+
+#: include/user.php:150
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+
+#: include/user.php:166
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+
+#: include/user.php:214
+msgid "An error occurred during registration. Please try again."
+msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+
+#: include/user.php:239 view/theme/duepuntozero/config.php:43
+msgid "default"
+msgstr "padrão"
+
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+
+#: include/user.php:309 include/user.php:317 include/user.php:325
+#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
+#: mod/profile_photo.php:215 mod/profile_photo.php:310
+#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187
+#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
+#: mod/photos.php:1863
+msgid "Profile Photos"
+msgstr "Fotos do perfil"
+
+#: include/user.php:400
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr ""
+
+#: include/user.php:410
+#, php-format
+msgid "Registration at %s"
+msgstr ""
+
+#: include/user.php:420
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tCaro %1$s,\n\t\t\tObrigado por se cadastrar em %2$s. Sua conta foi criada.\n\t"
+
+#: include/user.php:424
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3$s\n\t\t\tNome de Login:\t%1$s\n\t\t\tSenha:\t%5$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2$s."
+
+#: include/user.php:456 mod/admin.php:1308
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalhes do registro de %s"
+
+#: include/dbstructure.php:20
+msgid "There are no tables on MyISAM."
+msgstr ""
+
+#: include/dbstructure.php:61
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."
+
+#: include/dbstructure.php:66
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "A mensagem de erro é\n[pre]%s[/pre]"
+
+#: include/dbstructure.php:190
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr ""
+
+#: include/dbstructure.php:193
+msgid "Errors encountered performing database changes: "
+msgstr ""
+
+#: include/dbstructure.php:201
+msgid ": Database update"
+msgstr ""
+
+#: include/dbstructure.php:425
+#, php-format
+msgid "%s: updating %s table."
+msgstr ""
+
+#: include/dfrn.php:1251
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "Aniversário de %s\\"
+
+#: include/diaspora.php:2137
+msgid "Sharing notification from Diaspora network"
+msgstr "Notificação de compartilhamento da rede Diaspora"
+
+#: include/diaspora.php:3146
+msgid "Attachments:"
+msgstr "Anexos:"
+
+#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
+msgstr "[Nome não revelado]"
+
+#: include/items.php:2123 mod/display.php:103 mod/display.php:279
+#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
+#: mod/admin.php:1565 mod/admin.php:1816
+msgid "Item not found."
+msgstr "O item não foi encontrado."
+
+#: include/items.php:2162
+msgid "Do you really want to delete this item?"
+msgstr "Você realmente deseja deletar esse item?"
+
+#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
+#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
+#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171
+#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188
+#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203
+#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235
+#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
+msgid "Yes"
+msgstr "Sim"
+
+#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
+#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
+#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
+#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
+#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
+#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
+#: mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9
+#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
+#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
+#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
+#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
+#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
+#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
+#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
+#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
+#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
+#: mod/item.php:208 mod/notifications.php:71 index.php:407
+msgid "Permission denied."
+msgstr "Permissão negada."
+
+#: include/items.php:2444
+msgid "Archives"
+msgstr "Arquivos"
+
+#: include/ostatus.php:1947
+#, php-format
+msgid "%s is now following %s."
+msgstr ""
+
+#: include/ostatus.php:1948
+msgid "following"
+msgstr "acompanhando"
+
+#: include/ostatus.php:1951
+#, php-format
+msgid "%s stopped following %s."
+msgstr ""
+
+#: include/ostatus.php:1952
+msgid "stopped following"
+msgstr "parou de acompanhar"
 
-#: include/text.php:304
+#: include/text.php:307
 msgid "newer"
 msgstr "mais recente"
 
-#: include/text.php:306
+#: include/text.php:308
 msgid "older"
 msgstr "antigo"
 
-#: include/text.php:311
-msgid "prev"
-msgstr "anterior"
-
 #: include/text.php:313
 msgid "first"
 msgstr "primeiro"
 
-#: include/text.php:345
-msgid "last"
-msgstr "último"
+#: include/text.php:314
+msgid "prev"
+msgstr "anterior"
 
 #: include/text.php:348
 msgid "next"
 msgstr "próximo"
 
+#: include/text.php:349
+msgid "last"
+msgstr "último"
+
 #: include/text.php:403
 msgid "Loading more entries..."
 msgstr "Baixando mais entradas..."
@@ -2776,935 +2932,911 @@ msgstr "Baixando mais entradas..."
 msgid "The end"
 msgstr "Fim"
 
-#: include/text.php:871
+#: include/text.php:955
 msgid "No contacts"
 msgstr "Nenhum contato"
 
-#: include/text.php:894
+#: include/text.php:980
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contato"
 msgstr[1] "%d contatos"
 
-#: include/text.php:907
+#: include/text.php:993
 msgid "View Contacts"
 msgstr "Ver contatos"
 
-#: include/text.php:995 mod/notes.php:61 mod/filer.php:31 mod/editpost.php:109
+#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
 msgid "Save"
 msgstr "Salvar"
 
-#: include/text.php:1058
+#: include/text.php:1144
 msgid "poke"
 msgstr "cutucar"
 
-#: include/text.php:1058
+#: include/text.php:1144
 msgid "poked"
 msgstr "cutucado"
 
-#: include/text.php:1059
+#: include/text.php:1145
 msgid "ping"
 msgstr "ping"
 
-#: include/text.php:1059
+#: include/text.php:1145
 msgid "pinged"
 msgstr "pingado"
 
-#: include/text.php:1060
+#: include/text.php:1146
 msgid "prod"
 msgstr "incentivar"
 
-#: include/text.php:1060
+#: include/text.php:1146
 msgid "prodded"
 msgstr "incentivado"
 
-#: include/text.php:1061
+#: include/text.php:1147
 msgid "slap"
 msgstr "bater"
 
-#: include/text.php:1061
+#: include/text.php:1147
 msgid "slapped"
 msgstr "batido"
 
-#: include/text.php:1062
+#: include/text.php:1148
 msgid "finger"
 msgstr "apontar"
 
-#: include/text.php:1062
+#: include/text.php:1148
 msgid "fingered"
 msgstr "apontado"
 
-#: include/text.php:1063
+#: include/text.php:1149
 msgid "rebuff"
 msgstr "rejeite"
 
-#: include/text.php:1063
+#: include/text.php:1149
 msgid "rebuffed"
 msgstr "rejeitado"
 
-#: include/text.php:1077
+#: include/text.php:1163
 msgid "happy"
 msgstr "feliz"
 
-#: include/text.php:1078
+#: include/text.php:1164
 msgid "sad"
 msgstr "triste"
 
-#: include/text.php:1079
+#: include/text.php:1165
 msgid "mellow"
 msgstr "desencanado"
 
-#: include/text.php:1080
+#: include/text.php:1166
 msgid "tired"
 msgstr "cansado"
 
-#: include/text.php:1081
+#: include/text.php:1167
 msgid "perky"
 msgstr "audacioso"
 
-#: include/text.php:1082
+#: include/text.php:1168
 msgid "angry"
 msgstr "chateado"
 
-#: include/text.php:1083
+#: include/text.php:1169
 msgid "stupified"
 msgstr "estupefato"
 
-#: include/text.php:1084
+#: include/text.php:1170
 msgid "puzzled"
 msgstr "confuso"
 
-#: include/text.php:1085
+#: include/text.php:1171
 msgid "interested"
 msgstr "interessado"
 
-#: include/text.php:1086
+#: include/text.php:1172
 msgid "bitter"
 msgstr "rancoroso"
 
-#: include/text.php:1087
+#: include/text.php:1173
 msgid "cheerful"
 msgstr "jovial"
 
-#: include/text.php:1088
+#: include/text.php:1174
 msgid "alive"
 msgstr "vivo"
 
-#: include/text.php:1089
+#: include/text.php:1175
 msgid "annoyed"
 msgstr "incomodado"
 
-#: include/text.php:1090
+#: include/text.php:1176
 msgid "anxious"
 msgstr "ansioso"
 
-#: include/text.php:1091
+#: include/text.php:1177
 msgid "cranky"
 msgstr "excêntrico"
 
-#: include/text.php:1092
+#: include/text.php:1178
 msgid "disturbed"
 msgstr "perturbado"
 
-#: include/text.php:1093
+#: include/text.php:1179
 msgid "frustrated"
 msgstr "frustrado"
 
-#: include/text.php:1094
+#: include/text.php:1180
 msgid "motivated"
 msgstr "motivado"
 
-#: include/text.php:1095
+#: include/text.php:1181
 msgid "relaxed"
 msgstr "relaxado"
 
-#: include/text.php:1096
+#: include/text.php:1182
 msgid "surprised"
 msgstr "surpreso"
 
-#: include/text.php:1310 mod/videos.php:383
+#: include/text.php:1392 mod/videos.php:386
 msgid "View Video"
 msgstr "Ver Vídeo"
 
-#: include/text.php:1342
+#: include/text.php:1424
 msgid "bytes"
 msgstr "bytes"
 
-#: include/text.php:1374 include/text.php:1386
+#: include/text.php:1456 include/text.php:1468
 msgid "Click to open/close"
 msgstr "Clique para abrir/fechar"
 
-#: include/text.php:1512
+#: include/text.php:1594
 msgid "View on separate page"
 msgstr "Ver em uma página separada"
 
-#: include/text.php:1513
+#: include/text.php:1595
 msgid "view on separate page"
 msgstr "ver em uma página separada"
 
-#: include/text.php:1792
+#: include/text.php:1874
 msgid "activity"
 msgstr "atividade"
 
-#: include/text.php:1794 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
+#: include/text.php:1876 mod/content.php:623 object/Item.php:419
+#: object/Item.php:431
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "comentário"
 msgstr[1] "comentários"
 
-#: include/text.php:1795
+#: include/text.php:1877
 msgid "post"
 msgstr "publicação"
 
-#: include/text.php:1963
+#: include/text.php:2045
 msgid "Item filed"
 msgstr "O item foi arquivado"
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Erro ao decodificar arquivo de conta"
+#: mod/allfriends.php:46
+msgid "No friends to display."
+msgstr "Nenhum amigo para exibir."
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erro! Não consigo conferir o apelido (nickname)"
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
 
-#: include/uimport.php:120 include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' já existe nesse servidor!"
+#: mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
 
-#: include/uimport.php:153
-msgid "User creation error"
-msgstr "Erro na criação do usuário"
+#: mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
-#: include/uimport.php:173
-msgid "User profile creation error"
-msgstr "Erro na criação do perfil do Usuário"
+#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
+#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
+#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
+#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
+#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238
+msgid "No"
+msgstr "Não"
 
-#: include/uimport.php:222
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contato não foi importado"
-msgstr[1] "%d contatos não foram importados"
+#: mod/apps.php:7 index.php:254
+msgid "You must be logged in to use addons. "
+msgstr "Você precisa estar logado para usar os addons."
 
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
-msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha."
+#: mod/apps.php:11
+msgid "Applications"
+msgstr "Aplicativos"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "Sistema"
+#: mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nenhum aplicativo instalado"
 
-#: include/NotificationsManager.php:167 mod/network.php:844
-#: mod/profiles.php:696
-msgid "Personal"
-msgstr "Pessoal"
+#: mod/attach.php:8
+msgid "Item not available."
+msgstr "O item não está disponível."
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s comentou uma publicação de %s"
+#: mod/attach.php:20
+msgid "Item was not found."
+msgstr "O item não foi encontrado."
 
-#: include/NotificationsManager.php:244
-#, php-format
-msgid "%s created a new post"
-msgstr "%s criou uma nova publicação"
+#: mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "O texto foi criado"
 
-#: include/NotificationsManager.php:258
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s gostou da publicação de %s"
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Nenhum contato em comum."
 
-#: include/NotificationsManager.php:269
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s desgostou da publicação de %s"
+#: mod/common.php:141 mod/contacts.php:871
+msgid "Common Friends"
+msgstr "Amigos em Comum"
 
-#: include/NotificationsManager.php:280
+#: mod/contacts.php:134
 #, php-format
-msgid "%s is attending %s's event"
-msgstr "%s vai comparecer ao evento de %s"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s não vai comparecer ao evento de %s"
+#: mod/contacts.php:169 mod/contacts.php:378
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: include/NotificationsManager.php:302
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s talvez compareça ao evento de %s"
+#: mod/contacts.php:183
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
 
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s agora é amigo de %s"
+#: mod/contacts.php:216
+msgid "Contact updated."
+msgstr "O contato foi atualizado."
 
-#: include/NotificationsManager.php:750
-msgid "Friend Suggestion"
-msgstr "Sugestão de amigo"
+#: mod/contacts.php:218 mod/dfrn_request.php:593
+msgid "Failed to update contact record."
+msgstr "Não foi possível atualizar o registro do contato."
 
-#: include/NotificationsManager.php:783
-msgid "Friend/Connect Request"
-msgstr "Solicitação de amizade/conexão"
+#: mod/contacts.php:399
+msgid "Contact has been blocked"
+msgstr "O contato foi bloqueado"
 
-#: include/NotificationsManager.php:783
-msgid "New Follower"
-msgstr "Novo acompanhante"
+#: mod/contacts.php:399
+msgid "Contact has been unblocked"
+msgstr "O contato foi desbloqueado"
 
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publicado com sucesso."
+#: mod/contacts.php:410
+msgid "Contact has been ignored"
+msgstr "O contato foi ignorado"
 
-#: mod/update_community.php:18 mod/update_notes.php:37
-#: mod/update_display.php:22 mod/update_profile.php:41
-#: mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Conteúdo incorporado - recarregue a página para ver]"
+#: mod/contacts.php:410
+msgid "Contact has been unignored"
+msgstr "O contato deixou de ser ignorado"
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Acesso negado."
+#: mod/contacts.php:422
+msgid "Contact has been archived"
+msgstr "O contato foi arquivado"
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
+#: mod/contacts.php:422
+msgid "Contact has been unarchived"
+msgstr "O contato foi desarquivado"
 
-#: mod/notify.php:60
-msgid "No more system notifications."
-msgstr "Não fazer notificações de sistema."
+#: mod/contacts.php:447
+msgid "Drop contact"
+msgstr ""
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "Notificações de sistema"
+#: mod/contacts.php:450 mod/contacts.php:809
+msgid "Do you really want to delete this contact?"
+msgstr "Você realmente deseja deletar esse contato?"
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
-msgstr "Remover o termo"
+#: mod/contacts.php:469
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
 
-#: mod/search.php:93 mod/search.php:99 mod/directory.php:37
-#: mod/viewcontacts.php:35 mod/display.php:199 mod/community.php:22
-#: mod/dfrn_request.php:790 mod/videos.php:197 mod/photos.php:964
-msgid "Public access denied."
-msgstr "Acesso público negado."
+#: mod/contacts.php:506
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Você tem uma amizade mútua com %s"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
+#: mod/contacts.php:510
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Você está compartilhando com %s"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr ""
+#: mod/contacts.php:515
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s está compartilhando com você"
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
+#: mod/contacts.php:535
+msgid "Private communications are not available for this contact."
+msgstr "As comunicações privadas não estão disponíveis para este contato."
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
-msgid "No results."
-msgstr "Nenhum resultado."
+#: mod/contacts.php:538 mod/admin.php:978
+msgid "Never"
+msgstr "Nunca"
 
-#: mod/search.php:230
-#, php-format
-msgid "Items tagged with: %s"
-msgstr ""
+#: mod/contacts.php:542
+msgid "(Update was successful)"
+msgstr "(A atualização foi bem sucedida)"
 
-#: mod/search.php:232 mod/network.php:146 mod/contacts.php:795
-#, php-format
-msgid "Results for: %s"
-msgstr ""
+#: mod/contacts.php:542
+msgid "(Update was not successful)"
+msgstr "(A atualização não foi bem sucedida)"
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
-msgstr "Este é o Friendica, versão"
+#: mod/contacts.php:544 mod/contacts.php:972
+msgid "Suggest friends"
+msgstr "Sugerir amigos"
 
-#: mod/friendica.php:71
-msgid "running at web location"
-msgstr "sendo executado no endereço web"
+#: mod/contacts.php:548
+#, php-format
+msgid "Network type: %s"
+msgstr "Tipo de rede: %s"
 
-#: mod/friendica.php:73
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
+#: mod/contacts.php:561
+msgid "Communications lost with this contact!"
+msgstr "As comunicações com esse contato foram perdidas!"
 
-#: mod/friendica.php:75
-msgid "Bug reports and issues: please visit"
-msgstr "Relate ou acompanhe um erro no"
+#: mod/contacts.php:564
+msgid "Fetch further information for feeds"
+msgstr "Pega mais informações para feeds"
 
-#: mod/friendica.php:75
-msgid "the bugtracker at github"
-msgstr "GitHub"
+#: mod/contacts.php:565 mod/admin.php:987
+msgid "Disabled"
+msgstr "Desabilitado"
 
-#: mod/friendica.php:76
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
+#: mod/contacts.php:565
+msgid "Fetch information"
+msgstr "Buscar informações"
 
-#: mod/friendica.php:90
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/complementos/aplicações instaladas:"
+#: mod/contacts.php:565
+msgid "Fetch information and keywords"
+msgstr "Buscar informação e palavras-chave"
 
-#: mod/friendica.php:103
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicativo instalado"
+#: mod/contacts.php:583
+msgid "Contact"
+msgstr ""
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Não foi encontrada nenhuma conta válida."
+#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
+#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
+#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
+#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
+#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
+#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
+#: mod/install.php:242 mod/install.php:282 object/Item.php:705
+#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
+#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
+msgid "Submit"
+msgstr "Enviar"
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
+#: mod/contacts.php:586
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
 
-#: mod/lostpass.php:42
+#: mod/contacts.php:587
 #, php-format
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tPrezado %1$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
 
-#: mod/lostpass.php:53
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2$s\n\t\tNome de Login:\t%3$s"
+#: mod/contacts.php:588
+msgid "Contact Information / Notes"
+msgstr "Informações sobre o contato / Anotações"
+
+#: mod/contacts.php:589
+msgid "Edit contact notes"
+msgstr "Editar as anotações do contato"
 
-#: mod/lostpass.php:72
+#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
+#: mod/viewcontacts.php:102
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
+msgid "Visit %s's profile [%s]"
+msgstr "Visitar o perfil de %s [%s]"
 
-#: mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
+#: mod/contacts.php:595
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
 
-#: mod/lostpass.php:109 boot.php:1670
-msgid "Password Reset"
-msgstr "Redifinir a senha"
+#: mod/contacts.php:596
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
 
-#: mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi reiniciada, conforme solicitado."
+#: mod/contacts.php:597
+msgid "Repair URL settings"
+msgstr "Reparar as definições de URL"
 
-#: mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Sua nova senha é"
+#: mod/contacts.php:598
+msgid "View conversations"
+msgstr "Ver as conversas"
 
-#: mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Grave ou copie a sua nova senha e, então"
+#: mod/contacts.php:604
+msgid "Last update:"
+msgstr "Última atualização:"
 
-#: mod/lostpass.php:113
-msgid "click here to login"
-msgstr "clique aqui para entrar"
+#: mod/contacts.php:606
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
 
-#: mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
+#: mod/contacts.php:608 mod/contacts.php:982
+msgid "Update now"
+msgstr "Atualizar agora"
 
-#: mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tCaro %1$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1510
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: mod/lostpass.php:131
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1$s\n\t\t\t\tNome de Login:\t%2$s\n\t\t\t\tSenha:\t%3$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1509
+msgid "Block"
+msgstr "Bloquear"
 
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Sua senha foi modifica às %s"
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+msgid "Unignore"
+msgstr "Deixar de ignorar"
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+#: mod/notifications.php:60 mod/notifications.php:179
+#: mod/notifications.php:263
+msgid "Ignore"
+msgstr "Ignorar"
 
-#: mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
+#: mod/contacts.php:618
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
 
-#: mod/lostpass.php:161 boot.php:1658
-msgid "Nickname or Email: "
-msgstr "Identificação ou e-mail: "
-
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reiniciar"
+#: mod/contacts.php:619
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
 
-#: mod/hcard.php:10
-msgid "No profile"
-msgstr "Nenhum perfil"
+#: mod/contacts.php:620
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
 
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Ajuda:"
+#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
+msgid "Hide this contact from others"
+msgstr "Ocultar este contato dos outros"
 
-#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
-#: mod/fetch.php:39 mod/fetch.php:48 index.php:284
-msgid "Not Found"
-msgstr "Não encontrada"
+#: mod/contacts.php:621
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
 
-#: mod/help.php:56 index.php:287
-msgid "Page not found."
-msgstr "Página não encontrada."
+#: mod/contacts.php:622
+msgid "Notification for new posts"
+msgstr "Notificações para novas publicações"
 
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76
-msgid "Invalid request."
-msgstr "Solicitação inválida."
+#: mod/contacts.php:622
+msgid "Send a notification of every new post of this contact"
+msgstr "Envie uma notificação para todos as novas publicações deste contato"
 
-#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:806
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr ""
+#: mod/contacts.php:625
+msgid "Blacklisted keywords"
+msgstr "Palavras-chave na Lista Negra"
 
-#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:846
-msgid "Unable to process image."
-msgstr "Não foi possível processar a imagem."
+#: mod/contacts.php:625
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."
 
-#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:873
-msgid "Image upload failed."
-msgstr "Não foi possível enviar a imagem."
+#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
+msgid "Profile URL"
+msgstr "URL do perfil"
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Não existe informação disponível sobre a privacidade remota."
+#: mod/contacts.php:643
+msgid "Actions"
+msgstr ""
 
-#: mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visível para:"
+#: mod/contacts.php:646
+msgid "Contact Settings"
+msgstr ""
 
-#: mod/directory.php:205 view/theme/vier/theme.php:201
-#: view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Diretório global"
+#: mod/contacts.php:692
+msgid "Suggestions"
+msgstr "Sugestões"
 
-#: mod/directory.php:207
-msgid "Find on this site"
-msgstr "Pesquisar neste site"
+#: mod/contacts.php:695
+msgid "Suggest potential friends"
+msgstr "Sugerir amigos em potencial"
 
-#: mod/directory.php:209
-msgid "Results for:"
-msgstr ""
+#: mod/contacts.php:700 mod/group.php:212
+msgid "All Contacts"
+msgstr "Todos os contatos"
 
-#: mod/directory.php:211
-msgid "Site Directory"
-msgstr "Diretório do site"
+#: mod/contacts.php:703
+msgid "Show all contacts"
+msgstr "Exibe todos os contatos"
 
-#: mod/directory.php:218
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
+#: mod/contacts.php:708
+msgid "Unblocked"
+msgstr "Desbloquear"
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
+#: mod/contacts.php:711
+msgid "Only show unblocked contacts"
+msgstr "Exibe somente contatos desbloqueados"
 
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
+#: mod/contacts.php:717
+msgid "Blocked"
+msgstr "Bloqueado"
 
-#: mod/uimport.php:50 mod/register.php:191
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
+#: mod/contacts.php:720
+msgid "Only show blocked contacts"
+msgstr "Exibe somente contatos bloqueados"
 
-#: mod/uimport.php:64 mod/register.php:286
-msgid "Import"
-msgstr "Importar"
+#: mod/contacts.php:726
+msgid "Ignored"
+msgstr "Ignorados"
 
-#: mod/uimport.php:66
-msgid "Move account"
-msgstr "Mover conta"
+#: mod/contacts.php:729
+msgid "Only show ignored contacts"
+msgstr "Exibe somente contatos ignorados"
 
-#: mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Você pode importar um conta de outro sevidor Friendica."
+#: mod/contacts.php:735
+msgid "Archived"
+msgstr "Arquivados"
 
-#: mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."
+#: mod/contacts.php:738
+msgid "Only show archived contacts"
+msgstr "Exibe somente contatos arquivados"
 
-#: mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora."
+#: mod/contacts.php:744
+msgid "Hidden"
+msgstr "Ocultos"
 
-#: mod/uimport.php:70
-msgid "Account file"
-msgstr "Arquivo de conta"
+#: mod/contacts.php:747
+msgid "Only show hidden contacts"
+msgstr "Exibe somente contatos ocultos"
 
-#: mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
+#: mod/contacts.php:804
+msgid "Search your contacts"
+msgstr "Pesquisar seus contatos"
 
-#: mod/nogroup.php:41 mod/viewcontacts.php:97 mod/contacts.php:586
-#: mod/contacts.php:944
+#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227
 #, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visitar o perfil de %s [%s]"
-
-#: mod/nogroup.php:42 mod/contacts.php:945
-msgid "Edit contact"
-msgstr "Editar o contato"
+msgid "Results for: %s"
+msgstr ""
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Contatos que não são membros de um grupo"
+#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
+msgid "Update"
+msgstr "Atualizar"
 
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Archive"
+msgstr "Arquivar"
 
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr "se interessa por:"
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Unarchive"
+msgstr "Desarquivar"
 
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr "Correspondência de perfil"
+#: mod/contacts.php:818
+msgid "Batch Actions"
+msgstr ""
 
-#: mod/match.php:107 mod/dirfind.php:240
-msgid "No matches"
-msgstr "Nenhuma correspondência"
+#: mod/contacts.php:864
+msgid "View all contacts"
+msgstr "Ver todos os contatos"
 
-#: mod/uexport.php:29
-msgid "Export account"
-msgstr "Exportar conta"
+#: mod/contacts.php:874
+msgid "View all common friends"
+msgstr ""
 
-#: mod/uexport.php:29
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."
+#: mod/contacts.php:881
+msgid "Advanced Contact Settings"
+msgstr "Configurações avançadas do contato"
 
-#: mod/uexport.php:30
-msgid "Export all"
-msgstr "Exportar tudo"
+#: mod/contacts.php:915
+msgid "Mutual Friendship"
+msgstr "Amizade mútua"
 
-#: mod/uexport.php:30
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
+#: mod/contacts.php:919
+msgid "is a fan of yours"
+msgstr "é um fã seu"
 
-#: mod/uexport.php:37 mod/settings.php:95
-msgid "Export personal data"
-msgstr "Exportar dados pessoais"
+#: mod/contacts.php:923
+msgid "you are a fan of"
+msgstr "você é um fã de"
 
-#: mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite de convites totais excedido."
+#: mod/contacts.php:939 mod/nogroup.php:44
+msgid "Edit contact"
+msgstr "Editar o contato"
 
-#: mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Não é um endereço de e-mail válido."
+#: mod/contacts.php:993
+msgid "Toggle Blocked status"
+msgstr "Alternar o status de bloqueio"
 
-#: mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Por favor, junte-se à nós na Friendica"
+#: mod/contacts.php:1001
+msgid "Toggle Ignored status"
+msgstr "Alternar o status de ignorado"
 
-#: mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
+#: mod/contacts.php:1009
+msgid "Toggle Archive status"
+msgstr "Alternar o status de arquivamento"
 
-#: mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Não foi possível enviar a mensagem."
+#: mod/contacts.php:1017
+msgid "Delete contact"
+msgstr "Excluir o contato"
 
-#: mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d mensagem enviada."
-msgstr[1] "%d mensagens enviadas."
+#: mod/content.php:119 mod/network.php:475
+msgid "No such group"
+msgstr "Este grupo não existe"
 
-#: mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Você não possui mais convites disponíveis"
+#: mod/content.php:130 mod/group.php:213 mod/network.php:502
+msgid "Group is empty"
+msgstr "O grupo está vazio"
 
-#: mod/invite.php:120
+#: mod/content.php:135 mod/network.php:506
 #, 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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+msgid "Group: %s"
+msgstr "Grupo: %s"
 
-#: mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+#: mod/content.php:325 object/Item.php:96
+msgid "This entry was edited"
+msgstr "Essa entrada foi editada"
 
-#: mod/invite.php:123
+#: mod/content.php:621 object/Item.php:417
 #, 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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comentário"
+msgstr[1] "%d comentários"
 
-#: mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
+#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117
+msgid "Private Message"
+msgstr "Mensagem privada"
 
-#: mod/invite.php:132
-msgid "Send invitations"
-msgstr "Enviar convites."
+#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274
+msgid "I like this (toggle)"
+msgstr "Eu gostei disso (alternar)"
 
-#: mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Digite os endereços de e-mail, um por linha:"
+#: mod/content.php:702 object/Item.php:274
+msgid "like"
+msgstr "gostei"
 
-#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
-#: mod/message.php:541
-msgid "Your message:"
-msgstr "Sua mensagem:"
+#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275
+msgid "I don't like this (toggle)"
+msgstr "Eu não gostei disso (alternar)"
 
-#: mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+#: mod/content.php:703 object/Item.php:275
+msgid "dislike"
+msgstr "desgostar"
 
-#: mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Você preciso informar este código de convite: $invite_code"
+#: mod/content.php:705 object/Item.php:278
+msgid "Share this"
+msgstr "Compartilhar isso"
 
-#: mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+#: mod/content.php:705 object/Item.php:278
+msgid "share"
+msgstr "compartilhar"
 
-#: mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685
+#: mod/photos.php:1765 object/Item.php:702
+msgid "This is you"
+msgstr "Este(a) é você"
 
-#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
-#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
-#: mod/content.php:728 mod/contacts.php:577 mod/events.php:507
-#: mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199 mod/profiles.php:681
-#: mod/install.php:272 mod/install.php:312 mod/photos.php:1125
-#: mod/photos.php:1249 mod/photos.php:1566 mod/photos.php:1617
-#: mod/photos.php:1665 mod/photos.php:1753 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
-#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
-#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
-#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Enviar"
+#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645
+#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392
+#: object/Item.php:704
+msgid "Comment"
+msgstr "Comentar"
 
-#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:63
-#: mod/photos.php:193 mod/photos.php:1107 mod/photos.php:1233
-#: mod/photos.php:1256 mod/photos.php:1825 mod/photos.php:1837
-#: view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Fotos dos contatos"
+#: mod/content.php:729 object/Item.php:706
+msgid "Bold"
+msgstr "Negrito"
 
-#: mod/fbrowser.php:133
-msgid "Files"
-msgstr "Arquivos"
+#: mod/content.php:730 object/Item.php:707
+msgid "Italic"
+msgstr "Itálico"
 
-#: mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Sistema em manutenção"
+#: mod/content.php:731 object/Item.php:708
+msgid "Underline"
+msgstr "Sublinhado"
 
-#: mod/profperm.php:19 mod/group.php:72 index.php:396
-msgid "Permission denied"
-msgstr "Permissão negada"
+#: mod/content.php:732 object/Item.php:709
+msgid "Quote"
+msgstr "Citação"
 
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
+#: mod/content.php:733 object/Item.php:710
+msgid "Code"
+msgstr "Código"
 
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
+#: mod/content.php:734 object/Item.php:711
+msgid "Image"
+msgstr "Imagem"
 
-#: mod/profperm.php:106 mod/group.php:223
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
+#: mod/content.php:735 object/Item.php:712
+msgid "Link"
+msgstr "Link"
 
-#: mod/profperm.php:115
-msgid "Visible To"
-msgstr "Visível para"
+#: mod/content.php:736 object/Item.php:713
+msgid "Video"
+msgstr "Vídeo"
 
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
-msgstr "Todos os contatos (com acesso a perfil seguro)"
+#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
+msgstr "Editar"
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Nenhum contato."
+#: mod/content.php:772 object/Item.php:238
+msgid "add star"
+msgstr "destacar"
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
+#: mod/content.php:773 object/Item.php:239
+msgid "remove star"
+msgstr "remover o destaque"
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta do item"
+#: mod/content.php:774 object/Item.php:240
+msgid "toggle star status"
+msgstr "ativa/desativa o destaque"
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
+#: mod/content.php:777 object/Item.php:243
+msgid "starred"
+msgstr "marcado com estrela"
 
-#: mod/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
-msgstr "Remover"
+#: mod/content.php:778 mod/content.php:800 object/Item.php:263
+msgid "add tag"
+msgstr "adicionar etiqueta"
 
-#: mod/ping.php:272
-msgid "{0} wants to be your friend"
-msgstr "{0} deseja ser seu amigo"
+#: mod/content.php:789 object/Item.php:251
+msgid "ignore thread"
+msgstr "ignorar tópico"
 
-#: mod/ping.php:287
-msgid "{0} sent you a message"
-msgstr "{0} lhe enviou uma mensagem"
+#: mod/content.php:790 object/Item.php:252
+msgid "unignore thread"
+msgstr "deixar de ignorar tópico"
 
-#: mod/ping.php:302
-msgid "{0} requested registration"
-msgstr "{0} solicitou registro"
+#: mod/content.php:791 object/Item.php:253
+msgid "toggle ignore status"
+msgstr "alternar status ignorar"
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
+#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
+msgid "ignored"
+msgstr "Ignorado"
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Ou - você tentou enviar um arquivo vazio?"
+#: mod/content.php:805 object/Item.php:141
+msgid "save to folder"
+msgstr "salvar na pasta"
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr ""
+#: mod/content.php:853 object/Item.php:212
+msgid "I will attend"
+msgstr "Eu vou"
 
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Não foi possível enviar o arquivo."
+#: mod/content.php:853 object/Item.php:212
+msgid "I will not attend"
+msgstr "Eu não vou"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Nenhum amigo para exibir."
+#: mod/content.php:853 object/Item.php:212
+msgid "I might attend"
+msgstr "Eu estou pensando em ir"
 
-#: mod/cal.php:152 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "O acesso a este perfil está restrito."
+#: mod/content.php:917 object/Item.php:358
+msgid "to"
+msgstr "para"
 
-#: mod/cal.php:279 mod/events.php:380
-msgid "View"
-msgstr ""
+#: mod/content.php:918 object/Item.php:360
+msgid "Wall-to-Wall"
+msgstr "Mural-para-mural"
 
-#: mod/cal.php:280 mod/events.php:382
-msgid "Previous"
-msgstr "Anterior"
+#: mod/content.php:919 object/Item.php:361
+msgid "via Wall-To-Wall:"
+msgstr "via Mural-para-mural"
 
-#: mod/cal.php:281 mod/events.php:383 mod/install.php:231
-msgid "Next"
-msgstr "Próximo"
+#: mod/credits.php:16
+msgid "Credits"
+msgstr ""
 
-#: mod/cal.php:301
-msgid "User not found"
+#: mod/credits.php:17
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
 msgstr ""
 
-#: mod/cal.php:317
-msgid "This calendar format is not supported"
-msgstr "Esse formato de agenda não é contemplado"
+#: mod/crepair.php:89
+msgid "Contact settings applied."
+msgstr "As configurações do contato foram aplicadas."
 
-#: mod/cal.php:319
-msgid "No exportable data found"
-msgstr ""
+#: mod/crepair.php:91
+msgid "Contact update failed."
+msgstr "Não foi possível atualizar o contato."
 
-#: mod/cal.php:327
-msgid "calendar"
-msgstr "agenda"
+#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
+#: mod/dfrn_confirm.php:126
+msgid "Contact not found."
+msgstr "O contato não foi encontrado."
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
+#: mod/crepair.php:122
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr "Erro"
+#: mod/crepair.php:123
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
-msgstr ""
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "No mirroring"
+msgstr "Nenhum espelhamento"
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
+#: mod/crepair.php:136
+msgid "Mirror as forwarded posting"
+msgstr "Espelhar como postagem encaminhada"
+
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "Mirror as my own posting"
+msgstr "Espelhar como minha própria postagem"
+
+#: mod/crepair.php:152
+msgid "Return to contact editor"
+msgstr "Voltar ao editor de contatos"
+
+#: mod/crepair.php:154
+msgid "Refetch contact data"
 msgstr ""
 
+#: mod/crepair.php:158
+msgid "Remote Self"
+msgstr "Eu remoto"
+
+#: mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Espelhar publicações deste contato"
+
+#: mod/crepair.php:163
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário."
+
+#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
+msgid "Name"
+msgstr "Nome"
+
+#: mod/crepair.php:168
+msgid "Account Nickname"
+msgstr "Identificação da conta"
+
+#: mod/crepair.php:169
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - sobrescreve Nome/Identificação"
+
+#: mod/crepair.php:170
+msgid "Account URL"
+msgstr "URL da conta"
+
+#: mod/crepair.php:171
+msgid "Friend Request URL"
+msgstr "URL da requisição de amizade"
+
+#: mod/crepair.php:172
+msgid "Friend Confirm URL"
+msgstr "URL da confirmação de amizade"
+
+#: mod/crepair.php:173
+msgid "Notification Endpoint URL"
+msgstr "URL do ponto final da notificação"
+
+#: mod/crepair.php:174
+msgid "Poll/Feed URL"
+msgstr "URL do captador/fonte de notícias"
+
+#: mod/crepair.php:175
+msgid "New photo from this URL"
+msgstr "Nova imagem desta URL"
+
 #: mod/delegate.php:101
 msgid "No potential page delegates located."
 msgstr "Nenhuma página delegada potencial localizada."
@@ -3728,6 +3860,10 @@ msgstr "Delegados de Páginas Existentes"
 msgid "Potential Delegates"
 msgstr "Delegados Potenciais"
 
+#: mod/delegate.php:139 mod/tagrm.php:95
+msgid "Remove"
+msgstr "Remover"
+
 #: mod/delegate.php:140
 msgid "Add"
 msgstr "Adicionar"
@@ -3736,130 +3872,384 @@ msgstr "Adicionar"
 msgid "No entries."
 msgstr "Sem entradas."
 
-#: mod/credits.php:16
-msgid "Credits"
-msgstr ""
-
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr ""
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s dá as boas vinda à %2$s"
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "-selecione-"
+#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36
+#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979
+#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198
+#: mod/webfinger.php:8
+msgid "Public access denied."
+msgstr "Acesso público negado."
 
-#: mod/subthread.php:103
+#: mod/directory.php:199 view/theme/vier/theme.php:199
+msgid "Global Directory"
+msgstr "Diretório global"
+
+#: mod/directory.php:201
+msgid "Find on this site"
+msgstr "Pesquisar neste site"
+
+#: mod/directory.php:203
+msgid "Results for:"
+msgstr ""
+
+#: mod/directory.php:205
+msgid "Site Directory"
+msgstr "Diretório do site"
+
+#: mod/directory.php:212
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
+
+#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "O acesso a este perfil está restrito."
+
+#: mod/display.php:479
+msgid "Item has been removed."
+msgstr "O item foi removido."
+
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
+msgstr "O item não foi encontrado"
+
+#: mod/editpost.php:32
+msgid "Edit post"
+msgstr "Editar a publicação"
+
+#: mod/fbrowser.php:132
+msgid "Files"
+msgstr "Arquivos"
+
+#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53
+#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298
+msgid "Not Found"
+msgstr "Não encontrada"
+
+#: mod/filer.php:30
+msgid "- select -"
+msgstr "-selecione-"
+
+#: mod/fsuggest.php:64
+msgid "Friend suggestion sent."
+msgstr "A sugestão de amigo foi enviada"
+
+#: mod/fsuggest.php:98
+msgid "Suggest Friends"
+msgstr "Sugerir amigos"
+
+#: mod/fsuggest.php:100
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s está seguindo %2$s's %3$s"
+msgid "Suggest a friend for %s"
+msgstr "Sugerir um amigo para %s"
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "O item não está disponível."
+#: mod/hcard.php:11
+msgid "No profile"
+msgstr "Nenhum perfil"
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "O item não foi encontrado."
+#: mod/help.php:41
+msgid "Help:"
+msgstr "Ajuda:"
 
-#: mod/follow.php:19 mod/dfrn_request.php:874
-msgid "Submit Request"
-msgstr "Enviar solicitação"
+#: mod/help.php:56 index.php:301
+msgid "Page not found."
+msgstr "Página não encontrada."
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Você já adicionou esse contato."
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr ""
+#: mod/invite.php:28
+msgid "Total invitation limit exceeded."
+msgstr "Limite de convites totais excedido."
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr ""
+#: mod/invite.php:51
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Não é um endereço de e-mail válido."
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr ""
+#: mod/invite.php:76
+msgid "Please join us on Friendica"
+msgstr "Por favor, junte-se à nós na Friendica"
 
-#: mod/follow.php:109 mod/dfrn_request.php:860
-msgid "Please answer the following:"
-msgstr "Por favor, entre com as informações solicitadas:"
+#: mod/invite.php:87
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
 
-#: mod/follow.php:110 mod/dfrn_request.php:861
+#: mod/invite.php:91
 #, php-format
-msgid "Does %s know you?"
-msgstr "%s conhece você?"
+msgid "%s : Message delivery failed."
+msgstr "%s : Não foi possível enviar a mensagem."
 
-#: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
-#: mod/profiles.php:641 mod/profiles.php:645 mod/profiles.php:670
-#: mod/register.php:239 mod/settings.php:1113 mod/settings.php:1119
-#: mod/settings.php:1127 mod/settings.php:1131 mod/settings.php:1136
-#: mod/settings.php:1142 mod/settings.php:1148 mod/settings.php:1154
-#: mod/settings.php:1180 mod/settings.php:1181 mod/settings.php:1182
-#: mod/settings.php:1183 mod/settings.php:1184
-msgid "No"
-msgstr "Não"
+#: mod/invite.php:95
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mensagem enviada."
+msgstr[1] "%d mensagens enviadas."
 
-#: mod/follow.php:111 mod/dfrn_request.php:865
-msgid "Add a personal note:"
-msgstr "Adicione uma anotação pessoal:"
+#: mod/invite.php:114
+msgid "You have no more invitations available"
+msgstr "Você não possui mais convites disponíveis"
 
-#: mod/follow.php:117 mod/dfrn_request.php:871
-msgid "Your Identity Address:"
-msgstr "Seu endereço de identificação:"
+#: mod/invite.php:122
+#, 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 "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
 
-#: mod/follow.php:126 mod/contacts.php:624 mod/notifications.php:243
-msgid "Profile URL"
-msgstr "URL do perfil"
+#: mod/invite.php:124
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
 
-#: mod/follow.php:180
-msgid "Contact added"
-msgstr "O contato foi adicionado"
+#: mod/invite.php:125
+#, 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 "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
 
-#: mod/apps.php:7 index.php:240
-msgid "You must be logged in to use addons. "
-msgstr "Você precisa estar logado para usar os addons."
+#: mod/invite.php:128
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Aplicativos"
+#: mod/invite.php:134
+msgid "Send invitations"
+msgstr "Enviar convites."
+
+#: mod/invite.php:135
+msgid "Enter email addresses, one per line:"
+msgstr "Digite os endereços de e-mail, um por linha:"
+
+#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332
+#: mod/message.php:515
+msgid "Your message:"
+msgstr "Sua mensagem:"
+
+#: mod/invite.php:137
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+
+#: mod/invite.php:139
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Você preciso informar este código de convite: $invite_code"
+
+#: mod/invite.php:139
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+
+#: mod/invite.php:141
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+
+#: mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversão de tempo"
+
+#: mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos."
+
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Hora UTC: %s"
+
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso horário atual: %s"
+
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Horário local convertido: %s"
+
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Por favor, selecione seu fuso horário:"
+
+#: mod/lockview.php:32 mod/lockview.php:40
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
+
+#: mod/lockview.php:49
+msgid "Visible to:"
+msgstr "Visível para:"
+
+#: mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Não foi encontrada nenhuma conta válida."
+
+#: mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
+
+#: mod/lostpass.php:41
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tPrezado %1$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."
+
+#: mod/lostpass.php:52
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2$s\n\t\tNome de Login:\t%3$s"
+
+#: mod/lostpass.php:71
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
+
+#: mod/lostpass.php:91
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
+
+#: mod/lostpass.php:110 boot.php:1882
+msgid "Password Reset"
+msgstr "Redifinir a senha"
+
+#: mod/lostpass.php:111
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi reiniciada, conforme solicitado."
+
+#: mod/lostpass.php:112
+msgid "Your new password is"
+msgstr "Sua nova senha é"
+
+#: mod/lostpass.php:113
+msgid "Save or copy your new password - and then"
+msgstr "Grave ou copie a sua nova senha e, então"
+
+#: mod/lostpass.php:114
+msgid "click here to login"
+msgstr "clique aqui para entrar"
+
+#: mod/lostpass.php:115
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
+
+#: mod/lostpass.php:125
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tCaro %1$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"
+
+#: mod/lostpass.php:131
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1$s\n\t\t\t\tNome de Login:\t%2$s\n\t\t\t\tSenha:\t%3$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"
+
+#: mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Sua senha foi modifica às %s"
+
+#: mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
+
+#: mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
+
+#: mod/lostpass.php:161 boot.php:1870
+msgid "Nickname or Email: "
+msgstr "Identificação ou e-mail: "
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nenhum aplicativo instalado"
+#: mod/lostpass.php:162
+msgid "Reset"
+msgstr "Reiniciar"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Você realmente deseja deletar essa sugestão?"
+#: mod/maintenance.php:20
+msgid "System down for maintenance"
+msgstr "Sistema em manutenção"
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
+#: mod/match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorar/Ocultar"
+#: mod/match.php:88
+msgid "is interested in:"
+msgstr "se interessa por:"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr ""
+#: mod/match.php:102
+msgid "Profile Match"
+msgstr "Correspondência de perfil"
 
-#: mod/display.php:471
-msgid "Item has been removed."
-msgstr "O item foi removido."
+#: mod/match.php:109 mod/dirfind.php:245
+msgid "No matches"
+msgstr "Nenhuma correspondência"
 
-#: mod/common.php:86
-msgid "No contacts in common."
-msgstr "Nenhum contato em comum."
+#: mod/mood.php:134
+msgid "Mood"
+msgstr "Humor"
 
-#: mod/common.php:134 mod/contacts.php:861
-msgid "Common Friends"
-msgstr "Amigos em Comum"
+#: mod/mood.php:135
+msgid "Set your current mood and tell your friends"
+msgstr "Defina o seu humor e conte aos seus amigos"
 
 #: mod/newmember.php:6
 msgid "Welcome to Friendica"
@@ -3911,7 +4301,7 @@ msgid ""
 "potential friends know exactly how to find you."
 msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
 
-#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:700
+#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700
 msgid "Upload Profile Photo"
 msgstr "Enviar foto do perfil"
 
@@ -4030,257 +4420,367 @@ msgid ""
 " features and resources."
 msgstr "Consulte nossas páginas de <strong>ajuda</strong> para mais detalhes sobre as características e recursos do programa."
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Remover minha conta"
+#: mod/nogroup.php:65
+msgid "Contacts who are not members of a group"
+msgstr "Contatos que não são membros de um grupo"
 
-#: mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
+#: mod/notify.php:65
+msgid "No more system notifications."
+msgstr "Não fazer notificações de sistema."
 
-#: mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Por favor, digite a sua senha para verificação:"
+#: mod/notify.php:69 mod/notifications.php:111
+msgid "System Notifications"
+msgstr "Notificações de sistema"
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "O item não foi encontrado"
+#: mod/oexchange.php:21
+msgid "Post successful."
+msgstr "Publicado com sucesso."
 
-#: mod/editpost.php:40
-msgid "Edit post"
-msgstr "Editar a publicação"
+#: mod/ostatus_subscribe.php:14
+msgid "Subscribing to OStatus contacts"
+msgstr ""
 
-#: mod/network.php:398
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Aviso: Este grupo contém %s membro de uma rede insegura."
-msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
+#: mod/ostatus_subscribe.php:25
+msgid "No contact provided."
+msgstr ""
 
-#: mod/network.php:401
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
+#: mod/ostatus_subscribe.php:31
+msgid "Couldn't fetch information for contact."
+msgstr ""
 
-#: mod/network.php:468 mod/content.php:119
-msgid "No such group"
-msgstr "Este grupo não existe"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch friends for contact."
+msgstr ""
 
-#: mod/network.php:495 mod/group.php:193 mod/content.php:130
-msgid "Group is empty"
-msgstr "O grupo está vazio"
+#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
+msgid "Done"
+msgstr ""
+
+#: mod/ostatus_subscribe.php:68
+msgid "success"
+msgstr "sucesso"
+
+#: mod/ostatus_subscribe.php:70
+msgid "failed"
+msgstr ""
+
+#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
+msgid "Keep this window open until done."
+msgstr ""
+
+#: mod/p.php:9
+msgid "Not Extended"
+msgstr ""
+
+#: mod/poke.php:196
+msgid "Poke/Prod"
+msgstr "Cutucar/Incitar"
+
+#: mod/poke.php:197
+msgid "poke, prod or do other things to somebody"
+msgstr "Cutuca, incita ou faz outras coisas com alguém"
+
+#: mod/poke.php:198
+msgid "Recipient"
+msgstr "Destinatário"
+
+#: mod/poke.php:199
+msgid "Choose what you wish to do to recipient"
+msgstr "Selecione o que você deseja fazer com o destinatário"
+
+#: mod/poke.php:202
+msgid "Make this post private"
+msgstr "Fazer com que essa publicação se torne privada"
+
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "A imagem foi enviada, mas não foi possível cortá-la."
 
-#: mod/network.php:499 mod/content.php:135
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:323
 #, php-format
-msgid "Group: %s"
-msgstr "Grupo: %s"
+msgid "Image size reduction [%s] failed."
+msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
 
-#: mod/network.php:527
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
+#: mod/profile_photo.php:127
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
 
-#: mod/network.php:532
-msgid "Invalid contact."
-msgstr "Contato inválido."
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Não foi possível processar a imagem"
 
-#: mod/network.php:825
-msgid "Commented Order"
-msgstr "Ordem dos comentários"
+#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr ""
 
-#: mod/network.php:828
-msgid "Sort by Comment Date"
-msgstr "Ordenar pela data do comentário"
+#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218
+msgid "Unable to process image."
+msgstr "Não foi possível processar a imagem."
 
-#: mod/network.php:833
-msgid "Posted Order"
-msgstr "Ordem das publicações"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Enviar arquivo:"
 
-#: mod/network.php:836
-msgid "Sort by Post Date"
-msgstr "Ordenar pela data de publicação"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Selecione um perfil:"
 
-#: mod/network.php:847
-msgid "Posts that mention or involve you"
-msgstr "Publicações que mencionem ou envolvam você"
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Enviar"
 
-#: mod/network.php:855
-msgid "New"
-msgstr "Nova"
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "ou"
 
-#: mod/network.php:858
-msgid "Activity Stream - by date"
-msgstr "Fluxo de atividades - por data"
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "pule esta etapa"
 
-#: mod/network.php:866
-msgid "Shared Links"
-msgstr "Links compartilhados"
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "selecione uma foto de um álbum de fotos"
 
-#: mod/network.php:869
-msgid "Interesting Links"
-msgstr "Links interessantes"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Cortar a imagem"
 
-#: mod/network.php:877
-msgid "Starred"
-msgstr "Destacada"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
 
-#: mod/network.php:880
-msgid "Favourite Posts"
-msgstr "Publicações favoritas"
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "Encerrar a edição"
 
-#: mod/community.php:27
-msgid "Not available."
-msgstr "Não disponível."
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "A imagem foi enviada com sucesso."
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversão de tempo"
+#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257
+msgid "Image upload failed."
+msgstr "Não foi possível enviar a imagem."
+
+#: mod/profperm.php:20 mod/group.php:76 index.php:406
+msgid "Permission denied"
+msgstr "Permissão negada"
+
+#: mod/profperm.php:26 mod/profperm.php:57
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
+
+#: mod/profperm.php:103
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
+
+#: mod/profperm.php:107 mod/group.php:262
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
+
+#: mod/profperm.php:116
+msgid "Visible To"
+msgstr "Visível para"
+
+#: mod/profperm.php:132
+msgid "All Contacts (with secure profile access)"
+msgstr "Todos os contatos (com acesso a perfil seguro)"
+
+#: mod/regmod.php:58
+msgid "Account approved."
+msgstr "A conta foi aprovada."
+
+#: mod/regmod.php:95
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "O registro de %s foi revogado"
+
+#: mod/regmod.php:107
+msgid "Please login."
+msgstr "Por favor, autentique-se."
+
+#: mod/removeme.php:52 mod/removeme.php:55
+msgid "Remove My Account"
+msgstr "Remover minha conta"
+
+#: mod/removeme.php:53
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
+
+#: mod/removeme.php:54
+msgid "Please enter your password for verification:"
+msgstr "Por favor, digite a sua senha para verificação:"
+
+#: mod/repair_ostatus.php:14
+msgid "Resubscribing to OStatus contacts"
+msgstr ""
+
+#: mod/repair_ostatus.php:30
+msgid "Error"
+msgstr "Erro"
+
+#: mod/subthread.php:104
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está seguindo %2$s's %3$s"
+
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Você realmente deseja deletar essa sugestão?"
+
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
+
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
+
+#: mod/tagrm.php:43
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
+
+#: mod/tagrm.php:82
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta do item"
+
+#: mod/tagrm.php:84
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
 
-#: mod/localtime.php:26
+#: mod/uimport.php:51 mod/register.php:198
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos."
-
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Hora UTC: %s"
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
 
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso horário atual: %s"
+#: mod/uimport.php:66 mod/register.php:295
+msgid "Import"
+msgstr "Importar"
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Horário local convertido: %s"
+#: mod/uimport.php:68
+msgid "Move account"
+msgstr "Mover conta"
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Por favor, selecione seu fuso horário:"
+#: mod/uimport.php:69
+msgid "You can import an account from another Friendica server."
+msgstr "Você pode importar um conta de outro sevidor Friendica."
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "O texto foi criado"
+#: mod/uimport.php:70
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "O grupo foi criado."
+#: mod/uimport.php:71
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora."
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Não foi possível criar o grupo."
+#: mod/uimport.php:72
+msgid "Account file"
+msgstr "Arquivo de conta"
 
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "O grupo não foi encontrado."
+#: mod/uimport.php:72
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
 
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "O nome do grupo foi alterado."
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Salvar o grupo"
+#: mod/viewcontacts.php:75
+msgid "No contacts."
+msgstr "Nenhum contato."
 
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Criar um grupo de contatos/amigos."
+#: mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Acesso negado."
 
-#: mod/group.php:113
-msgid "Group removed."
-msgstr "O grupo foi removido."
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
+#: mod/wall_upload.php:150 mod/wall_upload.php:153
+msgid "Invalid request."
+msgstr "Solicitação inválida."
 
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Não foi possível remover o grupo."
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
 
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Editor de grupo"
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou - você tentou enviar um arquivo vazio?"
 
-#: mod/group.php:190
-msgid "Members"
-msgstr "Membros"
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr ""
 
-#: mod/group.php:192 mod/contacts.php:690
-msgid "All Contacts"
-msgstr "Todos os contatos"
+#: mod/wall_attach.php:158 mod/wall_attach.php:174
+msgid "File upload failed."
+msgstr "Não foi possível enviar o arquivo."
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
+#: mod/wallmessage.php:42 mod/wallmessage.php:106
 #, php-format
 msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem."
 
-#: mod/wallmessage.php:56 mod/message.php:71
+#: mod/wallmessage.php:50 mod/message.php:60
 msgid "No recipient selected."
 msgstr "Não foi selecionado nenhum destinatário."
 
-#: mod/wallmessage.php:59
+#: mod/wallmessage.php:53
 msgid "Unable to check your home location."
 msgstr "Não foi possível verificar a sua localização."
 
-#: mod/wallmessage.php:62 mod/message.php:78
+#: mod/wallmessage.php:56 mod/message.php:67
 msgid "Message could not be sent."
 msgstr "Não foi possível enviar a mensagem."
 
-#: mod/wallmessage.php:65 mod/message.php:81
+#: mod/wallmessage.php:59 mod/message.php:70
 msgid "Message collection failure."
 msgstr "Falha na coleta de mensagens."
 
-#: mod/wallmessage.php:68 mod/message.php:84
+#: mod/wallmessage.php:62 mod/message.php:73
 msgid "Message sent."
 msgstr "A mensagem foi enviada."
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
+#: mod/wallmessage.php:80 mod/wallmessage.php:89
 msgid "No recipient."
 msgstr "Nenhum destinatário."
 
-#: mod/wallmessage.php:142 mod/message.php:341
+#: mod/wallmessage.php:126 mod/message.php:322
 msgid "Send Private Message"
 msgstr "Enviar mensagem privada"
 
-#: mod/wallmessage.php:143
+#: mod/wallmessage.php:127
 #, php-format
 msgid ""
 "If you wish for %s to respond, please check that the privacy settings on "
 "your site allow private mail from unknown senders."
 msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
 
-#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
+#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510
 msgid "To:"
 msgstr "Para:"
 
-#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
+#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512
 msgid "Subject:"
 msgstr "Assunto:"
 
-#: mod/share.php:38
-msgid "link"
-msgstr "ligação"
-
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizar a conexão com a aplicação"
-
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Volte para a sua aplicação e digite este código de segurança:"
-
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Por favor, autentique-se para continuar."
-
-#: mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
-
-#: mod/babel.php:17
+#: mod/babel.php:16
 msgid "Source (bbcode) text:"
 msgstr "Texto fonte (bbcode):"
 
@@ -4320,352 +4820,252 @@ msgstr "bb2dia2bb: "
 msgid "bb2md2html2bb: "
 msgstr "bb2md2html2bb: "
 
-#: mod/babel.php:69
+#: mod/babel.php:65
 msgid "Source input (Diaspora format): "
 msgstr "Fonte de entrada (formato Diaspora):"
 
-#: mod/babel.php:74
+#: mod/babel.php:69
 msgid "diaspora2bb: "
 msgstr "diaspora2bb: "
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
+#: mod/cal.php:271 mod/events.php:375
+msgid "View"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr ""
+#: mod/cal.php:272 mod/events.php:377
+msgid "Previous"
+msgstr "Anterior"
 
-#: mod/ostatus_subscribe.php:30
-msgid "Couldn't fetch information for contact."
-msgstr ""
+#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
+msgid "Next"
+msgstr "Próximo"
 
-#: mod/ostatus_subscribe.php:38
-msgid "Couldn't fetch friends for contact."
+#: mod/cal.php:282 mod/events.php:387
+msgid "list"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:65
-msgid "success"
-msgstr "sucesso"
-
-#: mod/ostatus_subscribe.php:67
-msgid "failed"
+#: mod/cal.php:292
+msgid "User not found"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
-msgid "ignored"
-msgstr "Ignorado"
-
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s dá as boas vinda à %2$s"
-
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Dicas para novos membros"
-
-#: mod/message.php:75
-msgid "Unable to locate contact information."
-msgstr "Não foi possível localizar informação do contato."
-
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
-msgstr "Você realmente deseja deletar essa mensagem?"
-
-#: mod/message.php:235
-msgid "Message deleted."
-msgstr "A mensagem foi excluída."
-
-#: mod/message.php:266
-msgid "Conversation removed."
-msgstr "A conversa foi removida."
-
-#: mod/message.php:383
-msgid "No messages."
-msgstr "Nenhuma mensagem."
-
-#: mod/message.php:426
-msgid "Message not available."
-msgstr "A mensagem não está disponível."
-
-#: mod/message.php:503
-msgid "Delete message"
-msgstr "Excluir a mensagem"
-
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
-msgstr "Excluir conversa"
-
-#: mod/message.php:531
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
-
-#: mod/message.php:535
-msgid "Send Reply"
-msgstr "Enviar resposta"
-
-#: mod/message.php:579
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Remetente desconhecido - %s"
-
-#: mod/message.php:581
-#, php-format
-msgid "You and %s"
-msgstr "Você e %s"
-
-#: mod/message.php:583
-#, php-format
-msgid "%s and You"
-msgstr "%s e você"
-
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
-
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d mensagem"
-msgstr[1] "%d mensagens"
-
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
-msgstr "Gerenciar identidades e/ou páginas"
-
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
+#: mod/cal.php:308
+msgid "This calendar format is not supported"
+msgstr "Esse formato de agenda não é contemplado"
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
-msgstr "Selecione uma identidade para gerenciar: "
+#: mod/cal.php:310
+msgid "No exportable data found"
+msgstr ""
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "As configurações do contato foram aplicadas."
+#: mod/cal.php:325
+msgid "calendar"
+msgstr "agenda"
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Não foi possível atualizar o contato."
+#: mod/community.php:23
+msgid "Not available."
+msgstr "Não disponível."
 
-#: mod/crepair.php:114 mod/dfrn_confirm.php:122 mod/fsuggest.php:20
-#: mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "O contato não foi encontrado."
+#: mod/community.php:50 mod/search.php:219
+msgid "No results."
+msgstr "Nenhum resultado."
 
-#: mod/crepair.php:120
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
+#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
+#: mod/profiles.php:182 mod/profiles.php:619
+msgid "Profile not found."
+msgstr "O perfil não foi encontrado."
 
-#: mod/crepair.php:121
+#: mod/dfrn_confirm.php:127
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
-
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
-msgstr "Nenhum espelhamento"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
 
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
-msgstr "Espelhar como postagem encaminhada"
+#: mod/dfrn_confirm.php:244
+msgid "Response from remote site was not understood."
+msgstr "A resposta do site remoto não foi compreendida."
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
-msgstr "Espelhar como minha própria postagem"
+#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
+msgid "Unexpected response from remote site: "
+msgstr "Resposta inesperada do site remoto: "
 
-#: mod/crepair.php:150
-msgid "Return to contact editor"
-msgstr "Voltar ao editor de contatos"
+#: mod/dfrn_confirm.php:267
+msgid "Confirmation completed successfully."
+msgstr "A confirmação foi completada com sucesso."
 
-#: mod/crepair.php:152
-msgid "Refetch contact data"
-msgstr ""
+#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
+msgid "Remote site reported: "
+msgstr "O site remoto relatou: "
 
-#: mod/crepair.php:156
-msgid "Remote Self"
-msgstr "Eu remoto"
+#: mod/dfrn_confirm.php:281
+msgid "Temporary failure. Please wait and try again."
+msgstr "Falha temporária. Por favor, aguarde e tente novamente."
 
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
-msgstr "Espelhar publicações deste contato"
+#: mod/dfrn_confirm.php:288
+msgid "Introduction failed or was revoked."
+msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
 
-#: mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário."
+#: mod/dfrn_confirm.php:418
+msgid "Unable to set contact photo."
+msgstr "Não foi possível definir a foto do contato."
 
-#: mod/crepair.php:165 mod/admin.php:1374 mod/admin.php:1387
-#: mod/admin.php:1399 mod/admin.php:1415 mod/settings.php:665
-#: mod/settings.php:691
-msgid "Name"
-msgstr "Nome"
+#: mod/dfrn_confirm.php:559
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
 
-#: mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Identificação da conta"
+#: mod/dfrn_confirm.php:569
+msgid "Our site encryption key is apparently messed up."
+msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
 
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - sobrescreve Nome/Identificação"
+#: mod/dfrn_confirm.php:580
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
 
-#: mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL da conta"
+#: mod/dfrn_confirm.php:602
+msgid "Contact record was not found for you on our site."
+msgstr "O registro do contato não foi encontrado para você em seu site."
 
-#: mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL da requisição de amizade"
+#: mod/dfrn_confirm.php:616
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
 
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL da confirmação de amizade"
+#: mod/dfrn_confirm.php:636
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
 
-#: mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL do ponto final da notificação"
+#: mod/dfrn_confirm.php:647
+msgid "Unable to set your contact credentials on our system."
+msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
 
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "URL do captador/fonte de notícias"
+#: mod/dfrn_confirm.php:709
+msgid "Unable to update your contact profile details on our system"
+msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
 
-#: mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nova imagem desta URL"
+#: mod/dfrn_confirm.php:781
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se associou a %2$s"
 
-#: mod/dfrn_request.php:100
+#: mod/dfrn_request.php:101
 msgid "This introduction has already been accepted."
 msgstr "Esta apresentação já foi aceita."
 
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:518
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
 msgid "Profile location is not valid or does not contain profile information."
 msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
 
-#: mod/dfrn_request.php:128 mod/dfrn_request.php:523
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
 msgid "Warning: profile location has no identifiable owner name."
 msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
 
-#: mod/dfrn_request.php:130 mod/dfrn_request.php:525
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
 msgid "Warning: profile location has no profile photo."
 msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
 
-#: mod/dfrn_request.php:133 mod/dfrn_request.php:528
+#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
 #, php-format
 msgid "%d required parameter was not found at the given location"
 msgid_plural "%d required parameters were not found at the given location"
 msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida"
 msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
 
-#: mod/dfrn_request.php:178
+#: mod/dfrn_request.php:180
 msgid "Introduction complete."
 msgstr "A apresentação foi finalizada."
 
-#: mod/dfrn_request.php:220
+#: mod/dfrn_request.php:225
 msgid "Unrecoverable protocol error."
 msgstr "Ocorreu um erro irrecuperável de protocolo."
 
-#: mod/dfrn_request.php:248
+#: mod/dfrn_request.php:253
 msgid "Profile unavailable."
 msgstr "O perfil não está disponível."
 
-#: mod/dfrn_request.php:273
+#: mod/dfrn_request.php:280
 #, php-format
 msgid "%s has received too many connection requests today."
 msgstr "%s recebeu solicitações de conexão em excesso hoje."
 
-#: mod/dfrn_request.php:274
+#: mod/dfrn_request.php:281
 msgid "Spam protection measures have been invoked."
 msgstr "As medidas de proteção contra spam foram ativadas."
 
-#: mod/dfrn_request.php:275
+#: mod/dfrn_request.php:282
 msgid "Friends are advised to please try again in 24 hours."
 msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
 
-#: mod/dfrn_request.php:337
+#: mod/dfrn_request.php:344
 msgid "Invalid locator"
 msgstr "Localizador inválido"
 
-#: mod/dfrn_request.php:346
+#: mod/dfrn_request.php:353
 msgid "Invalid email address."
 msgstr "Endereço de e-mail inválido."
 
-#: mod/dfrn_request.php:373
+#: mod/dfrn_request.php:378
 msgid "This account has not been configured for email. Request failed."
 msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
 
-#: mod/dfrn_request.php:476
+#: mod/dfrn_request.php:481
 msgid "You have already introduced yourself here."
 msgstr "Você já fez a sua apresentação aqui."
 
-#: mod/dfrn_request.php:480
+#: mod/dfrn_request.php:485
 #, php-format
 msgid "Apparently you are already friends with %s."
 msgstr "Aparentemente você já é amigo de %s."
 
-#: mod/dfrn_request.php:501
+#: mod/dfrn_request.php:506
 msgid "Invalid profile URL."
 msgstr "URL de perfil inválida."
 
-#: mod/dfrn_request.php:579 mod/contacts.php:208
-msgid "Failed to update contact record."
-msgstr "Não foi possível atualizar o registro do contato."
-
-#: mod/dfrn_request.php:600
+#: mod/dfrn_request.php:614
 msgid "Your introduction has been sent."
 msgstr "A sua apresentação foi enviada."
 
-#: mod/dfrn_request.php:640
+#: mod/dfrn_request.php:656
 msgid ""
 "Remote subscription can't be done for your network. Please subscribe "
 "directly on your system."
 msgstr "A sua rede não permite inscrição a distância. Inscreva-se diretamente no seu sistema."
 
-#: mod/dfrn_request.php:663
+#: mod/dfrn_request.php:677
 msgid "Please login to confirm introduction."
 msgstr "Por favor, autentique-se para confirmar a apresentação."
 
-#: mod/dfrn_request.php:673
+#: mod/dfrn_request.php:687
 msgid ""
 "Incorrect identity currently logged in. Please login to "
 "<strong>this</strong> profile."
 msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
 
-#: mod/dfrn_request.php:687 mod/dfrn_request.php:704
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
 msgid "Confirm"
 msgstr "Confirmar"
 
-#: mod/dfrn_request.php:699
+#: mod/dfrn_request.php:713
 msgid "Hide this contact"
 msgstr "Ocultar este contato"
 
-#: mod/dfrn_request.php:702
+#: mod/dfrn_request.php:716
 #, php-format
 msgid "Welcome home %s."
 msgstr "Bem-vindo(a) à sua página pessoal %s."
 
-#: mod/dfrn_request.php:703
+#: mod/dfrn_request.php:717
 #, php-format
 msgid "Please confirm your introduction/connection request to %s."
 msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
 
-#: mod/dfrn_request.php:832
+#: mod/dfrn_request.php:848
 msgid ""
 "Please enter your 'Identity Address' from one of the following supported "
 "communications networks:"
 msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
 
-#: mod/dfrn_request.php:853
+#: mod/dfrn_request.php:872
 #, php-format
 msgid ""
 "If you are not yet a member of the free social web, <a "
@@ -4673,3857 +5073,3731 @@ msgid ""
 "join us today</a>."
 msgstr ""
 
-#: mod/dfrn_request.php:858
+#: mod/dfrn_request.php:877
 msgid "Friend/Connection Request"
 msgstr "Solicitação de amizade/conexão"
 
-#: mod/dfrn_request.php:859
+#: mod/dfrn_request.php:878
 msgid ""
 "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
 "testuser@identi.ca"
 msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: mod/dfrn_request.php:868
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
-
-#: mod/dfrn_request.php:870
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
-
-#: mod/content.php:325 object/Item.php:95
-msgid "This entry was edited"
-msgstr "Essa entrada foi editada"
+#: mod/dfrn_request.php:879 mod/follow.php:112
+msgid "Please answer the following:"
+msgstr "Por favor, entre com as informações solicitadas:"
 
-#: mod/content.php:621 object/Item.php:429
+#: mod/dfrn_request.php:880 mod/follow.php:113
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d comentário"
-msgstr[1] "%d comentários"
-
-#: mod/content.php:638 mod/photos.php:1405 object/Item.php:117
-msgid "Private Message"
-msgstr "Mensagem privada"
-
-#: mod/content.php:702 mod/photos.php:1594 object/Item.php:263
-msgid "I like this (toggle)"
-msgstr "Eu gostei disso (alternar)"
-
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
-msgstr "gostei"
-
-#: mod/content.php:703 mod/photos.php:1595 object/Item.php:264
-msgid "I don't like this (toggle)"
-msgstr "Eu não gostei disso (alternar)"
-
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
-msgstr "desgostar"
-
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
-msgstr "Compartilhar isso"
-
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
-msgstr "compartilhar"
-
-#: mod/content.php:725 mod/photos.php:1614 mod/photos.php:1662
-#: mod/photos.php:1750 object/Item.php:717
-msgid "This is you"
-msgstr "Este(a) é você"
-
-#: mod/content.php:727 mod/content.php:945 mod/photos.php:1616
-#: mod/photos.php:1664 mod/photos.php:1752 object/Item.php:403
-#: object/Item.php:719 boot.php:902
-msgid "Comment"
-msgstr "Comentar"
-
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
-msgstr "Negrito"
-
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
-msgstr "Itálico"
-
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
-msgstr "Sublinhado"
-
-#: mod/content.php:732 object/Item.php:724
-msgid "Quote"
-msgstr "Citação"
-
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
-msgstr "Código"
-
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
-msgstr "Imagem"
-
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
-msgstr "Link"
-
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
-msgstr "Vídeo"
-
-#: mod/content.php:746 mod/settings.php:725 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Editar"
-
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
-msgstr "destacar"
-
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
-msgstr "remover o destaque"
-
-#: mod/content.php:773 object/Item.php:229
-msgid "toggle star status"
-msgstr "ativa/desativa o destaque"
-
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
-msgstr "marcado com estrela"
-
-#: mod/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
-msgstr "adicionar etiqueta"
-
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
-msgstr "ignorar tópico"
-
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
-msgstr "deixar de ignorar tópico"
-
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
-msgstr "alternar status ignorar"
-
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
-msgstr "salvar na pasta"
-
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
-msgstr "Eu vou"
-
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
-msgstr "Eu não vou"
-
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
-msgstr "Eu estou pensando em ir"
-
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
-msgstr "para"
-
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
-msgstr "Mural-para-mural"
-
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
-msgstr "via Mural-para-mural"
-
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "As configurações do tema foram atualizadas."
-
-#: mod/admin.php:156 mod/admin.php:925
-msgid "Site"
-msgstr "Site"
-
-#: mod/admin.php:157 mod/admin.php:869 mod/admin.php:1382 mod/admin.php:1397
-msgid "Users"
-msgstr "Usuários"
-
-#: mod/admin.php:158 mod/admin.php:1499 mod/admin.php:1559 mod/settings.php:74
-msgid "Plugins"
-msgstr "Plugins"
-
-#: mod/admin.php:159 mod/admin.php:1757 mod/admin.php:1807
-msgid "Themes"
-msgstr "Temas"
-
-#: mod/admin.php:160 mod/settings.php:52
-msgid "Additional features"
-msgstr "Funcionalidades adicionais"
-
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "Atualizações do BD"
-
-#: mod/admin.php:162 mod/admin.php:397
-msgid "Inspect Queue"
-msgstr ""
-
-#: mod/admin.php:163 mod/admin.php:363
-msgid "Federation Statistics"
-msgstr ""
-
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1875
-msgid "Logs"
-msgstr "Relatórios"
-
-#: mod/admin.php:178 mod/admin.php:1942
-msgid "View Logs"
-msgstr ""
-
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "prova endereço"
-
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "verifica webfinger"
-
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Recursos do plugin"
-
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "diagnóstico"
-
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Cadastros de novos usuários aguardando confirmação"
-
-#: mod/admin.php:356
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr ""
-
-#: mod/admin.php:357
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
+msgid "Does %s know you?"
+msgstr "%s conhece você?"
 
-#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:924
-#: mod/admin.php:1381 mod/admin.php:1498 mod/admin.php:1558 mod/admin.php:1756
-#: mod/admin.php:1806 mod/admin.php:1874 mod/admin.php:1941
-msgid "Administration"
-msgstr "Administração"
+#: mod/dfrn_request.php:884 mod/follow.php:114
+msgid "Add a personal note:"
+msgstr "Adicione uma anotação pessoal:"
 
-#: mod/admin.php:369
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr ""
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/admin.php:399
-msgid "ID"
-msgstr "ID"
+#: mod/dfrn_request.php:889
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
 
-#: mod/admin.php:400
-msgid "Recipient Name"
-msgstr ""
+#: mod/dfrn_request.php:890 mod/follow.php:120
+msgid "Your Identity Address:"
+msgstr "Seu endereço de identificação:"
 
-#: mod/admin.php:401
-msgid "Recipient Profile"
-msgstr ""
+#: mod/dfrn_request.php:893 mod/follow.php:19
+msgid "Submit Request"
+msgstr "Enviar solicitação"
 
-#: mod/admin.php:403
-msgid "Created"
+#: mod/dirfind.php:37
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/admin.php:404
-msgid "Last Tried"
+#: mod/dirfind.php:48
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/admin.php:405
-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:93 mod/events.php:95
+msgid "Event can not end before it has started."
+msgstr "O evento não pode terminar antes de ter começado."
 
-#: mod/admin.php:424 mod/admin.php:1330
-msgid "Normal Account"
-msgstr "Conta normal"
+#: mod/events.php:102 mod/events.php:104
+msgid "Event title and start time are required."
+msgstr "O título do evento e a hora de início são obrigatórios."
 
-#: mod/admin.php:425 mod/admin.php:1331
-msgid "Soapbox Account"
-msgstr "Conta de vitrine"
+#: mod/events.php:376
+msgid "Create New Event"
+msgstr "Criar um novo evento"
 
-#: mod/admin.php:426 mod/admin.php:1332
-msgid "Community/Celebrity Account"
-msgstr "Conta de comunidade/celebridade"
+#: mod/events.php:481
+msgid "Event details"
+msgstr "Detalhes do evento"
 
-#: mod/admin.php:427 mod/admin.php:1333
-msgid "Automatic Friend Account"
-msgstr "Conta de amigo automático"
+#: mod/events.php:482
+msgid "Starting date and Title are required."
+msgstr ""
 
-#: mod/admin.php:428
-msgid "Blog Account"
-msgstr "Conta de blog"
+#: mod/events.php:483 mod/events.php:484
+msgid "Event Starts:"
+msgstr "Início do evento:"
 
-#: mod/admin.php:429
-msgid "Private Forum"
-msgstr "Fórum privado"
+#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
+msgid "Required"
+msgstr "Obrigatório"
 
-#: mod/admin.php:455
-msgid "Message queues"
-msgstr "Fila de mensagens"
+#: mod/events.php:485 mod/events.php:501
+msgid "Finish date/time is not known or not relevant"
+msgstr "A data/hora de término não é conhecida ou não é relevante"
 
-#: mod/admin.php:461
-msgid "Summary"
-msgstr "Resumo"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Finishes:"
+msgstr "Término do evento:"
 
-#: mod/admin.php:463
-msgid "Registered users"
-msgstr "Usuários registrados"
+#: mod/events.php:489 mod/events.php:502
+msgid "Adjust for viewer timezone"
+msgstr "Ajustar para o fuso horário do visualizador"
 
-#: mod/admin.php:465
-msgid "Pending registrations"
-msgstr "Registros pendentes"
+#: mod/events.php:491
+msgid "Description:"
+msgstr "Descrição:"
 
-#: mod/admin.php:466
-msgid "Version"
-msgstr "Versão"
+#: mod/events.php:495 mod/events.php:497
+msgid "Title:"
+msgstr "Título:"
 
-#: mod/admin.php:471
-msgid "Active plugins"
-msgstr "Plugins ativos"
+#: mod/events.php:498 mod/events.php:499
+msgid "Share this event"
+msgstr "Compartilhar este evento"
 
-#: mod/admin.php:494
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
+#: mod/events.php:528
+msgid "Failed to remove event"
+msgstr ""
 
-#: mod/admin.php:797
-msgid "RINO2 needs mcrypt php extension to work."
+#: mod/events.php:530
+msgid "Event removed"
 msgstr ""
 
-#: mod/admin.php:805
-msgid "Site settings updated."
-msgstr "As configurações do site foram atualizadas."
+#: mod/follow.php:30
+msgid "You already added this contact."
+msgstr "Você já adicionou esse contato."
 
-#: mod/admin.php:833 mod/settings.php:919
-msgid "No special theme for mobile devices"
-msgstr "Nenhum tema especial para dispositivos móveis"
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr ""
 
-#: mod/admin.php:852
-msgid "No community page"
-msgstr "Sem página de comunidade"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr ""
 
-#: mod/admin.php:853
-msgid "Public postings from users of this site"
-msgstr "Textos públicos de usuários deste sítio"
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr ""
 
-#: mod/admin.php:854
-msgid "Global community page"
-msgstr "Página global da comunidade"
+#: mod/follow.php:186
+msgid "Contact added"
+msgstr "O contato foi adicionado"
 
-#: mod/admin.php:859 mod/contacts.php:530
-msgid "Never"
-msgstr "Nunca"
+#: mod/friendica.php:68
+msgid "This is Friendica, version"
+msgstr "Este é o Friendica, versão"
 
-#: mod/admin.php:860
-msgid "At post arrival"
-msgstr "Na chegada da publicação"
+#: mod/friendica.php:69
+msgid "running at web location"
+msgstr "sendo executado no endereço web"
 
-#: mod/admin.php:868 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Desabilitado"
+#: mod/friendica.php:73
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
 
-#: mod/admin.php:870
-msgid "Users, Global Contacts"
-msgstr "Usuários, Contatos Globais"
+#: mod/friendica.php:77
+msgid "Bug reports and issues: please visit"
+msgstr "Relate ou acompanhe um erro no"
 
-#: mod/admin.php:871
-msgid "Users, Global Contacts/fallback"
-msgstr "Usuários, Contatos Globais/plano B"
+#: mod/friendica.php:77
+msgid "the bugtracker at github"
+msgstr "GitHub"
 
-#: mod/admin.php:875
-msgid "One month"
-msgstr "Um mês"
+#: mod/friendica.php:80
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
 
-#: mod/admin.php:876
-msgid "Three months"
-msgstr "Três meses"
+#: mod/friendica.php:94
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instaladas:"
 
-#: mod/admin.php:877
-msgid "Half a year"
-msgstr "Seis meses"
+#: mod/friendica.php:108
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicativo instalado"
 
-#: mod/admin.php:878
-msgid "One year"
-msgstr "Um ano"
+#: mod/friendica.php:113
+msgid "On this server the following remote servers are blocked."
+msgstr ""
 
-#: mod/admin.php:883
-msgid "Multi user instance"
-msgstr "Instância multi usuário"
+#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
+msgid "Reason for the block"
+msgstr ""
 
-#: mod/admin.php:906
-msgid "Closed"
-msgstr "Fechado"
+#: mod/group.php:29
+msgid "Group created."
+msgstr "O grupo foi criado."
 
-#: mod/admin.php:907
-msgid "Requires approval"
-msgstr "Requer aprovação"
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Não foi possível criar o grupo."
 
-#: mod/admin.php:908
-msgid "Open"
-msgstr "Aberto"
+#: mod/group.php:49 mod/group.php:154
+msgid "Group not found."
+msgstr "O grupo não foi encontrado."
 
-#: mod/admin.php:912
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
+#: mod/group.php:63
+msgid "Group name changed."
+msgstr "O nome do grupo foi alterado."
 
-#: mod/admin.php:913
-msgid "Force all links to use SSL"
-msgstr "Forçar todos os links a utilizar SSL"
+#: mod/group.php:93
+msgid "Save Group"
+msgstr "Salvar o grupo"
 
-#: mod/admin.php:914
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
+#: mod/group.php:98
+msgid "Create a group of contacts/friends."
+msgstr "Criar um grupo de contatos/amigos."
 
-#: mod/admin.php:926 mod/admin.php:1560 mod/admin.php:1808 mod/admin.php:1876
-#: mod/admin.php:2025 mod/settings.php:663 mod/settings.php:773
-#: mod/settings.php:820 mod/settings.php:889 mod/settings.php:976
-#: mod/settings.php:1214
-msgid "Save Settings"
-msgstr "Salvar configurações"
+#: mod/group.php:123
+msgid "Group removed."
+msgstr "O grupo foi removido."
 
-#: mod/admin.php:927 mod/register.php:263
-msgid "Registration"
-msgstr "Registro"
+#: mod/group.php:125
+msgid "Unable to remove group."
+msgstr "Não foi possível remover o grupo."
 
-#: mod/admin.php:928
-msgid "File upload"
-msgstr "Envio de arquivo"
+#: mod/group.php:189
+msgid "Delete Group"
+msgstr ""
 
-#: mod/admin.php:929
-msgid "Policies"
-msgstr "Políticas"
+#: mod/group.php:195
+msgid "Group Editor"
+msgstr "Editor de grupo"
 
-#: mod/admin.php:931
-msgid "Auto Discovered Contact Directory"
+#: mod/group.php:200
+msgid "Edit Group Name"
 msgstr ""
 
-#: mod/admin.php:932
-msgid "Performance"
-msgstr "Performance"
+#: mod/group.php:210
+msgid "Members"
+msgstr "Membros"
 
-#: mod/admin.php:933
-msgid "Worker"
+#: mod/group.php:226
+msgid "Remove Contact"
 msgstr ""
 
-#: mod/admin.php:934
+#: mod/group.php:250
+msgid "Add Contact"
+msgstr ""
+
+#: mod/manage.php:151
+msgid "Manage Identities and/or Pages"
+msgstr "Gerenciar identidades e/ou páginas"
+
+#: mod/manage.php:152
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
 
-#: mod/admin.php:937
-msgid "Site name"
-msgstr "Nome do site"
+#: mod/manage.php:153
+msgid "Select an identity to manage: "
+msgstr "Selecione uma identidade para gerenciar: "
 
-#: mod/admin.php:938
-msgid "Host name"
-msgstr "Nome do host"
+#: mod/message.php:64
+msgid "Unable to locate contact information."
+msgstr "Não foi possível localizar informação do contato."
 
-#: mod/admin.php:939
-msgid "Sender Email"
-msgstr "enviador de email"
+#: mod/message.php:204
+msgid "Do you really want to delete this message?"
+msgstr "Você realmente deseja deletar essa mensagem?"
+
+#: mod/message.php:224
+msgid "Message deleted."
+msgstr "A mensagem foi excluída."
+
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "A conversa foi removida."
 
-#: mod/admin.php:939
+#: mod/message.php:364
+msgid "No messages."
+msgstr "Nenhuma mensagem."
+
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "A mensagem não está disponível."
+
+#: mod/message.php:477
+msgid "Delete message"
+msgstr "Excluir a mensagem"
+
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Excluir conversa"
+
+#: mod/message.php:505
 msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
 
-#: mod/admin.php:940
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Enviar resposta"
 
-#: mod/admin.php:941
-msgid "Shortcut icon"
-msgstr "ícone de atalho"
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Remetente desconhecido - %s"
 
-#: mod/admin.php:941
-msgid "Link to an icon that will be used for browsers."
-msgstr ""
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Você e %s"
+
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s e você"
 
-#: mod/admin.php:942
-msgid "Touch icon"
-msgstr "ícone de toque"
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: mod/admin.php:942
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr ""
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d mensagem"
+msgstr[1] "%d mensagens"
 
-#: mod/admin.php:943
-msgid "Additional Info"
-msgstr "Informação adicional"
+#: mod/network.php:197 mod/search.php:25
+msgid "Remove term"
+msgstr "Remover o termo"
 
-#: mod/admin.php:943
+#: mod/network.php:404
 #, php-format
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/network.php:407
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/admin.php:944
-msgid "System language"
-msgstr "Idioma do sistema"
+#: mod/network.php:535
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
 
-#: mod/admin.php:945
-msgid "System theme"
-msgstr "Tema do sistema"
+#: mod/network.php:540
+msgid "Invalid contact."
+msgstr "Contato inválido."
 
-#: mod/admin.php:945
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
+#: mod/network.php:813
+msgid "Commented Order"
+msgstr "Ordem dos comentários"
 
-#: mod/admin.php:946
-msgid "Mobile system theme"
-msgstr "Tema do sistema para dispositivos móveis"
+#: mod/network.php:816
+msgid "Sort by Comment Date"
+msgstr "Ordenar pela data do comentário"
 
-#: mod/admin.php:946
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móveis"
+#: mod/network.php:821
+msgid "Posted Order"
+msgstr "Ordem das publicações"
 
-#: mod/admin.php:947
-msgid "SSL link policy"
-msgstr "Política de link SSL"
+#: mod/network.php:824
+msgid "Sort by Post Date"
+msgstr "Ordenar pela data de publicação"
 
-#: mod/admin.php:947
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
+#: mod/network.php:835
+msgid "Posts that mention or involve you"
+msgstr "Publicações que mencionem ou envolvam você"
 
-#: mod/admin.php:948
-msgid "Force SSL"
-msgstr "Forçar SSL"
+#: mod/network.php:843
+msgid "New"
+msgstr "Nova"
 
-#: mod/admin.php:948
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos."
+#: mod/network.php:846
+msgid "Activity Stream - by date"
+msgstr "Fluxo de atividades - por data"
 
-#: mod/admin.php:949
-msgid "Old style 'Share'"
-msgstr "Estilo antigo do 'Compartilhar' "
+#: mod/network.php:854
+msgid "Shared Links"
+msgstr "Links compartilhados"
 
-#: mod/admin.php:949
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
+#: mod/network.php:857
+msgid "Interesting Links"
+msgstr "Links interessantes"
 
-#: mod/admin.php:950
-msgid "Hide help entry from navigation menu"
-msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
+#: mod/network.php:865
+msgid "Starred"
+msgstr "Destacada"
 
-#: mod/admin.php:950
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
+#: mod/network.php:868
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
 
-#: mod/admin.php:951
-msgid "Single user instance"
-msgstr "Instância de usuário único"
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
 
-#: mod/admin.php:951
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
+#: mod/openid.php:60
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
 
-#: mod/admin.php:952
-msgid "Maximum image size"
-msgstr "Tamanho máximo da imagem"
+#: mod/photos.php:94 mod/photos.php:1900
+msgid "Recent Photos"
+msgstr "Fotos recentes"
 
-#: mod/admin.php:952
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
+#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
+msgid "Upload New Photos"
+msgstr "Enviar novas fotos"
 
-#: mod/admin.php:953
-msgid "Maximum image length"
-msgstr "Tamanho máximo da imagem"
+#: mod/photos.php:112 mod/settings.php:36
+msgid "everybody"
+msgstr "todos"
 
-#: mod/admin.php:953
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
+#: mod/photos.php:176
+msgid "Contact information unavailable"
+msgstr "A informação de contato não está disponível"
 
-#: mod/admin.php:954
-msgid "JPEG image quality"
-msgstr "Qualidade da imagem JPEG"
+#: mod/photos.php:197
+msgid "Album not found."
+msgstr "O álbum não foi encontrado."
 
-#: mod/admin.php:954
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
+#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
+msgid "Delete Album"
+msgstr "Excluir o álbum"
 
-#: mod/admin.php:956
-msgid "Register policy"
-msgstr "Política de registro"
+#: mod/photos.php:240
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
 
-#: mod/admin.php:957
-msgid "Maximum Daily Registrations"
-msgstr "Registros Diários Máximos"
+#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
+msgid "Delete Photo"
+msgstr "Excluir a foto"
 
-#: mod/admin.php:957
-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 "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
+#: mod/photos.php:332
+msgid "Do you really want to delete this photo?"
+msgstr "Você realmente deseja deletar essa foto?"
 
-#: mod/admin.php:958
-msgid "Register text"
-msgstr "Texto de registro"
+#: mod/photos.php:713
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s foi marcado em %2$s por %3$s"
 
-#: mod/admin.php:958
-msgid "Will be displayed prominently on the registration page."
-msgstr "Será exibido com destaque na página de registro."
+#: mod/photos.php:713
+msgid "a photo"
+msgstr "uma foto"
 
-#: mod/admin.php:959
-msgid "Accounts abandoned after x days"
-msgstr "Contas abandonadas após x dias"
+#: mod/photos.php:821
+msgid "Image file is empty."
+msgstr "O arquivo de imagem está vazio."
 
-#: mod/admin.php:959
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
+#: mod/photos.php:988
+msgid "No photos selected"
+msgstr "Não foi selecionada nenhuma foto"
 
-#: mod/admin.php:960
-msgid "Allowed friend domains"
-msgstr "Domínios de amigos permitidos"
+#: mod/photos.php:1091 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "O acesso a este item é restrito."
 
-#: mod/admin.php:960
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
+#: mod/photos.php:1151
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
 
-#: mod/admin.php:961
-msgid "Allowed email domains"
-msgstr "Domínios de e-mail permitidos"
+#: mod/photos.php:1188
+msgid "Upload Photos"
+msgstr "Enviar fotos"
 
-#: mod/admin.php:961
-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 "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
+#: mod/photos.php:1192 mod/photos.php:1267
+msgid "New album name: "
+msgstr "Nome do novo álbum: "
 
-#: mod/admin.php:962
-msgid "Block public"
-msgstr "Bloquear acesso público"
+#: mod/photos.php:1193
+msgid "or existing album name: "
+msgstr "ou o nome de um álbum já existente: "
 
-#: mod/admin.php:962
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
+#: mod/photos.php:1194
+msgid "Do not show a status post for this upload"
+msgstr "Não exiba uma publicação de status para este envio"
 
-#: mod/admin.php:963
-msgid "Force publish"
-msgstr "Forçar a listagem"
+#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
+msgid "Show to Groups"
+msgstr "Mostre para Grupos"
 
-#: mod/admin.php:963
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
+#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
+msgid "Show to Contacts"
+msgstr "Mostre para Contatos"
 
-#: mod/admin.php:964
-msgid "Global directory URL"
-msgstr ""
+#: mod/photos.php:1207
+msgid "Private Photo"
+msgstr "Foto Privada"
 
-#: mod/admin.php:964
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr ""
+#: mod/photos.php:1208
+msgid "Public Photo"
+msgstr "Foto Pública"
 
-#: mod/admin.php:965
-msgid "Allow threaded items"
-msgstr "Habilita itens aninhados"
+#: mod/photos.php:1278
+msgid "Edit Album"
+msgstr "Editar o álbum"
 
-#: mod/admin.php:965
-msgid "Allow infinite level threading for items on this site."
-msgstr "Habilita nível infinito de aninhamento (threading) para itens."
+#: mod/photos.php:1283
+msgid "Show Newest First"
+msgstr "Exibir as mais recentes primeiro"
 
-#: mod/admin.php:966
-msgid "Private posts by default for new users"
-msgstr "Publicações privadas por padrão para novos usuários"
+#: mod/photos.php:1285
+msgid "Show Oldest First"
+msgstr "Exibir as mais antigas primeiro"
 
-#: mod/admin.php:966
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
+#: mod/photos.php:1314 mod/photos.php:1885
+msgid "View Photo"
+msgstr "Ver a foto"
 
-#: mod/admin.php:967
-msgid "Don't include post content in email notifications"
-msgstr "Não incluir o conteúdo da postagem nas notificações de email"
+#: mod/photos.php:1359
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permissão negada. O acesso a este item pode estar restrito."
 
-#: mod/admin.php:967
-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 "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
+#: mod/photos.php:1361
+msgid "Photo not available"
+msgstr "A foto não está disponível"
 
-#: mod/admin.php:968
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+#: mod/photos.php:1422
+msgid "View photo"
+msgstr "Ver a imagem"
 
-#: mod/admin.php:968
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
+#: mod/photos.php:1422
+msgid "Edit photo"
+msgstr "Editar a foto"
 
-#: mod/admin.php:969
-msgid "Don't embed private images in posts"
-msgstr "Não inclua imagens privadas em publicações"
+#: mod/photos.php:1423
+msgid "Use as profile photo"
+msgstr "Usar como uma foto de perfil"
 
-#: mod/admin.php:969
-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 "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
+#: mod/photos.php:1448
+msgid "View Full Size"
+msgstr "Ver no tamanho real"
+
+#: mod/photos.php:1538
+msgid "Tags: "
+msgstr "Etiquetas: "
 
-#: mod/admin.php:970
-msgid "Allow Users to set remote_self"
-msgstr "Permite usuários configurarem remote_self"
+#: mod/photos.php:1541
+msgid "[Remove any tag]"
+msgstr "[Remover qualquer etiqueta]"
 
-#: mod/admin.php:970
-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 "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
+#: mod/photos.php:1584
+msgid "New album name"
+msgstr "Novo nome para o álbum"
 
-#: mod/admin.php:971
-msgid "Block multiple registrations"
-msgstr "Bloquear registros repetidos"
+#: mod/photos.php:1585
+msgid "Caption"
+msgstr "Legenda"
 
-#: mod/admin.php:971
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
+#: mod/photos.php:1586
+msgid "Add a Tag"
+msgstr "Adicionar uma etiqueta"
 
-#: mod/admin.php:972
-msgid "OpenID support"
-msgstr "Suporte ao OpenID"
+#: mod/photos.php:1586
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
 
-#: mod/admin.php:972
-msgid "OpenID support for registration and logins."
-msgstr "Suporte ao OpenID para registros e autenticações."
+#: mod/photos.php:1587
+msgid "Do not rotate"
+msgstr ""
 
-#: mod/admin.php:973
-msgid "Fullname check"
-msgstr "Verificar nome completo"
+#: mod/photos.php:1588
+msgid "Rotate CW (right)"
+msgstr "Rotacionar para direita"
 
-#: mod/admin.php:973
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
+#: mod/photos.php:1589
+msgid "Rotate CCW (left)"
+msgstr "Rotacionar para esquerda"
 
-#: mod/admin.php:974
-msgid "UTF-8 Regular expressions"
-msgstr "Expressões regulares UTF-8"
+#: mod/photos.php:1604
+msgid "Private photo"
+msgstr "Foto privada"
 
-#: mod/admin.php:974
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Use expressões regulares do PHP em UTF8"
+#: mod/photos.php:1605
+msgid "Public photo"
+msgstr "Foto pública"
 
-#: mod/admin.php:975
-msgid "Community Page Style"
-msgstr "Estilo da página de comunidade"
+#: mod/photos.php:1814
+msgid "Map"
+msgstr ""
 
-#: mod/admin.php:975
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor."
+#: mod/photos.php:1891 mod/videos.php:393
+msgid "View Album"
+msgstr "Ver álbum"
 
-#: mod/admin.php:976
-msgid "Posts per user on community page"
-msgstr "Textos por usuário na página da comunidade"
+#: mod/probe.php:10 mod/webfinger.php:9
+msgid "Only logged in users are permitted to perform a probing."
+msgstr ""
 
-#: mod/admin.php:976
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')"
+#: mod/profile.php:175
+msgid "Tips for New Members"
+msgstr "Dicas para novos membros"
 
-#: mod/admin.php:977
-msgid "Enable OStatus support"
-msgstr "Habilitar suporte ao OStatus"
+#: mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
 
-#: mod/admin.php:977
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
+#: mod/profiles.php:54 mod/profiles.php:90
+msgid "Profile-"
+msgstr "Perfil-"
 
-#: mod/admin.php:978
-msgid "OStatus conversation completion interval"
-msgstr "Intervalo de finalização da conversação OStatus "
+#: mod/profiles.php:73 mod/profiles.php:118
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
 
-#: mod/admin.php:978
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
 
-#: mod/admin.php:979
-msgid "Only import OStatus threads from our contacts"
-msgstr ""
+#: mod/profiles.php:192
+msgid "Profile Name is required."
+msgstr "É necessário informar o nome do perfil."
 
-#: mod/admin.php:979
-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:332
+msgid "Marital Status"
+msgstr "Situação amorosa"
 
-#: mod/admin.php:980
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr ""
+#: mod/profiles.php:336
+msgid "Romantic Partner"
+msgstr "Parceiro romântico"
 
-#: mod/admin.php:982
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr ""
+#: mod/profiles.php:348
+msgid "Work/Employment"
+msgstr "Trabalho/emprego"
 
-#: mod/admin.php:983
-msgid "Enable Diaspora support"
-msgstr "Habilitar suporte ao Diaspora"
+#: mod/profiles.php:351
+msgid "Religion"
+msgstr "Religião"
 
-#: mod/admin.php:983
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornece compatibilidade nativa com a rede Diaspora."
+#: mod/profiles.php:355
+msgid "Political Views"
+msgstr "Posicionamento político"
 
-#: mod/admin.php:984
-msgid "Only allow Friendica contacts"
-msgstr "Permitir somente contatos Friendica"
+#: mod/profiles.php:359
+msgid "Gender"
+msgstr "Gênero"
 
-#: mod/admin.php:984
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
+#: mod/profiles.php:363
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
 
-#: mod/admin.php:985
-msgid "Verify SSL"
-msgstr "Verificar SSL"
+#: mod/profiles.php:367
+msgid "XMPP"
+msgstr ""
 
-#: mod/admin.php:985
-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 "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
+#: mod/profiles.php:371
+msgid "Homepage"
+msgstr "Página Principal"
 
-#: mod/admin.php:986
-msgid "Proxy user"
-msgstr "Usuário do proxy"
+#: mod/profiles.php:375 mod/profiles.php:695
+msgid "Interests"
+msgstr "Interesses"
 
-#: mod/admin.php:987
-msgid "Proxy URL"
-msgstr "URL do proxy"
+#: mod/profiles.php:379
+msgid "Address"
+msgstr "Endereço"
 
-#: mod/admin.php:988
-msgid "Network timeout"
-msgstr "Limite de tempo da rede"
+#: mod/profiles.php:386 mod/profiles.php:691
+msgid "Location"
+msgstr "Localização"
 
-#: mod/admin.php:988
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
+#: mod/profiles.php:471
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
 
-#: mod/admin.php:989
-msgid "Delivery interval"
-msgstr "Intervalo de envio"
+#: mod/profiles.php:564
+msgid " and "
+msgstr " e "
 
-#: mod/admin.php:989
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "perfil público"
 
-#: mod/admin.php:990
-msgid "Poll interval"
-msgstr "Intervalo da busca (polling)"
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
 
-#: mod/admin.php:990
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visite %2$s de %1$s"
 
-#: mod/admin.php:991
-msgid "Maximum Load Average"
-msgstr "Média de Carga Máxima"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s foi atualizado %2$s, mudando %3$s."
 
-#: mod/admin.php:991
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
+#: mod/profiles.php:637
+msgid "Hide contacts and friends:"
+msgstr "Esconder contatos e amigos:"
 
-#: mod/admin.php:992
-msgid "Maximum Load Average (Frontend)"
-msgstr ""
+#: mod/profiles.php:642
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: mod/admin.php:992
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/profiles.php:667
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/admin.php:993
-msgid "Maximum table size for optimization"
+#: mod/profiles.php:679
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/admin.php:993
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr ""
+#: mod/profiles.php:680
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
 
-#: mod/admin.php:994
-msgid "Minimum level of fragmentation"
-msgstr ""
+#: mod/profiles.php:682
+msgid "Change Profile Photo"
+msgstr "Mudar Foto do Perfil"
 
-#: mod/admin.php:994
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
+#: mod/profiles.php:683
+msgid "View this profile"
+msgstr "Ver este perfil"
 
-#: mod/admin.php:996
-msgid "Periodical check of global contacts"
-msgstr "Checagem periódica dos contatos globais"
+#: mod/profiles.php:685
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
 
-#: mod/admin.php:996
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr ""
+#: mod/profiles.php:686
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
 
-#: mod/admin.php:997
-msgid "Days between requery"
-msgstr ""
+#: mod/profiles.php:687
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
 
-#: mod/admin.php:997
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
+#: mod/profiles.php:689
+msgid "Basic information"
+msgstr "Informação básica"
 
-#: mod/admin.php:998
-msgid "Discover contacts from other servers"
-msgstr ""
+#: mod/profiles.php:690
+msgid "Profile picture"
+msgstr "Foto do perfil"
 
-#: mod/admin.php:998
-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 "Periodicamente buscar contatos em outros servidores. Você pode entre 'Usuários': os usuários do sistema remoto; e 'Contatos Globais': os contatos ativos conhecidos pelo sistema. O plano B é destinado a servidores rodando Redmatrix ou Friendica, se mais antigos, para os quais os contatos globais não estavam disponíveis. O plano B aumenta a carga do servidor, por isso a opção recomendada é 'Usuários, Contatos Globais'."
+#: mod/profiles.php:692
+msgid "Preferences"
+msgstr "Preferências"
 
-#: mod/admin.php:999
-msgid "Timeframe for fetching global contacts"
-msgstr ""
+#: mod/profiles.php:693
+msgid "Status information"
+msgstr "Informação de Status"
 
-#: mod/admin.php:999
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr ""
+#: mod/profiles.php:694
+msgid "Additional information"
+msgstr "Informações adicionais"
 
-#: mod/admin.php:1000
-msgid "Search the local directory"
+#: mod/profiles.php:697
+msgid "Relation"
 msgstr ""
 
-#: mod/admin.php:1000
-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/profiles.php:701
+msgid "Your Gender:"
+msgstr "Seu gênero:"
 
-#: mod/admin.php:1002
-msgid "Publish server information"
-msgstr ""
+#: mod/profiles.php:702
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
 
-#: mod/admin.php:1002
-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/profiles.php:704
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
 
-#: mod/admin.php:1004
-msgid "Use MySQL full text engine"
-msgstr "Use o engine de texto completo (full text) do MySQL"
+#: mod/profiles.php:709
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
 
-#: mod/admin.php:1004
+#: mod/profiles.php:711
 msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
 
-#: mod/admin.php:1005
-msgid "Suppress Language"
-msgstr "Retira idioma"
+#: mod/profiles.php:712
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
 
-#: mod/admin.php:1005
-msgid "Suppress language information in meta information about a posting."
-msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
+#: mod/profiles.php:713
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
 
-#: mod/admin.php:1006
-msgid "Suppress Tags"
-msgstr "Suprime etiquetas"
+#: mod/profiles.php:716
+msgid "Street Address:"
+msgstr "Endereço:"
 
-#: mod/admin.php:1006
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "suprime mostrar uma lista de hashtags no final de cada texto."
+#: mod/profiles.php:717
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
 
-#: mod/admin.php:1007
-msgid "Path to item cache"
-msgstr "Diretório do cache de item"
+#: mod/profiles.php:718
+msgid "Region/State:"
+msgstr "Região/Estado:"
 
-#: mod/admin.php:1007
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
+#: mod/profiles.php:719
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
 
-#: mod/admin.php:1008
-msgid "Cache duration in seconds"
-msgstr "Duração do cache em segundos"
+#: mod/profiles.php:720
+msgid "Country:"
+msgstr "País:"
 
-#: mod/admin.php:1008
-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 "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1."
+#: mod/profiles.php:724
+msgid "Who: (if applicable)"
+msgstr "Quem: (se pertinente)"
 
-#: mod/admin.php:1009
-msgid "Maximum numbers of comments per post"
-msgstr "O número máximo de comentários por post"
+#: mod/profiles.php:724
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: mod/admin.php:1009
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100."
+#: mod/profiles.php:725
+msgid "Since [date]:"
+msgstr "Desde [data]:"
 
-#: mod/admin.php:1010
-msgid "Path for lock file"
-msgstr "Diretório do arquivo de trava"
+#: mod/profiles.php:727
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
 
-#: mod/admin.php:1010
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
+#: mod/profiles.php:728
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/admin.php:1011
-msgid "Temp path"
-msgstr "Diretório Temp"
-
-#: mod/admin.php:1011
+#: mod/profiles.php:728
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Base path to installation"
-msgstr "Diretório base para instalação"
+#: mod/profiles.php:729
+msgid "Homepage URL:"
+msgstr "Endereço do site web:"
 
-#: mod/admin.php:1012
-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/profiles.php:732
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
 
-#: mod/admin.php:1013
-msgid "Disable picture proxy"
-msgstr "Disabilitar proxy de imagem"
+#: mod/profiles.php:733
+msgid "Public Keywords:"
+msgstr "Palavras-chave públicas:"
 
-#: mod/admin.php:1013
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa."
+#: mod/profiles.php:733
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
 
-#: mod/admin.php:1014
-msgid "Enable old style pager"
-msgstr "Habilita estilo antigo de paginação"
+#: mod/profiles.php:734
+msgid "Private Keywords:"
+msgstr "Palavras-chave privadas:"
 
-#: mod/admin.php:1014
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr "O estilo antigo de paginação tem número de páginas mas dimunui muito a velocidade das páginas."
+#: mod/profiles.php:734
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
 
-#: mod/admin.php:1015
-msgid "Only search in tags"
-msgstr "Somente pesquisa nas estiquetas"
+#: mod/profiles.php:737
+msgid "Musical interests"
+msgstr "Preferências musicais"
 
-#: mod/admin.php:1015
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento."
+#: mod/profiles.php:738
+msgid "Books, literature"
+msgstr "Livros, literatura"
 
-#: mod/admin.php:1017
-msgid "New base url"
-msgstr "Nova URL base"
+#: mod/profiles.php:739
+msgid "Television"
+msgstr "Televisão"
 
-#: mod/admin.php:1017
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr ""
+#: mod/profiles.php:740
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
 
-#: mod/admin.php:1019
-msgid "RINO Encryption"
-msgstr ""
+#: mod/profiles.php:741
+msgid "Hobbies/Interests"
+msgstr "Passatempos/Interesses"
 
-#: mod/admin.php:1019
-msgid "Encryption layer between nodes."
-msgstr ""
+#: mod/profiles.php:742
+msgid "Love/romance"
+msgstr "Amor/romance"
 
-#: mod/admin.php:1020
-msgid "Embedly API key"
-msgstr ""
+#: mod/profiles.php:743
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
 
-#: mod/admin.php:1020
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr ""
+#: mod/profiles.php:744
+msgid "School/education"
+msgstr "Escola/educação"
 
-#: mod/admin.php:1022
-msgid "Enable 'worker' background processing"
-msgstr ""
+#: mod/profiles.php:745
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
 
-#: mod/admin.php:1022
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr ""
+#: mod/profiles.php:786
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Gerenciar perfis"
 
-#: mod/admin.php:1023
-msgid "Maximum number of parallel workers"
-msgstr ""
+#: mod/register.php:93
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
 
-#: mod/admin.php:1023
+#: mod/register.php:98
+#, php-format
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
+"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 "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login."
 
-#: mod/admin.php:1024
-msgid "Don't use 'proc_open' with the worker"
+#: mod/register.php:105
+msgid "Registration successful."
 msgstr ""
 
-#: mod/admin.php:1024
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr ""
+#: mod/register.php:111
+msgid "Your registration can not be processed."
+msgstr "Não foi possível processar o seu registro."
 
-#: mod/admin.php:1025
-msgid "Enable fastlane"
-msgstr ""
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
+msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
 
-#: mod/admin.php:1025
+#: mod/register.php:226
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr ""
-
-#: mod/admin.php:1054
-msgid "Update has been marked successful"
-msgstr "A atualização foi marcada como bem sucedida"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
 
-#: mod/admin.php:1062
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso."
+#: mod/register.php:227
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
 
-#: mod/admin.php:1065
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s"
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
+msgstr "Seu OpenID (opcional): "
 
-#: mod/admin.php:1077
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "A execução de %s falhou com erro: %s"
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
+msgstr "Incluir o seu perfil no diretório de membros?"
 
-#: mod/admin.php:1080
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "A atualização %s foi aplicada com sucesso."
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr ""
 
-#: mod/admin.php:1084
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr ""
 
-#: mod/admin.php:1086
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada."
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
+msgstr "A associação a este site só pode ser feita mediante convite."
 
-#: mod/admin.php:1105
-msgid "No failed updates."
-msgstr "Nenhuma atualização com falha."
+#: mod/register.php:269
+msgid "Your invitation ID: "
+msgstr "A ID do seu convite: "
 
-#: mod/admin.php:1106
-msgid "Check database structure"
-msgstr "Verifique a estrutura do banco de dados"
+#: mod/register.php:272 mod/admin.php:1056
+msgid "Registration"
+msgstr "Registro"
 
-#: mod/admin.php:1111
-msgid "Failed Updates"
-msgstr "Atualizações com falha"
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr ""
 
-#: mod/admin.php:1112
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
+#: mod/register.php:281
+msgid "Your Email Address: "
+msgstr "Seu endereço de e-mail: "
 
-#: mod/admin.php:1113
-msgid "Mark success (if update was manually applied)"
-msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
+#: mod/register.php:283 mod/settings.php:1278
+msgid "New Password:"
+msgstr "Nova senha:"
 
-#: mod/admin.php:1114
-msgid "Attempt to execute this update step automatically"
-msgstr "Tentar executar esse passo da atualização automaticamente"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
+msgstr ""
 
-#: mod/admin.php:1146
-#, 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 "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você."
+#: mod/register.php:284 mod/settings.php:1279
+msgid "Confirm:"
+msgstr "Confirme:"
 
-#: mod/admin.php:1149
-#, php-format
+#: mod/register.php:285
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s."
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
 
-#: mod/admin.php:1193
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s usuário bloqueado/desbloqueado"
-msgstr[1] "%s usuários bloqueados/desbloqueados"
+#: mod/register.php:286
+msgid "Choose a nickname: "
+msgstr "Escolha uma identificação: "
 
-#: mod/admin.php:1200
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s usuário excluído"
-msgstr[1] "%s usuários excluídos"
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
+msgstr "Importa seu perfil  desta instância do friendica"
 
-#: mod/admin.php:1247
-#, php-format
-msgid "User '%s' deleted"
-msgstr "O usuário '%s' foi excluído"
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
+msgstr ""
 
-#: mod/admin.php:1255
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "O usuário '%s' foi desbloqueado"
+#: mod/search.php:124
+msgid "Too Many Requests"
+msgstr ""
+
+#: mod/search.php:125
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr ""
 
-#: mod/admin.php:1255
+#: mod/search.php:225
 #, php-format
-msgid "User '%s' blocked"
-msgstr "O usuário '%s' foi bloqueado"
+msgid "Items tagged with: %s"
+msgstr ""
 
-#: mod/admin.php:1374 mod/admin.php:1399
-msgid "Register date"
-msgstr "Data de registro"
+#: mod/settings.php:43 mod/admin.php:1490
+msgid "Account"
+msgstr "Conta"
 
-#: mod/admin.php:1374 mod/admin.php:1399
-msgid "Last login"
-msgstr "Última entrada"
+#: mod/settings.php:52 mod/admin.php:169
+msgid "Additional features"
+msgstr "Funcionalidades adicionais"
 
-#: mod/admin.php:1374 mod/admin.php:1399
-msgid "Last item"
-msgstr "Último item"
+#: mod/settings.php:60
+msgid "Display"
+msgstr "Tela"
 
-#: mod/admin.php:1374 mod/settings.php:43
-msgid "Account"
-msgstr "Conta"
+#: mod/settings.php:67 mod/settings.php:890
+msgid "Social Networks"
+msgstr "Redes Sociais"
 
-#: mod/admin.php:1383
-msgid "Add User"
-msgstr "Adicionar usuário"
+#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/admin.php:1384
-msgid "select all"
-msgstr "selecionar todos"
+#: mod/settings.php:88
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
 
-#: mod/admin.php:1385
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
+#: mod/settings.php:95 mod/uexport.php:45
+msgid "Export personal data"
+msgstr "Exportar dados pessoais"
 
-#: mod/admin.php:1386
-msgid "User waiting for permanent deletion"
-msgstr "Usuário aguardando por fim permanente da conta."
+#: mod/settings.php:102
+msgid "Remove account"
+msgstr "Remover a conta"
 
-#: mod/admin.php:1387
-msgid "Request date"
-msgstr "Solicitar data"
+#: mod/settings.php:157
+msgid "Missing some important data!"
+msgstr "Está faltando algum dado importante!"
 
-#: mod/admin.php:1388
-msgid "No registrations."
-msgstr "Nenhum registro."
+#: mod/settings.php:271
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
 
-#: mod/admin.php:1389 mod/notifications.php:176 mod/notifications.php:249
-msgid "Approve"
-msgstr "Aprovar"
+#: mod/settings.php:276
+msgid "Email settings updated."
+msgstr "As configurações de e-mail foram atualizadas."
 
-#: mod/admin.php:1390
-msgid "Deny"
-msgstr "Negar"
+#: mod/settings.php:291
+msgid "Features updated"
+msgstr "Funcionalidades atualizadas"
 
-#: mod/admin.php:1392 mod/contacts.php:605 mod/contacts.php:803
-#: mod/contacts.php:997
-msgid "Block"
-msgstr "Bloquear"
+#: mod/settings.php:361
+msgid "Relocate message has been send to your contacts"
+msgstr "A mensagem de relocação foi enviada para seus contatos"
 
-#: mod/admin.php:1393 mod/contacts.php:605 mod/contacts.php:803
-#: mod/contacts.php:997
-msgid "Unblock"
-msgstr "Desbloquear"
+#: mod/settings.php:380
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
 
-#: mod/admin.php:1394
-msgid "Site admin"
-msgstr "Administração do site"
+#: mod/settings.php:388
+msgid "Wrong password."
+msgstr "Senha errada."
 
-#: mod/admin.php:1395
-msgid "Account expired"
-msgstr "Conta expirou"
+#: mod/settings.php:399
+msgid "Password changed."
+msgstr "A senha foi modificada."
 
-#: mod/admin.php:1398
-msgid "New User"
-msgstr "Novo usuário"
+#: mod/settings.php:401
+msgid "Password update failed. Please try again."
+msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
 
-#: mod/admin.php:1399
-msgid "Deleted since"
-msgstr "Apagado desde"
+#: mod/settings.php:481
+msgid " Please use a shorter name."
+msgstr " Por favor, use um nome mais curto."
 
-#: mod/admin.php:1404
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
+#: mod/settings.php:483
+msgid " Name too short."
+msgstr " O nome é muito curto."
 
-#: mod/admin.php:1405
-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 "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
+#: mod/settings.php:492
+msgid "Wrong Password"
+msgstr "Senha Errada"
 
-#: mod/admin.php:1415
-msgid "Name of the new user."
-msgstr "Nome do novo usuário."
+#: mod/settings.php:497
+msgid " Not valid email."
+msgstr " Não é um e-mail válido."
 
-#: mod/admin.php:1416
-msgid "Nickname"
-msgstr "Apelido"
+#: mod/settings.php:503
+msgid " Cannot change to that email."
+msgstr " Não foi possível alterar para esse e-mail."
 
-#: mod/admin.php:1416
-msgid "Nickname of the new user."
-msgstr "Apelido para o novo usuário."
+#: mod/settings.php:559
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
 
-#: mod/admin.php:1417
-msgid "Email address of the new user."
-msgstr "Endereço de e-mail do novo usuário."
+#: mod/settings.php:563
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
 
-#: mod/admin.php:1460
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "O plugin %s foi desabilitado."
+#: mod/settings.php:603
+msgid "Settings updated."
+msgstr "As configurações foram atualizadas."
 
-#: mod/admin.php:1464
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "O plugin %s foi habilitado."
+#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
+msgid "Add application"
+msgstr "Adicionar aplicação"
 
-#: mod/admin.php:1475 mod/admin.php:1711
-msgid "Disable"
-msgstr "Desabilitar"
+#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
+#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
+#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
+#: mod/admin.php:2170
+msgid "Save Settings"
+msgstr "Salvar configurações"
 
-#: mod/admin.php:1477 mod/admin.php:1713
-msgid "Enable"
-msgstr "Habilitar"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Consumer Key"
+msgstr "Chave do consumidor"
 
-#: mod/admin.php:1500 mod/admin.php:1758
-msgid "Toggle"
-msgstr "Alternar"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Secret"
+msgstr "Segredo do consumidor"
 
-#: mod/admin.php:1508 mod/admin.php:1767
-msgid "Author: "
-msgstr "Autor: "
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Redirect"
+msgstr "Redirecionar"
 
-#: mod/admin.php:1509 mod/admin.php:1768
-msgid "Maintainer: "
-msgstr "Mantenedor: "
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Icon url"
+msgstr "URL do ícone"
 
-#: mod/admin.php:1561
-msgid "Reload active plugins"
-msgstr ""
+#: mod/settings.php:698
+msgid "You can't edit this application."
+msgstr "Você não pode editar esta aplicação."
 
-#: mod/admin.php:1566
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr ""
+#: mod/settings.php:741
+msgid "Connected Apps"
+msgstr "Aplicações conectadas"
 
-#: mod/admin.php:1671
-msgid "No themes found."
-msgstr "Nenhum tema encontrado"
+#: mod/settings.php:745
+msgid "Client key starts with"
+msgstr "A chave do cliente inicia com"
 
-#: mod/admin.php:1749
-msgid "Screenshot"
-msgstr "Captura de tela"
+#: mod/settings.php:746
+msgid "No name"
+msgstr "Sem nome"
 
-#: mod/admin.php:1809
-msgid "Reload active themes"
-msgstr ""
+#: mod/settings.php:747
+msgid "Remove authorization"
+msgstr "Remover autorização"
 
-#: mod/admin.php:1814
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr ""
+#: mod/settings.php:759
+msgid "No Plugin settings configured"
+msgstr "Não foi definida nenhuma configuração de plugin"
 
-#: mod/admin.php:1815
-msgid "[Experimental]"
-msgstr "[Esperimental]"
+#: mod/settings.php:768
+msgid "Plugin Settings"
+msgstr "Configurações do plugin"
 
-#: mod/admin.php:1816
-msgid "[Unsupported]"
-msgstr "[Não suportado]"
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "Off"
+msgstr "Off"
 
-#: mod/admin.php:1840
-msgid "Log settings updated."
-msgstr "As configurações de relatórios foram atualizadas."
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "On"
+msgstr "On"
 
-#: mod/admin.php:1877
-msgid "Clear"
-msgstr "Limpar"
+#: mod/settings.php:790
+msgid "Additional Features"
+msgstr "Funcionalidades Adicionais"
 
-#: mod/admin.php:1882
-msgid "Enable Debugging"
-msgstr "Habilitar depuração"
+#: mod/settings.php:800 mod/settings.php:804
+msgid "General Social Media Settings"
+msgstr ""
 
-#: mod/admin.php:1883
-msgid "Log file"
-msgstr "Arquivo do relatório"
+#: mod/settings.php:810
+msgid "Disable intelligent shortening"
+msgstr ""
 
-#: mod/admin.php:1883
+#: mod/settings.php:812
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
-
-#: mod/admin.php:1884
-msgid "Log level"
-msgstr "Nível do relatório"
+"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:1887
-msgid "PHP logging"
+#: mod/settings.php:818
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:1888
+#: mod/settings.php:820
 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."
+"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:2014 mod/admin.php:2015 mod/settings.php:763
-msgid "Off"
-msgstr "Off"
+#: mod/settings.php:826
+msgid "Default group for OStatus contacts"
+msgstr ""
 
-#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:763
-msgid "On"
-msgstr "On"
+#: mod/settings.php:834
+msgid "Your legacy GNU Social account"
+msgstr ""
 
-#: mod/admin.php:2015
-#, php-format
-msgid "Lock feature %s"
-msgstr "Bloquear funcionalidade %s"
+#: mod/settings.php:836
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
+msgstr ""
 
-#: mod/admin.php:2023
-msgid "Manage Additional Features"
-msgstr "Gerenciar funcionalidades adicionais"
+#: mod/settings.php:839
+msgid "Repair OStatus subscriptions"
+msgstr ""
 
-#: mod/contacts.php:128
+#: mod/settings.php:848 mod/settings.php:849
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
-
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
+msgid "Built-in support for %s connectivity is %s"
+msgstr "O suporte interno para conectividade de %s está %s"
 
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "O contato foi atualizado."
+#: mod/settings.php:848 mod/settings.php:849
+msgid "enabled"
+msgstr "habilitado"
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "O contato foi bloqueado"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "disabled"
+msgstr "desabilitado"
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "O contato foi desbloqueado"
+#: mod/settings.php:849
+msgid "GNU Social (OStatus)"
+msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "O contato foi ignorado"
+#: mod/settings.php:883
+msgid "Email access is disabled on this site."
+msgstr "O acesso ao e-mail está desabilitado neste site."
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "O contato deixou de ser ignorado"
+#: mod/settings.php:895
+msgid "Email/Mailbox Setup"
+msgstr "Configurações do e-mail/caixa postal"
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
-msgstr "O contato foi arquivado"
+#: mod/settings.php:896
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "O contato foi desarquivado"
+#: mod/settings.php:897
+msgid "Last successful email check:"
+msgstr "Última checagem bem sucedida de e-mail:"
 
-#: mod/contacts.php:437
-msgid "Drop contact"
-msgstr ""
+#: mod/settings.php:899
+msgid "IMAP server name:"
+msgstr "Nome do servidor IMAP:"
 
-#: mod/contacts.php:440 mod/contacts.php:799
-msgid "Do you really want to delete this contact?"
-msgstr "Você realmente deseja deletar esse contato?"
+#: mod/settings.php:900
+msgid "IMAP port:"
+msgstr "Porta do IMAP:"
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
+#: mod/settings.php:901
+msgid "Security:"
+msgstr "Segurança:"
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Você tem uma amizade mútua com %s"
+#: mod/settings.php:901 mod/settings.php:906
+msgid "None"
+msgstr "Nenhuma"
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Você está compartilhando com %s"
+#: mod/settings.php:902
+msgid "Email login name:"
+msgstr "Nome de usuário do e-mail:"
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s está compartilhando com você"
+#: mod/settings.php:903
+msgid "Email password:"
+msgstr "Senha do e-mail:"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "As comunicações privadas não estão disponíveis para este contato."
+#: mod/settings.php:904
+msgid "Reply-to address:"
+msgstr "Endereço de resposta (Reply-to):"
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(A atualização foi bem sucedida)"
+#: mod/settings.php:905
+msgid "Send public posts to all email contacts:"
+msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(A atualização não foi bem sucedida)"
+#: mod/settings.php:906
+msgid "Action after import:"
+msgstr "Ação após a importação:"
 
-#: mod/contacts.php:536 mod/contacts.php:978
-msgid "Suggest friends"
-msgstr "Sugerir amigos"
+#: mod/settings.php:906
+msgid "Move to folder"
+msgstr "Mover para pasta"
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo de rede: %s"
+#: mod/settings.php:907
+msgid "Move to folder:"
+msgstr "Mover para pasta:"
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "As comunicações com esse contato foram perdidas!"
+#: mod/settings.php:943 mod/admin.php:942
+msgid "No special theme for mobile devices"
+msgstr "Nenhum tema especial para dispositivos móveis"
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr "Pega mais informações para feeds"
+#: mod/settings.php:1003
+msgid "Display Settings"
+msgstr "Configurações de exibição"
 
-#: mod/contacts.php:557
-msgid "Fetch information"
-msgstr "Buscar informações"
+#: mod/settings.php:1009 mod/settings.php:1032
+msgid "Display Theme:"
+msgstr "Tema do perfil:"
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr "Buscar informação e palavras-chave"
+#: mod/settings.php:1010
+msgid "Mobile Theme:"
+msgstr "Tema para dispositivos móveis:"
 
-#: mod/contacts.php:575
-msgid "Contact"
+#: mod/settings.php:1011
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
-
-#: mod/contacts.php:579
-#, php-format
+#: mod/settings.php:1011
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr ""
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Informações sobre o contato / Anotações"
+#: mod/settings.php:1012
+msgid "Update browser every xx seconds"
+msgstr "Atualizar o navegador a cada xx segundos"
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Editar as anotações do contato"
+#: mod/settings.php:1012
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr ""
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
+#: mod/settings.php:1013
+msgid "Number of items to display per page:"
+msgstr "Número de itens a serem exibidos por página:"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
+#: mod/settings.php:1013 mod/settings.php:1014
+msgid "Maximum of 100 items"
+msgstr "Máximo de 100 itens"
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
-msgstr "Reparar as definições de URL"
+#: mod/settings.php:1014
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Ver as conversas"
+#: mod/settings.php:1015
+msgid "Don't show emoticons"
+msgstr "Não exibir emoticons"
 
-#: mod/contacts.php:596
-msgid "Last update:"
-msgstr "Última atualização:"
+#: mod/settings.php:1016
+msgid "Calendar"
+msgstr "Agenda"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Atualizar publicações públicas"
+#: mod/settings.php:1017
+msgid "Beginning of week:"
+msgstr ""
 
-#: mod/contacts.php:600 mod/contacts.php:988
-msgid "Update now"
-msgstr "Atualizar agora"
+#: mod/settings.php:1018
+msgid "Don't show notices"
+msgstr "Não mostra avisos"
 
-#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005
-msgid "Unignore"
-msgstr "Deixar de ignorar"
+#: mod/settings.php:1019
+msgid "Infinite scroll"
+msgstr "rolamento infinito"
 
-#: mod/contacts.php:606 mod/contacts.php:804 mod/contacts.php:1005
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251
-msgid "Ignore"
-msgstr "Ignorar"
+#: mod/settings.php:1020
+msgid "Automatic updates only at the top of the network page"
+msgstr "Atualizações automáticas só na parte superior da página da rede"
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
+#: mod/settings.php:1021
+msgid "Bandwith Saver Mode"
+msgstr ""
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
+#: mod/settings.php:1021
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr ""
+
+#: mod/settings.php:1023
+msgid "General Theme Settings"
+msgstr ""
 
-#: mod/contacts.php:612
-msgid "Currently archived"
-msgstr "Atualmente arquivado"
+#: mod/settings.php:1024
+msgid "Custom Theme Settings"
+msgstr ""
 
-#: mod/contacts.php:613 mod/notifications.php:172 mod/notifications.php:239
-msgid "Hide this contact from others"
-msgstr "Ocultar este contato dos outros"
+#: mod/settings.php:1025
+msgid "Content Settings"
+msgstr ""
 
-#: mod/contacts.php:613
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
+#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
+#: view/theme/vier/config.php:114
+msgid "Theme settings"
+msgstr "Configurações do tema"
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
-msgstr "Notificações para novas publicações"
+#: mod/settings.php:1110
+msgid "Account Types"
+msgstr ""
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
-msgstr "Envie uma notificação para todos as novas publicações deste contato"
+#: mod/settings.php:1111
+msgid "Personal Page Subtypes"
+msgstr ""
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr "Palavras-chave na Lista Negra"
+#: mod/settings.php:1112
+msgid "Community Forum Subtypes"
+msgstr ""
 
-#: mod/contacts.php:617
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."
+#: mod/settings.php:1119
+msgid "Personal Page"
+msgstr ""
 
-#: mod/contacts.php:633
-msgid "Actions"
+#: mod/settings.php:1120
+msgid "This account is a regular personal profile"
 msgstr ""
 
-#: mod/contacts.php:636
-msgid "Contact Settings"
+#: mod/settings.php:1123
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/contacts.php:682
-msgid "Suggestions"
-msgstr "Sugestões"
+#: mod/settings.php:1124
+msgid "This account is a profile for an organisation"
+msgstr ""
 
-#: mod/contacts.php:685
-msgid "Suggest potential friends"
-msgstr "Sugerir amigos em potencial"
+#: mod/settings.php:1127
+msgid "News Page"
+msgstr ""
 
-#: mod/contacts.php:693
-msgid "Show all contacts"
-msgstr "Exibe todos os contatos"
+#: mod/settings.php:1128
+msgid "This account is a news account/reflector"
+msgstr ""
 
-#: mod/contacts.php:698
-msgid "Unblocked"
-msgstr "Desbloquear"
+#: mod/settings.php:1131
+msgid "Community Forum"
+msgstr ""
 
-#: mod/contacts.php:701
-msgid "Only show unblocked contacts"
-msgstr "Exibe somente contatos desbloqueados"
+#: mod/settings.php:1132
+msgid ""
+"This account is a community forum where people can discuss with each other"
+msgstr ""
 
-#: mod/contacts.php:707
-msgid "Blocked"
-msgstr "Bloqueado"
+#: mod/settings.php:1135
+msgid "Normal Account Page"
+msgstr "Página de conta normal"
 
-#: mod/contacts.php:710
-msgid "Only show blocked contacts"
-msgstr "Exibe somente contatos bloqueados"
+#: mod/settings.php:1136
+msgid "This account is a normal personal profile"
+msgstr "Essa conta é um perfil pessoal normal"
 
-#: mod/contacts.php:716
-msgid "Ignored"
-msgstr "Ignorados"
+#: mod/settings.php:1139
+msgid "Soapbox Page"
+msgstr "Página de vitrine"
 
-#: mod/contacts.php:719
-msgid "Only show ignored contacts"
-msgstr "Exibe somente contatos ignorados"
+#: mod/settings.php:1140
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
 
-#: mod/contacts.php:725
-msgid "Archived"
-msgstr "Arquivados"
+#: mod/settings.php:1143
+msgid "Public Forum"
+msgstr ""
 
-#: mod/contacts.php:728
-msgid "Only show archived contacts"
-msgstr "Exibe somente contatos arquivados"
+#: mod/settings.php:1144
+msgid "Automatically approve all contact requests"
+msgstr ""
 
-#: mod/contacts.php:734
-msgid "Hidden"
-msgstr "Ocultos"
+#: mod/settings.php:1147
+msgid "Automatic Friend Page"
+msgstr "Página de amigo automático"
 
-#: mod/contacts.php:737
-msgid "Only show hidden contacts"
-msgstr "Exibe somente contatos ocultos"
+#: mod/settings.php:1148
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
 
-#: mod/contacts.php:794
-msgid "Search your contacts"
-msgstr "Pesquisar seus contatos"
+#: mod/settings.php:1151
+msgid "Private Forum [Experimental]"
+msgstr "Fórum privado [Experimental]"
 
-#: mod/contacts.php:802 mod/settings.php:158 mod/settings.php:689
-msgid "Update"
-msgstr "Atualizar"
+#: mod/settings.php:1152
+msgid "Private forum - approved members only"
+msgstr "Fórum privado - somente membros aprovados"
 
-#: mod/contacts.php:805 mod/contacts.php:1013
-msgid "Archive"
-msgstr "Arquivar"
+#: mod/settings.php:1163
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/contacts.php:805 mod/contacts.php:1013
-msgid "Unarchive"
-msgstr "Desarquivar"
+#: mod/settings.php:1163
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
 
-#: mod/contacts.php:808
-msgid "Batch Actions"
+#: mod/settings.php:1171
+msgid "Publish your default profile in your local site directory?"
+msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
+
+#: mod/settings.php:1171
+msgid "Your profile may be visible in public."
 msgstr ""
 
-#: mod/contacts.php:854
-msgid "View all contacts"
-msgstr "Ver todos os contatos"
+#: mod/settings.php:1177
+msgid "Publish your default profile in the global social directory?"
+msgstr "Publicar o seu perfil padrão no diretório social global?"
 
-#: mod/contacts.php:864
-msgid "View all common friends"
-msgstr ""
+#: mod/settings.php:1184
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
 
-#: mod/contacts.php:871
-msgid "Advanced Contact Settings"
-msgstr "Configurações avançadas do contato"
+#: mod/settings.php:1188
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível."
 
-#: mod/contacts.php:916
-msgid "Mutual Friendship"
-msgstr "Amizade mútua"
+#: mod/settings.php:1193
+msgid "Allow friends to post to your profile page?"
+msgstr "Permitir aos amigos publicarem na sua página de perfil?"
 
-#: mod/contacts.php:920
-msgid "is a fan of yours"
-msgstr "é um fã seu"
+#: mod/settings.php:1198
+msgid "Allow friends to tag your posts?"
+msgstr "Permitir aos amigos etiquetarem suas publicações?"
 
-#: mod/contacts.php:924
-msgid "you are a fan of"
-msgstr "você é um fã de"
+#: mod/settings.php:1203
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
 
-#: mod/contacts.php:999
-msgid "Toggle Blocked status"
-msgstr "Alternar o status de bloqueio"
+#: mod/settings.php:1208
+msgid "Permit unknown people to send you private mail?"
+msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
 
-#: mod/contacts.php:1007
-msgid "Toggle Ignored status"
-msgstr "Alternar o status de ignorado"
+#: mod/settings.php:1216
+msgid "Profile is <strong>not published</strong>."
+msgstr "O perfil <strong>não está publicado</strong>."
 
-#: mod/contacts.php:1015
-msgid "Toggle Archive status"
-msgstr "Alternar o status de arquivamento"
+#: mod/settings.php:1224
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr ""
 
-#: mod/contacts.php:1023
-msgid "Delete contact"
-msgstr "Excluir o contato"
+#: mod/settings.php:1231
+msgid "Automatically expire posts after this many days:"
+msgstr "Expirar automaticamente publicações após tantos dias:"
 
-#: mod/dfrn_confirm.php:66 mod/profiles.php:19 mod/profiles.php:134
-#: mod/profiles.php:180 mod/profiles.php:610
-msgid "Profile not found."
-msgstr "O perfil não foi encontrado."
+#: mod/settings.php:1231
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
 
-#: mod/dfrn_confirm.php:123
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
+#: mod/settings.php:1232
+msgid "Advanced expiration settings"
+msgstr "Configurações avançadas de expiração"
 
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "A resposta do site remoto não foi compreendida."
+#: mod/settings.php:1233
+msgid "Advanced Expiration"
+msgstr "Expiração avançada"
 
-#: mod/dfrn_confirm.php:251 mod/dfrn_confirm.php:256
-msgid "Unexpected response from remote site: "
-msgstr "Resposta inesperada do site remoto: "
+#: mod/settings.php:1234
+msgid "Expire posts:"
+msgstr "Expirar publicações:"
 
-#: mod/dfrn_confirm.php:265
-msgid "Confirmation completed successfully."
-msgstr "A confirmação foi completada com sucesso."
+#: mod/settings.php:1235
+msgid "Expire personal notes:"
+msgstr "Expirar notas pessoais:"
 
-#: mod/dfrn_confirm.php:267 mod/dfrn_confirm.php:281 mod/dfrn_confirm.php:288
-msgid "Remote site reported: "
-msgstr "O site remoto relatou: "
+#: mod/settings.php:1236
+msgid "Expire starred posts:"
+msgstr "Expirar publicações destacadas:"
 
-#: mod/dfrn_confirm.php:279
-msgid "Temporary failure. Please wait and try again."
-msgstr "Falha temporária. Por favor, aguarde e tente novamente."
+#: mod/settings.php:1237
+msgid "Expire photos:"
+msgstr "Expirar fotos:"
 
-#: mod/dfrn_confirm.php:286
-msgid "Introduction failed or was revoked."
-msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
+#: mod/settings.php:1238
+msgid "Only expire posts by others:"
+msgstr "Expirar somente as publicações de outras pessoas:"
 
-#: mod/dfrn_confirm.php:415
-msgid "Unable to set contact photo."
-msgstr "Não foi possível definir a foto do contato."
+#: mod/settings.php:1269
+msgid "Account Settings"
+msgstr "Configurações da conta"
 
-#: mod/dfrn_confirm.php:553
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
+#: mod/settings.php:1277
+msgid "Password Settings"
+msgstr "Configurações da senha"
 
-#: mod/dfrn_confirm.php:563
-msgid "Our site encryption key is apparently messed up."
-msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
+#: mod/settings.php:1279
+msgid "Leave password fields blank unless changing"
+msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
 
-#: mod/dfrn_confirm.php:574
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
+#: mod/settings.php:1280
+msgid "Current Password:"
+msgstr "Senha Atual:"
 
-#: mod/dfrn_confirm.php:595
-msgid "Contact record was not found for you on our site."
-msgstr "O registro do contato não foi encontrado para você em seu site."
+#: mod/settings.php:1280 mod/settings.php:1281
+msgid "Your current password to confirm the changes"
+msgstr "Sua senha atual para confirmar as mudanças"
 
-#: mod/dfrn_confirm.php:609
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
+#: mod/settings.php:1281
+msgid "Password:"
+msgstr "Senha:"
 
-#: mod/dfrn_confirm.php:629
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
+#: mod/settings.php:1285
+msgid "Basic Settings"
+msgstr "Configurações básicas"
 
-#: mod/dfrn_confirm.php:640
-msgid "Unable to set your contact credentials on our system."
-msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
+#: mod/settings.php:1287
+msgid "Email Address:"
+msgstr "Endereço de e-mail:"
 
-#: mod/dfrn_confirm.php:699
-msgid "Unable to update your contact profile details on our system"
-msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
+#: mod/settings.php:1288
+msgid "Your Timezone:"
+msgstr "Seu fuso horário:"
 
-#: mod/dfrn_confirm.php:771
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se associou a %2$s"
+#: mod/settings.php:1289
+msgid "Your Language:"
+msgstr "Seu idioma:"
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
+#: mod/settings.php:1289
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
-msgstr ""
+#: mod/settings.php:1290
+msgid "Default Post Location:"
+msgstr "Localização padrão de suas publicações:"
+
+#: mod/settings.php:1291
+msgid "Use Browser Location:"
+msgstr "Usar localizador do navegador:"
+
+#: mod/settings.php:1294
+msgid "Security and Privacy Settings"
+msgstr "Configurações de segurança e privacidade"
+
+#: mod/settings.php:1296
+msgid "Maximum Friend Requests/Day:"
+msgstr "Número máximo de requisições de amizade por dia:"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr "O evento não pode terminar antes de ter começado."
+#: mod/settings.php:1296 mod/settings.php:1326
+msgid "(to prevent spam abuse)"
+msgstr "(para prevenir abuso de spammers)"
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "O título do evento e a hora de início são obrigatórios."
+#: mod/settings.php:1297
+msgid "Default Post Permissions"
+msgstr "Permissões padrão de publicação"
 
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Criar um novo evento"
+#: mod/settings.php:1298
+msgid "(click to open/close)"
+msgstr "(clique para abrir/fechar)"
 
-#: mod/events.php:483
-msgid "Event details"
-msgstr "Detalhes do evento"
+#: mod/settings.php:1309
+msgid "Default Private Post"
+msgstr "Publicação Privada Padrão"
 
-#: mod/events.php:484
-msgid "Starting date and Title are required."
-msgstr ""
+#: mod/settings.php:1310
+msgid "Default Public Post"
+msgstr "Publicação Pública Padrão"
 
-#: mod/events.php:485 mod/events.php:486
-msgid "Event Starts:"
-msgstr "Início do evento:"
+#: mod/settings.php:1314
+msgid "Default Permissions for New Posts"
+msgstr "Permissões Padrão para Publicações Novas"
 
-#: mod/events.php:485 mod/events.php:497 mod/profiles.php:709
-msgid "Required"
-msgstr "Obrigatório"
+#: mod/settings.php:1326
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
 
-#: mod/events.php:487 mod/events.php:503
-msgid "Finish date/time is not known or not relevant"
-msgstr "A data/hora de término não é conhecida ou não é relevante"
+#: mod/settings.php:1329
+msgid "Notification Settings"
+msgstr "Configurações de notificação"
 
-#: mod/events.php:489 mod/events.php:490
-msgid "Event Finishes:"
-msgstr "Término do evento:"
+#: mod/settings.php:1330
+msgid "By default post a status message when:"
+msgstr "Por padrão, publicar uma mensagem de status quando:"
 
-#: mod/events.php:491 mod/events.php:504
-msgid "Adjust for viewer timezone"
-msgstr "Ajustar para o fuso horário do visualizador"
+#: mod/settings.php:1331
+msgid "accepting a friend request"
+msgstr "aceitar uma requisição de amizade"
 
-#: mod/events.php:493
-msgid "Description:"
-msgstr "Descrição:"
+#: mod/settings.php:1332
+msgid "joining a forum/community"
+msgstr "associar-se a um fórum/comunidade"
 
-#: mod/events.php:497 mod/events.php:499
-msgid "Title:"
-msgstr "Título:"
+#: mod/settings.php:1333
+msgid "making an <em>interesting</em> profile change"
+msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
 
-#: mod/events.php:500 mod/events.php:501
-msgid "Share this event"
-msgstr "Compartilhar este evento"
+#: mod/settings.php:1334
+msgid "Send a notification email when:"
+msgstr "Enviar um e-mail de notificação sempre que:"
 
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "A sugestão de amigo foi enviada"
+#: mod/settings.php:1335
+msgid "You receive an introduction"
+msgstr "Você recebeu uma apresentação"
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Sugerir amigos"
+#: mod/settings.php:1336
+msgid "Your introductions are confirmed"
+msgstr "Suas apresentações forem confirmadas"
 
-#: mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Sugerir um amigo para %s"
+#: mod/settings.php:1337
+msgid "Someone writes on your profile wall"
+msgstr "Alguém escrever no mural do seu perfil"
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
+#: mod/settings.php:1338
+msgid "Someone writes a followup comment"
+msgstr "Alguém comentar a sua mensagem"
 
-#: mod/item.php:334
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
+#: mod/settings.php:1339
+msgid "You receive a private message"
+msgstr "Você recebeu uma mensagem privada"
 
-#: mod/item.php:867
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: mod/settings.php:1340
+msgid "You receive a friend suggestion"
+msgstr "Você recebe uma suggestão de amigo"
 
-#: mod/item.php:993
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
+#: mod/settings.php:1341
+msgid "You are tagged in a post"
+msgstr "Você foi etiquetado em uma publicação"
 
-#: mod/item.php:995
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Você pode visitá-lo em %s"
+#: mod/settings.php:1342
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Você está cutucado/incitado/etc. em uma publicação"
 
-#: mod/item.php:996
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
+#: mod/settings.php:1344
+msgid "Activate desktop notifications"
+msgstr ""
 
-#: mod/item.php:1000
-#, php-format
-msgid "%s posted an update."
-msgstr "%s publicou uma atualização."
+#: mod/settings.php:1344
+msgid "Show desktop popup on new notifications"
+msgstr ""
 
-#: mod/mood.php:133
-msgid "Mood"
-msgstr "Humor"
+#: mod/settings.php:1346
+msgid "Text-only notification emails"
+msgstr "Emails de notificação apenas de texto"
 
-#: mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Defina o seu humor e conte aos seus amigos"
+#: mod/settings.php:1348
+msgid "Send text only notification emails, without the html part"
+msgstr "Enviar e-mails de notificação apenas de texto, sem a parte html"
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Cutucar/Incitar"
+#: mod/settings.php:1350
+msgid "Advanced Account/Page Type Settings"
+msgstr "Conta avançada/Configurações do tipo de página"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Cutuca, incita ou faz outras coisas com alguém"
+#: mod/settings.php:1351
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modificar o comportamento desta conta em situações especiais"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatário"
+#: mod/settings.php:1354
+msgid "Relocate"
+msgstr "Relocação"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Selecione o que você deseja fazer com o destinatário"
+#: mod/settings.php:1355
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Fazer com que essa publicação se torne privada"
+#: mod/settings.php:1356
+msgid "Resend relocate message to contacts"
+msgstr "Reenviar mensagem de relocação para os contatos"
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "A imagem foi enviada, mas não foi possível cortá-la."
+#: mod/uexport.php:37
+msgid "Export account"
+msgstr "Exportar conta"
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
+#: mod/uexport.php:37
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor."
+
+#: mod/uexport.php:38
+msgid "Export all"
+msgstr "Exportar tudo"
 
-#: mod/profile_photo.php:124
+#: mod/uexport.php:38
 msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
+"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 "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Não foi possível processar a imagem"
+#: mod/videos.php:124
+msgid "Do you really want to delete this video?"
+msgstr ""
 
-#: mod/profile_photo.php:248
-msgid "Upload File:"
-msgstr "Enviar arquivo:"
+#: mod/videos.php:129
+msgid "Delete Video"
+msgstr ""
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
-msgstr "Selecione um perfil:"
+#: mod/videos.php:208
+msgid "No videos selected"
+msgstr "Nenhum vídeo selecionado"
 
-#: mod/profile_photo.php:251
-msgid "Upload"
-msgstr "Enviar"
+#: mod/videos.php:402
+msgid "Recent Videos"
+msgstr "Vídeos Recentes"
 
-#: mod/profile_photo.php:254
-msgid "or"
-msgstr "ou"
+#: mod/videos.php:404
+msgid "Upload New Videos"
+msgstr "Envie Novos Vídeos"
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
-msgstr "pule esta etapa"
+#: mod/install.php:106
+msgid "Friendica Communications Server - Setup"
+msgstr "Servidor de Comunicações Friendica - Configuração"
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
-msgstr "selecione uma foto de um álbum de fotos"
+#: mod/install.php:112
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
-msgstr "Cortar a imagem"
+#: mod/install.php:116
+msgid "Could not create table."
+msgstr "Não foi possível criar tabela."
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+#: mod/install.php:122
+msgid "Your Friendica site database has been installed."
+msgstr "O banco de dados do seu site Friendica foi instalado."
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
-msgstr "Encerrar a edição"
+#: mod/install.php:127
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "A imagem foi enviada com sucesso."
+#: mod/install.php:128 mod/install.php:200 mod/install.php:547
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
+#: mod/install.php:140
+msgid "Database already in use."
+msgstr ""
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Perfil-"
+#: mod/install.php:197
+msgid "System check"
+msgstr "Checagem do sistema"
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
+#: mod/install.php:202
+msgid "Check again"
+msgstr "Checar novamente"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
+#: mod/install.php:221
+msgid "Database connection"
+msgstr "Conexão de banco de dados"
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
-msgstr "É necessário informar o nome do perfil."
+#: mod/install.php:222
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
 
-#: mod/profiles.php:337
-msgid "Marital Status"
-msgstr "Situação amorosa"
+#: mod/install.php:223
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
 
-#: mod/profiles.php:341
-msgid "Romantic Partner"
-msgstr "Parceiro romântico"
+#: mod/install.php:224
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
 
-#: mod/profiles.php:353
-msgid "Work/Employment"
-msgstr "Trabalho/emprego"
+#: mod/install.php:228
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
 
-#: mod/profiles.php:356
-msgid "Religion"
-msgstr "Religião"
+#: mod/install.php:229
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
 
-#: mod/profiles.php:360
-msgid "Political Views"
-msgstr "Posicionamento político"
+#: mod/install.php:230
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
 
-#: mod/profiles.php:364
-msgid "Gender"
-msgstr "Gênero"
+#: mod/install.php:230
+msgid "For security reasons the password must not be empty"
+msgstr ""
 
-#: mod/profiles.php:368
-msgid "Sexual Preference"
-msgstr "Preferência sexual"
+#: mod/install.php:231
+msgid "Database Name"
+msgstr "Nome do banco de dados"
 
-#: mod/profiles.php:372
-msgid "Homepage"
-msgstr "Página Principal"
+#: mod/install.php:232 mod/install.php:273
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
 
-#: mod/profiles.php:376 mod/profiles.php:695
-msgid "Interests"
-msgstr "Interesses"
+#: mod/install.php:232 mod/install.php:273
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
 
-#: mod/profiles.php:380
-msgid "Address"
-msgstr "Endereço"
+#: mod/install.php:236 mod/install.php:276
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
 
-#: mod/profiles.php:387 mod/profiles.php:691
-msgid "Location"
-msgstr "Localização"
+#: mod/install.php:263
+msgid "Site settings"
+msgstr "Configurações do site"
 
-#: mod/profiles.php:470
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
+#: mod/install.php:277
+msgid "System Language:"
+msgstr ""
 
-#: mod/profiles.php:557
-msgid " and "
-msgstr " e "
+#: mod/install.php:277
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr ""
 
-#: mod/profiles.php:565
-msgid "public profile"
-msgstr "perfil público"
+#: mod/install.php:317
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
 
-#: mod/profiles.php:568
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
+#: mod/install.php:318
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr ""
 
-#: mod/profiles.php:569
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visite %2$s de %1$s"
+#: mod/install.php:322
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PhP"
 
-#: mod/profiles.php:572
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s foi atualizado %2$s, mudando %3$s."
+#: mod/install.php:322
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
 
-#: mod/profiles.php:638
-msgid "Hide contacts and friends:"
-msgstr "Esconder contatos e amigos:"
+#: mod/install.php:327
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
 
-#: mod/profiles.php:643
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
+#: mod/install.php:336
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
 
-#: mod/profiles.php:667
-msgid "Show more profile fields:"
-msgstr ""
+#: mod/install.php:337
+msgid "Found PHP version: "
+msgstr "Encontrado PHP versão:"
 
-#: mod/profiles.php:679
-msgid "Profile Actions"
-msgstr ""
+#: mod/install.php:339
+msgid "PHP cli binary"
+msgstr "Binário cli do PHP"
 
-#: mod/profiles.php:680
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
+#: mod/install.php:350
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
 
-#: mod/profiles.php:682
-msgid "Change Profile Photo"
-msgstr "Mudar Foto do Perfil"
+#: mod/install.php:351
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
 
-#: mod/profiles.php:683
-msgid "View this profile"
-msgstr "Ver este perfil"
+#: mod/install.php:353
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/profiles.php:685
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
+#: mod/install.php:376
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
 
-#: mod/profiles.php:686
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
+#: mod/install.php:377
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/profiles.php:687
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
+#: mod/install.php:379
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de encriptação"
 
-#: mod/profiles.php:689
-msgid "Basic information"
-msgstr "Informação básica"
+#: mod/install.php:386
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: mod/profiles.php:690
-msgid "Profile picture"
-msgstr "Foto do perfil"
+#: mod/install.php:387
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
 
-#: mod/profiles.php:692
-msgid "Preferences"
-msgstr "Preferências"
+#: mod/install.php:388
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: mod/profiles.php:693
-msgid "Status information"
-msgstr "Informação de Status"
+#: mod/install.php:389
+msgid "PDO or MySQLi PHP module"
+msgstr ""
 
-#: mod/profiles.php:694
-msgid "Additional information"
-msgstr "Informações adicionais"
+#: mod/install.php:390
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
 
-#: mod/profiles.php:697
-msgid "Relation"
+#: mod/install.php:391
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/profiles.php:701
-msgid "Your Gender:"
-msgstr "Seu gênero:"
+#: mod/install.php:392
+msgid "iconv module"
+msgstr ""
 
-#: mod/profiles.php:702
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
+#: mod/install.php:396 mod/install.php:398
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
 
-#: mod/profiles.php:704
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
+#: mod/install.php:396
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
 
-#: mod/profiles.php:709
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
+#: mod/install.php:404
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
 
-#: mod/profiles.php:711
+#: mod/install.php:408
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet."
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
 
-#: mod/profiles.php:712
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
+#: mod/install.php:412
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
 
-#: mod/profiles.php:713
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
+#: mod/install.php:416
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
 
-#: mod/profiles.php:716
-msgid "Street Address:"
-msgstr "Endereço:"
+#: mod/install.php:420
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
 
-#: mod/profiles.php:717
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
+#: mod/install.php:424
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
 
-#: mod/profiles.php:718
-msgid "Region/State:"
-msgstr "Região/Estado:"
+#: mod/install.php:428
+msgid "Error: iconv PHP module required but not installed."
+msgstr ""
 
-#: mod/profiles.php:719
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
+#: mod/install.php:438
+msgid "Error, XML PHP module required but not installed."
+msgstr "Erro: o módulo XML do PHP é necessário, mas não está instalado."
 
-#: mod/profiles.php:720
-msgid "Country:"
-msgstr "País:"
+#: mod/install.php:450
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
 
-#: mod/profiles.php:724
-msgid "Who: (if applicable)"
-msgstr "Quem: (se pertinente)"
+#: mod/install.php:451
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
 
-#: mod/profiles.php:724
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+#: mod/install.php:452
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
 
-#: mod/profiles.php:725
-msgid "Since [date]:"
-msgstr "Desde [data]:"
+#: mod/install.php:453
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
 
-#: mod/profiles.php:727
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
+#: mod/install.php:456
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
 
-#: mod/profiles.php:728
-msgid "Homepage URL:"
-msgstr "Endereço do site web:"
+#: mod/install.php:466
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
 
-#: mod/profiles.php:731
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
+#: mod/install.php:467
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
 
-#: mod/profiles.php:732
-msgid "Public Keywords:"
-msgstr "Palavras-chave públicas:"
+#: mod/install.php:468
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
 
-#: mod/profiles.php:732
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
+#: mod/install.php:469
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
 
-#: mod/profiles.php:733
-msgid "Private Keywords:"
-msgstr "Palavras-chave privadas:"
+#: mod/install.php:472
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 tem escrita permitida"
 
-#: mod/profiles.php:733
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
+#: mod/install.php:488
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
 
-#: mod/profiles.php:736
-msgid "Musical interests"
-msgstr "Preferências musicais"
+#: mod/install.php:490
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
 
-#: mod/profiles.php:737
-msgid "Books, literature"
-msgstr "Livros, literatura"
+#: mod/install.php:509
+msgid "ImageMagick PHP extension is not installed"
+msgstr ""
 
-#: mod/profiles.php:738
-msgid "Television"
-msgstr "Televisão"
+#: mod/install.php:511
+msgid "ImageMagick PHP extension is installed"
+msgstr ""
 
-#: mod/profiles.php:739
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
+#: mod/install.php:513
+msgid "ImageMagick supports GIF"
+msgstr ""
 
-#: mod/profiles.php:740
-msgid "Hobbies/Interests"
-msgstr "Passatempos/Interesses"
+#: mod/install.php:520
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
 
-#: mod/profiles.php:741
-msgid "Love/romance"
-msgstr "Amor/romance"
+#: mod/install.php:545
+msgid "<h1>What next</h1>"
+msgstr "<h1>A seguir</h1>"
 
-#: mod/profiles.php:742
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
+#: mod/install.php:546
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
 
-#: mod/profiles.php:743
-msgid "School/education"
-msgstr "Escola/educação"
+#: mod/item.php:116
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
 
-#: mod/profiles.php:744
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
+#: mod/item.php:344
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
 
-#: mod/profiles.php:786
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Gerenciar perfis"
+#: mod/item.php:904
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
 
-#: mod/register.php:92
+#: mod/item.php:995
+#, php-format
 msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações."
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica."
 
-#: mod/register.php:97
+#: mod/item.php:997
 #, php-format
+msgid "You may visit them online at %s"
+msgstr "Você pode visitá-lo em %s"
+
+#: mod/item.php:998
 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 "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens."
 
-#: mod/register.php:104
-msgid "Registration successful."
-msgstr ""
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
+msgstr "%s publicou uma atualização."
 
-#: mod/register.php:110
-msgid "Your registration can not be processed."
-msgstr "Não foi possível processar o seu registro."
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
+msgstr "Identificador de solicitação inválido"
 
-#: mod/register.php:153
-msgid "Your registration is pending approval by the site owner."
-msgstr "A aprovação do seu registro está pendente junto ao administrador do site."
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:227
+msgid "Discard"
+msgstr "Descartar"
 
-#: mod/register.php:219
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'."
+#: mod/notifications.php:105
+msgid "Network Notifications"
+msgstr "Notificações de rede"
 
-#: mod/register.php:220
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens."
+#: mod/notifications.php:117
+msgid "Personal Notifications"
+msgstr "Notificações pessoais"
 
-#: mod/register.php:221
-msgid "Your OpenID (optional): "
-msgstr "Seu OpenID (opcional): "
+#: mod/notifications.php:123
+msgid "Home Notifications"
+msgstr "Notificações pessoais"
 
-#: mod/register.php:235
-msgid "Include your profile in member directory?"
-msgstr "Incluir o seu perfil no diretório de membros?"
+#: mod/notifications.php:152
+msgid "Show Ignored Requests"
+msgstr "Exibir solicitações ignoradas"
 
-#: mod/register.php:259
-msgid "Membership on this site is by invitation only."
-msgstr "A associação a este site só pode ser feita mediante convite."
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
+msgstr "Ocultar solicitações ignoradas"
 
-#: mod/register.php:260
-msgid "Your invitation ID: "
-msgstr "A ID do seu convite: "
+#: mod/notifications.php:164 mod/notifications.php:234
+msgid "Notification type: "
+msgstr "Tipo de notificação:"
 
-#: mod/register.php:271
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr ""
+#: mod/notifications.php:167
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerido por %s"
 
-#: mod/register.php:272
-msgid "Your Email Address: "
-msgstr "Seu endereço de e-mail: "
+#: mod/notifications.php:173 mod/notifications.php:252
+msgid "Post a new friend activity"
+msgstr "Publicar a adição de amigo"
 
-#: mod/register.php:274 mod/settings.php:1221
-msgid "New Password:"
-msgstr "Nova senha:"
+#: mod/notifications.php:173 mod/notifications.php:252
+msgid "if applicable"
+msgstr "se aplicável"
 
-#: mod/register.php:274
-msgid "Leave empty for an auto generated password."
-msgstr ""
+#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
+msgid "Approve"
+msgstr "Aprovar"
 
-#: mod/register.php:275 mod/settings.php:1222
-msgid "Confirm:"
-msgstr "Confirme:"
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
+msgstr "Alega ser conhecido por você: "
 
-#: mod/register.php:276
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@$sitename</strong>'"
+#: mod/notifications.php:196
+msgid "yes"
+msgstr "sim"
 
-#: mod/register.php:277
-msgid "Choose a nickname: "
-msgstr "Escolha uma identificação: "
+#: mod/notifications.php:196
+msgid "no"
+msgstr "não"
 
-#: mod/register.php:287
-msgid "Import your profile to this friendica instance"
-msgstr "Importa seu perfil  desta instância do friendica"
+#: mod/notifications.php:197 mod/notifications.php:202
+msgid "Shall your connection be bidirectional or not?"
+msgstr ""
 
-#: mod/regmod.php:55
-msgid "Account approved."
-msgstr "A conta foi aprovada."
+#: mod/notifications.php:198 mod/notifications.php:203
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr ""
 
-#: mod/regmod.php:92
+#: mod/notifications.php:199
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "O registro de %s foi revogado"
+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 ""
 
-#: mod/regmod.php:104
-msgid "Please login."
-msgstr "Por favor, autentique-se."
+#: mod/notifications.php:204
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr ""
 
-#: mod/settings.php:36 mod/photos.php:118
-msgid "everybody"
-msgstr "todos"
+#: mod/notifications.php:215
+msgid "Friend"
+msgstr "Amigo"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Tela"
+#: mod/notifications.php:216
+msgid "Sharer"
+msgstr "Compartilhador"
 
-#: mod/settings.php:67 mod/settings.php:871
-msgid "Social Networks"
-msgstr "Redes Sociais"
+#: mod/notifications.php:216
+msgid "Subscriber"
+msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Aplicações conectadas"
+#: mod/notifications.php:272
+msgid "No introductions."
+msgstr "Sem apresentações."
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "Remover a conta"
+#: mod/notifications.php:313
+msgid "Show unread"
+msgstr ""
 
-#: mod/settings.php:155
-msgid "Missing some important data!"
-msgstr "Está faltando algum dado importante!"
+#: mod/notifications.php:313
+msgid "Show all"
+msgstr ""
 
-#: mod/settings.php:269
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Não foi possível conectar à conta de e-mail com as configurações fornecidas."
+#: mod/notifications.php:319
+#, php-format
+msgid "No more %s notifications."
+msgstr ""
 
-#: mod/settings.php:274
-msgid "Email settings updated."
-msgstr "As configurações de e-mail foram atualizadas."
+#: mod/ping.php:270
+msgid "{0} wants to be your friend"
+msgstr "{0} deseja ser seu amigo"
 
-#: mod/settings.php:289
-msgid "Features updated"
-msgstr "Funcionalidades atualizadas"
+#: mod/ping.php:285
+msgid "{0} sent you a message"
+msgstr "{0} lhe enviou uma mensagem"
 
-#: mod/settings.php:356
-msgid "Relocate message has been send to your contacts"
-msgstr "A mensagem de relocação foi enviada para seus contatos"
+#: mod/ping.php:300
+msgid "{0} requested registration"
+msgstr "{0} solicitou registro"
 
-#: mod/settings.php:375
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Não é permitido uma senha em branco. A senha não foi modificada."
+#: mod/admin.php:96
+msgid "Theme settings updated."
+msgstr "As configurações do tema foram atualizadas."
 
-#: mod/settings.php:383
-msgid "Wrong password."
-msgstr "Senha errada."
+#: mod/admin.php:165 mod/admin.php:1054
+msgid "Site"
+msgstr "Site"
 
-#: mod/settings.php:394
-msgid "Password changed."
-msgstr "A senha foi modificada."
+#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
+msgid "Users"
+msgstr "Usuários"
+
+#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
+msgid "Themes"
+msgstr "Temas"
+
+#: mod/admin.php:170
+msgid "DB updates"
+msgstr "Atualizações do BD"
 
-#: mod/settings.php:396
-msgid "Password update failed. Please try again."
-msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
+#: mod/admin.php:171 mod/admin.php:512
+msgid "Inspect Queue"
+msgstr ""
 
-#: mod/settings.php:465
-msgid " Please use a shorter name."
-msgstr " Por favor, use um nome mais curto."
+#: mod/admin.php:172 mod/admin.php:288
+msgid "Server Blocklist"
+msgstr ""
 
-#: mod/settings.php:467
-msgid " Name too short."
-msgstr " O nome é muito curto."
+#: mod/admin.php:173 mod/admin.php:478
+msgid "Federation Statistics"
+msgstr ""
 
-#: mod/settings.php:476
-msgid "Wrong Password"
-msgstr "Senha Errada"
+#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
+msgid "Logs"
+msgstr "Relatórios"
 
-#: mod/settings.php:481
-msgid " Not valid email."
-msgstr " Não é um e-mail válido."
+#: mod/admin.php:188 mod/admin.php:2084
+msgid "View Logs"
+msgstr ""
 
-#: mod/settings.php:487
-msgid " Cannot change to that email."
-msgstr " Não foi possível alterar para esse e-mail."
+#: mod/admin.php:189
+msgid "probe address"
+msgstr "prova endereço"
 
-#: mod/settings.php:543
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão."
+#: mod/admin.php:190
+msgid "check webfinger"
+msgstr "verifica webfinger"
 
-#: mod/settings.php:547
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão."
+#: mod/admin.php:197
+msgid "Plugin Features"
+msgstr "Recursos do plugin"
 
-#: mod/settings.php:586
-msgid "Settings updated."
-msgstr "As configurações foram atualizadas."
+#: mod/admin.php:199
+msgid "diagnostics"
+msgstr "diagnóstico"
 
-#: mod/settings.php:662 mod/settings.php:688 mod/settings.php:724
-msgid "Add application"
-msgstr "Adicionar aplicação"
+#: mod/admin.php:200
+msgid "User registrations waiting for confirmation"
+msgstr "Cadastros de novos usuários aguardando confirmação"
 
-#: mod/settings.php:666 mod/settings.php:692
-msgid "Consumer Key"
-msgstr "Chave do consumidor"
+#: mod/admin.php:279
+msgid "The blocked domain"
+msgstr ""
 
-#: mod/settings.php:667 mod/settings.php:693
-msgid "Consumer Secret"
-msgstr "Segredo do consumidor"
+#: mod/admin.php:280 mod/admin.php:293
+msgid "The reason why you blocked this domain."
+msgstr ""
 
-#: mod/settings.php:668 mod/settings.php:694
-msgid "Redirect"
-msgstr "Redirecionar"
+#: mod/admin.php:281
+msgid "Delete domain"
+msgstr ""
 
-#: mod/settings.php:669 mod/settings.php:695
-msgid "Icon url"
-msgstr "URL do ícone"
+#: mod/admin.php:281
+msgid "Check to delete this entry from the blocklist"
+msgstr ""
 
-#: mod/settings.php:680
-msgid "You can't edit this application."
-msgstr "Você não pode editar esta aplicação."
+#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
+#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
+#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
+msgid "Administration"
+msgstr "Administração"
 
-#: mod/settings.php:723
-msgid "Connected Apps"
-msgstr "Aplicações conectadas"
+#: mod/admin.php:289
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr ""
 
-#: mod/settings.php:727
-msgid "Client key starts with"
-msgstr "A chave do cliente inicia com"
+#: mod/admin.php:290
+msgid ""
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr ""
 
-#: mod/settings.php:728
-msgid "No name"
-msgstr "Sem nome"
+#: mod/admin.php:291
+msgid "Add new entry to block list"
+msgstr ""
 
-#: mod/settings.php:729
-msgid "Remove authorization"
-msgstr "Remover autorização"
+#: mod/admin.php:292
+msgid "Server Domain"
+msgstr ""
 
-#: mod/settings.php:741
-msgid "No Plugin settings configured"
-msgstr "Não foi definida nenhuma configuração de plugin"
+#: mod/admin.php:292
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr ""
 
-#: mod/settings.php:749
-msgid "Plugin Settings"
-msgstr "Configurações do plugin"
+#: mod/admin.php:293
+msgid "Block reason"
+msgstr ""
 
-#: mod/settings.php:771
-msgid "Additional Features"
-msgstr "Funcionalidades Adicionais"
+#: mod/admin.php:294
+msgid "Add Entry"
+msgstr ""
 
-#: mod/settings.php:781 mod/settings.php:785
-msgid "General Social Media Settings"
+#: mod/admin.php:295
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/settings.php:791
-msgid "Disable intelligent shortening"
+#: mod/admin.php:296
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/settings.php:793
-msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the"
-" original friendica post."
+#: mod/admin.php:299
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/settings.php:799
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:302
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/settings.php:801
-msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
+#: mod/admin.php:327
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/settings.php:807
-msgid "Default group for OStatus contacts"
+#: mod/admin.php:343
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/settings.php:813
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:408
+msgid "unknown"
 msgstr ""
 
-#: mod/settings.php:815
+#: mod/admin.php:471
 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."
+"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/settings.php:818
-msgid "Repair OStatus subscriptions"
+#: mod/admin.php:472
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/settings.php:827 mod/settings.php:828
+#: mod/admin.php:484
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "O suporte interno para conectividade de %s está %s"
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr ""
 
-#: mod/settings.php:827 mod/settings.php:828
-msgid "enabled"
-msgstr "habilitado"
+#: mod/admin.php:514
+msgid "ID"
+msgstr "ID"
 
-#: mod/settings.php:827 mod/settings.php:828
-msgid "disabled"
-msgstr "desabilitado"
+#: mod/admin.php:515
+msgid "Recipient Name"
+msgstr ""
 
-#: mod/settings.php:828
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:516
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/settings.php:864
-msgid "Email access is disabled on this site."
-msgstr "O acesso ao e-mail está desabilitado neste site."
+#: mod/admin.php:518
+msgid "Created"
+msgstr ""
 
-#: mod/settings.php:876
-msgid "Email/Mailbox Setup"
-msgstr "Configurações do e-mail/caixa postal"
+#: mod/admin.php:519
+msgid "Last Tried"
+msgstr ""
 
-#: mod/settings.php:877
+#: mod/admin.php:520
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal."
+"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/settings.php:878
-msgid "Last successful email check:"
-msgstr "Última checagem bem sucedida de e-mail:"
+#: mod/admin.php:545
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr ""
 
-#: mod/settings.php:880
-msgid "IMAP server name:"
-msgstr "Nome do servidor IMAP:"
+#: mod/admin.php:550
+msgid ""
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
+msgstr ""
 
-#: mod/settings.php:881
-msgid "IMAP port:"
-msgstr "Porta do IMAP:"
+#: mod/admin.php:554 mod/admin.php:1447
+msgid "Normal Account"
+msgstr "Conta normal"
 
-#: mod/settings.php:882
-msgid "Security:"
-msgstr "Segurança:"
+#: mod/admin.php:555 mod/admin.php:1448
+msgid "Soapbox Account"
+msgstr "Conta de vitrine"
 
-#: mod/settings.php:882 mod/settings.php:887
-msgid "None"
-msgstr "Nenhuma"
+#: mod/admin.php:556 mod/admin.php:1449
+msgid "Community/Celebrity Account"
+msgstr "Conta de comunidade/celebridade"
 
-#: mod/settings.php:883
-msgid "Email login name:"
-msgstr "Nome de usuário do e-mail:"
+#: mod/admin.php:557 mod/admin.php:1450
+msgid "Automatic Friend Account"
+msgstr "Conta de amigo automático"
 
-#: mod/settings.php:884
-msgid "Email password:"
-msgstr "Senha do e-mail:"
+#: mod/admin.php:558
+msgid "Blog Account"
+msgstr "Conta de blog"
 
-#: mod/settings.php:885
-msgid "Reply-to address:"
-msgstr "Endereço de resposta (Reply-to):"
+#: mod/admin.php:559
+msgid "Private Forum"
+msgstr "Fórum privado"
 
-#: mod/settings.php:886
-msgid "Send public posts to all email contacts:"
-msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
+#: mod/admin.php:581
+msgid "Message queues"
+msgstr "Fila de mensagens"
 
-#: mod/settings.php:887
-msgid "Action after import:"
-msgstr "Ação após a importação:"
+#: mod/admin.php:587
+msgid "Summary"
+msgstr "Resumo"
 
-#: mod/settings.php:887
-msgid "Move to folder"
-msgstr "Mover para pasta"
+#: mod/admin.php:589
+msgid "Registered users"
+msgstr "Usuários registrados"
 
-#: mod/settings.php:888
-msgid "Move to folder:"
-msgstr "Mover para pasta:"
+#: mod/admin.php:591
+msgid "Pending registrations"
+msgstr "Registros pendentes"
 
-#: mod/settings.php:974
-msgid "Display Settings"
-msgstr "Configurações de exibição"
+#: mod/admin.php:592
+msgid "Version"
+msgstr "Versão"
 
-#: mod/settings.php:980 mod/settings.php:1001
-msgid "Display Theme:"
-msgstr "Tema do perfil:"
+#: mod/admin.php:597
+msgid "Active plugins"
+msgstr "Plugins ativos"
 
-#: mod/settings.php:981
-msgid "Mobile Theme:"
-msgstr "Tema para dispositivos móveis:"
+#: mod/admin.php:622
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
 
-#: mod/settings.php:982
-msgid "Update browser every xx seconds"
-msgstr "Atualizar o navegador a cada xx segundos"
+#: mod/admin.php:914
+msgid "Site settings updated."
+msgstr "As configurações do site foram atualizadas."
 
-#: mod/settings.php:982
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr ""
+#: mod/admin.php:971
+msgid "No community page"
+msgstr "Sem página de comunidade"
 
-#: mod/settings.php:983
-msgid "Number of items to display per page:"
-msgstr "Número de itens a serem exibidos por página:"
+#: mod/admin.php:972
+msgid "Public postings from users of this site"
+msgstr "Textos públicos de usuários deste sítio"
 
-#: mod/settings.php:983 mod/settings.php:984
-msgid "Maximum of 100 items"
-msgstr "Máximo de 100 itens"
+#: mod/admin.php:973
+msgid "Global community page"
+msgstr "Página global da comunidade"
 
-#: mod/settings.php:984
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
+#: mod/admin.php:979
+msgid "At post arrival"
+msgstr "Na chegada da publicação"
 
-#: mod/settings.php:985
-msgid "Don't show emoticons"
-msgstr "Não exibir emoticons"
+#: mod/admin.php:989
+msgid "Users, Global Contacts"
+msgstr "Usuários, Contatos Globais"
 
-#: mod/settings.php:986
-msgid "Calendar"
-msgstr "Agenda"
+#: mod/admin.php:990
+msgid "Users, Global Contacts/fallback"
+msgstr "Usuários, Contatos Globais/plano B"
 
-#: mod/settings.php:987
-msgid "Beginning of week:"
-msgstr ""
+#: mod/admin.php:994
+msgid "One month"
+msgstr "Um mês"
 
-#: mod/settings.php:988
-msgid "Don't show notices"
-msgstr "Não mostra avisos"
+#: mod/admin.php:995
+msgid "Three months"
+msgstr "Três meses"
 
-#: mod/settings.php:989
-msgid "Infinite scroll"
-msgstr "rolamento infinito"
+#: mod/admin.php:996
+msgid "Half a year"
+msgstr "Seis meses"
 
-#: mod/settings.php:990
-msgid "Automatic updates only at the top of the network page"
-msgstr "Atualizações automáticas só na parte superior da página da rede"
+#: mod/admin.php:997
+msgid "One year"
+msgstr "Um ano"
+
+#: mod/admin.php:1002
+msgid "Multi user instance"
+msgstr "Instância multi usuário"
 
-#: mod/settings.php:992
-msgid "General Theme Settings"
-msgstr ""
+#: mod/admin.php:1025
+msgid "Closed"
+msgstr "Fechado"
 
-#: mod/settings.php:993
-msgid "Custom Theme Settings"
-msgstr ""
+#: mod/admin.php:1026
+msgid "Requires approval"
+msgstr "Requer aprovação"
 
-#: mod/settings.php:994
-msgid "Content Settings"
-msgstr ""
+#: mod/admin.php:1027
+msgid "Open"
+msgstr "Aberto"
 
-#: mod/settings.php:995 view/theme/frio/config.php:61
-#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
-#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
-#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Configurações do tema"
+#: mod/admin.php:1031
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nenhuma política de SSL, os links irão rastrear o estado SSL da página"
 
-#: mod/settings.php:1072
-msgid "User Types"
-msgstr "Tipos de Usuários"
+#: mod/admin.php:1032
+msgid "Force all links to use SSL"
+msgstr "Forçar todos os links a utilizar SSL"
 
-#: mod/settings.php:1073
-msgid "Community Types"
-msgstr "Tipos de Comunidades"
+#: mod/admin.php:1033
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
 
-#: mod/settings.php:1074
-msgid "Normal Account Page"
-msgstr "Página de conta normal"
+#: mod/admin.php:1057
+msgid "File upload"
+msgstr "Envio de arquivo"
 
-#: mod/settings.php:1075
-msgid "This account is a normal personal profile"
-msgstr "Essa conta é um perfil pessoal normal"
+#: mod/admin.php:1058
+msgid "Policies"
+msgstr "Políticas"
 
-#: mod/settings.php:1078
-msgid "Soapbox Page"
-msgstr "Página de vitrine"
+#: mod/admin.php:1060
+msgid "Auto Discovered Contact Directory"
+msgstr ""
 
-#: mod/settings.php:1079
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura"
+#: mod/admin.php:1061
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/settings.php:1082
-msgid "Community Forum/Celebrity Account"
-msgstr "Conta de fórum de comunidade/celebridade"
+#: mod/admin.php:1062
+msgid "Worker"
+msgstr ""
 
-#: mod/settings.php:1083
+#: mod/admin.php:1063
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita"
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
 
-#: mod/settings.php:1086
-msgid "Automatic Friend Page"
-msgstr "Página de amigo automático"
+#: mod/admin.php:1066
+msgid "Site name"
+msgstr "Nome do site"
 
-#: mod/settings.php:1087
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos"
+#: mod/admin.php:1067
+msgid "Host name"
+msgstr "Nome do host"
 
-#: mod/settings.php:1090
-msgid "Private Forum [Experimental]"
-msgstr "Fórum privado [Experimental]"
+#: mod/admin.php:1068
+msgid "Sender Email"
+msgstr "enviador de email"
 
-#: mod/settings.php:1091
-msgid "Private forum - approved members only"
-msgstr "Fórum privado - somente membros aprovados"
+#: mod/admin.php:1068
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr ""
 
-#: mod/settings.php:1103
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:1069
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/settings.php:1103
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
+#: mod/admin.php:1070
+msgid "Shortcut icon"
+msgstr "ícone de atalho"
 
-#: mod/settings.php:1113
-msgid "Publish your default profile in your local site directory?"
-msgstr "Publicar o seu perfil padrão no diretório local do seu site?"
+#: mod/admin.php:1070
+msgid "Link to an icon that will be used for browsers."
+msgstr ""
 
-#: mod/settings.php:1119
-msgid "Publish your default profile in the global social directory?"
-msgstr "Publicar o seu perfil padrão no diretório social global?"
+#: mod/admin.php:1071
+msgid "Touch icon"
+msgstr "ícone de toque"
 
-#: mod/settings.php:1127
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? "
+#: mod/admin.php:1071
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr ""
 
-#: mod/settings.php:1131
+#: mod/admin.php:1072
+msgid "Additional Info"
+msgstr "Informação adicional"
+
+#: mod/admin.php:1072
+#, php-format
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível."
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr ""
 
-#: mod/settings.php:1136
-msgid "Allow friends to post to your profile page?"
-msgstr "Permitir aos amigos publicarem na sua página de perfil?"
+#: mod/admin.php:1073
+msgid "System language"
+msgstr "Idioma do sistema"
 
-#: mod/settings.php:1142
-msgid "Allow friends to tag your posts?"
-msgstr "Permitir aos amigos etiquetarem suas publicações?"
+#: mod/admin.php:1074
+msgid "System theme"
+msgstr "Tema do sistema"
 
-#: mod/settings.php:1148
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Permitir que você seja sugerido como amigo em potencial para novos membros?"
+#: mod/admin.php:1074
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
 
-#: mod/settings.php:1154
-msgid "Permit unknown people to send you private mail?"
-msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
+#: mod/admin.php:1075
+msgid "Mobile system theme"
+msgstr "Tema do sistema para dispositivos móveis"
 
-#: mod/settings.php:1162
-msgid "Profile is <strong>not published</strong>."
-msgstr "O perfil <strong>não está publicado</strong>."
+#: mod/admin.php:1075
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
 
-#: mod/settings.php:1170
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr ""
+#: mod/admin.php:1076
+msgid "SSL link policy"
+msgstr "Política de link SSL"
 
-#: mod/settings.php:1177
-msgid "Automatically expire posts after this many days:"
-msgstr "Expirar automaticamente publicações após tantos dias:"
+#: mod/admin.php:1076
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
 
-#: mod/settings.php:1177
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas."
+#: mod/admin.php:1077
+msgid "Force SSL"
+msgstr "Forçar SSL"
 
-#: mod/settings.php:1178
-msgid "Advanced expiration settings"
-msgstr "Configurações avançadas de expiração"
+#: mod/admin.php:1077
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos."
 
-#: mod/settings.php:1179
-msgid "Advanced Expiration"
-msgstr "Expiração avançada"
+#: mod/admin.php:1078
+msgid "Hide help entry from navigation menu"
+msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
 
-#: mod/settings.php:1180
-msgid "Expire posts:"
-msgstr "Expirar publicações:"
+#: mod/admin.php:1078
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
 
-#: mod/settings.php:1181
-msgid "Expire personal notes:"
-msgstr "Expirar notas pessoais:"
+#: mod/admin.php:1079
+msgid "Single user instance"
+msgstr "Instância de usuário único"
 
-#: mod/settings.php:1182
-msgid "Expire starred posts:"
-msgstr "Expirar publicações destacadas:"
+#: mod/admin.php:1079
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
 
-#: mod/settings.php:1183
-msgid "Expire photos:"
-msgstr "Expirar fotos:"
+#: mod/admin.php:1080
+msgid "Maximum image size"
+msgstr "Tamanho máximo da imagem"
 
-#: mod/settings.php:1184
-msgid "Only expire posts by others:"
-msgstr "Expirar somente as publicações de outras pessoas:"
+#: mod/admin.php:1080
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites"
 
-#: mod/settings.php:1212
-msgid "Account Settings"
-msgstr "Configurações da conta"
+#: mod/admin.php:1081
+msgid "Maximum image length"
+msgstr "Tamanho máximo da imagem"
 
-#: mod/settings.php:1220
-msgid "Password Settings"
-msgstr "Configurações da senha"
+#: mod/admin.php:1081
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
 
-#: mod/settings.php:1222
-msgid "Leave password fields blank unless changing"
-msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la"
+#: mod/admin.php:1082
+msgid "JPEG image quality"
+msgstr "Qualidade da imagem JPEG"
 
-#: mod/settings.php:1223
-msgid "Current Password:"
-msgstr "Senha Atual:"
+#: mod/admin.php:1082
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
 
-#: mod/settings.php:1223 mod/settings.php:1224
-msgid "Your current password to confirm the changes"
-msgstr "Sua senha atual para confirmar as mudanças"
+#: mod/admin.php:1084
+msgid "Register policy"
+msgstr "Política de registro"
 
-#: mod/settings.php:1224
-msgid "Password:"
-msgstr "Senha:"
+#: mod/admin.php:1085
+msgid "Maximum Daily Registrations"
+msgstr "Registros Diários Máximos"
 
-#: mod/settings.php:1228
-msgid "Basic Settings"
-msgstr "Configurações básicas"
+#: mod/admin.php:1085
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
 
-#: mod/settings.php:1230
-msgid "Email Address:"
-msgstr "Endereço de e-mail:"
+#: mod/admin.php:1086
+msgid "Register text"
+msgstr "Texto de registro"
 
-#: mod/settings.php:1231
-msgid "Your Timezone:"
-msgstr "Seu fuso horário:"
+#: mod/admin.php:1086
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido com destaque na página de registro."
 
-#: mod/settings.php:1232
-msgid "Your Language:"
-msgstr "Seu idioma:"
+#: mod/admin.php:1087
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
 
-#: mod/settings.php:1232
+#: mod/admin.php:1087
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo."
 
-#: mod/settings.php:1233
-msgid "Default Post Location:"
-msgstr "Localização padrão de suas publicações:"
+#: mod/admin.php:1088
+msgid "Allowed friend domains"
+msgstr "Domínios de amigos permitidos"
 
-#: mod/settings.php:1234
-msgid "Use Browser Location:"
-msgstr "Usar localizador do navegador:"
+#: mod/admin.php:1088
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio."
 
-#: mod/settings.php:1237
-msgid "Security and Privacy Settings"
-msgstr "Configurações de segurança e privacidade"
+#: mod/admin.php:1089
+msgid "Allowed email domains"
+msgstr "Domínios de e-mail permitidos"
 
-#: mod/settings.php:1239
-msgid "Maximum Friend Requests/Day:"
-msgstr "Número máximo de requisições de amizade por dia:"
+#: mod/admin.php:1089
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio"
+
+#: mod/admin.php:1090
+msgid "Block public"
+msgstr "Bloquear acesso público"
 
-#: mod/settings.php:1239 mod/settings.php:1269
-msgid "(to prevent spam abuse)"
-msgstr "(para prevenir abuso de spammers)"
+#: mod/admin.php:1090
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
 
-#: mod/settings.php:1240
-msgid "Default Post Permissions"
-msgstr "Permissões padrão de publicação"
+#: mod/admin.php:1091
+msgid "Force publish"
+msgstr "Forçar a listagem"
 
-#: mod/settings.php:1241
-msgid "(click to open/close)"
-msgstr "(clique para abrir/fechar)"
+#: mod/admin.php:1091
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marque para forçar todos os perfis desse site a serem listados no diretório do site."
 
-#: mod/settings.php:1250 mod/photos.php:1187 mod/photos.php:1571
-msgid "Show to Groups"
-msgstr "Mostre para Grupos"
+#: mod/admin.php:1092
+msgid "Global directory URL"
+msgstr ""
 
-#: mod/settings.php:1251 mod/photos.php:1188 mod/photos.php:1572
-msgid "Show to Contacts"
-msgstr "Mostre para Contatos"
+#: mod/admin.php:1092
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr ""
 
-#: mod/settings.php:1252
-msgid "Default Private Post"
-msgstr "Publicação Privada Padrão"
+#: mod/admin.php:1093
+msgid "Allow threaded items"
+msgstr "Habilita itens aninhados"
 
-#: mod/settings.php:1253
-msgid "Default Public Post"
-msgstr "Publicação Pública Padrão"
+#: mod/admin.php:1093
+msgid "Allow infinite level threading for items on this site."
+msgstr "Habilita nível infinito de aninhamento (threading) para itens."
 
-#: mod/settings.php:1257
-msgid "Default Permissions for New Posts"
-msgstr "Permissões Padrão para Publicações Novas"
+#: mod/admin.php:1094
+msgid "Private posts by default for new users"
+msgstr "Publicações privadas por padrão para novos usuários"
 
-#: mod/settings.php:1269
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:"
+#: mod/admin.php:1094
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
 
-#: mod/settings.php:1272
-msgid "Notification Settings"
-msgstr "Configurações de notificação"
+#: mod/admin.php:1095
+msgid "Don't include post content in email notifications"
+msgstr "Não incluir o conteúdo da postagem nas notificações de email"
 
-#: mod/settings.php:1273
-msgid "By default post a status message when:"
-msgstr "Por padrão, publicar uma mensagem de status quando:"
+#: mod/admin.php:1095
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
 
-#: mod/settings.php:1274
-msgid "accepting a friend request"
-msgstr "aceitar uma requisição de amizade"
+#: mod/admin.php:1096
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
 
-#: mod/settings.php:1275
-msgid "joining a forum/community"
-msgstr "associar-se a um fórum/comunidade"
+#: mod/admin.php:1096
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
 
-#: mod/settings.php:1276
-msgid "making an <em>interesting</em> profile change"
-msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
+#: mod/admin.php:1097
+msgid "Don't embed private images in posts"
+msgstr "Não inclua imagens privadas em publicações"
 
-#: mod/settings.php:1277
-msgid "Send a notification email when:"
-msgstr "Enviar um e-mail de notificação sempre que:"
+#: mod/admin.php:1097
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
 
-#: mod/settings.php:1278
-msgid "You receive an introduction"
-msgstr "Você recebeu uma apresentação"
+#: mod/admin.php:1098
+msgid "Allow Users to set remote_self"
+msgstr "Permite usuários configurarem remote_self"
 
-#: mod/settings.php:1279
-msgid "Your introductions are confirmed"
-msgstr "Suas apresentações forem confirmadas"
+#: mod/admin.php:1098
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
 
-#: mod/settings.php:1280
-msgid "Someone writes on your profile wall"
-msgstr "Alguém escrever no mural do seu perfil"
+#: mod/admin.php:1099
+msgid "Block multiple registrations"
+msgstr "Bloquear registros repetidos"
 
-#: mod/settings.php:1281
-msgid "Someone writes a followup comment"
-msgstr "Alguém comentar a sua mensagem"
+#: mod/admin.php:1099
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
 
-#: mod/settings.php:1282
-msgid "You receive a private message"
-msgstr "Você recebeu uma mensagem privada"
+#: mod/admin.php:1100
+msgid "OpenID support"
+msgstr "Suporte ao OpenID"
 
-#: mod/settings.php:1283
-msgid "You receive a friend suggestion"
-msgstr "Você recebe uma suggestão de amigo"
+#: mod/admin.php:1100
+msgid "OpenID support for registration and logins."
+msgstr "Suporte ao OpenID para registros e autenticações."
 
-#: mod/settings.php:1284
-msgid "You are tagged in a post"
-msgstr "Você foi etiquetado em uma publicação"
+#: mod/admin.php:1101
+msgid "Fullname check"
+msgstr "Verificar nome completo"
 
-#: mod/settings.php:1285
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Você está cutucado/incitado/etc. em uma publicação"
+#: mod/admin.php:1101
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam"
 
-#: mod/settings.php:1287
-msgid "Activate desktop notifications"
-msgstr ""
+#: mod/admin.php:1102
+msgid "Community Page Style"
+msgstr "Estilo da página de comunidade"
 
-#: mod/settings.php:1287
-msgid "Show desktop popup on new notifications"
-msgstr ""
+#: mod/admin.php:1102
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor."
 
-#: mod/settings.php:1289
-msgid "Text-only notification emails"
-msgstr "Emails de notificação apenas de texto"
+#: mod/admin.php:1103
+msgid "Posts per user on community page"
+msgstr "Textos por usuário na página da comunidade"
 
-#: mod/settings.php:1291
-msgid "Send text only notification emails, without the html part"
-msgstr "Enviar e-mails de notificação apenas de texto, sem a parte html"
+#: mod/admin.php:1103
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')"
 
-#: mod/settings.php:1293
-msgid "Advanced Account/Page Type Settings"
-msgstr "Conta avançada/Configurações do tipo de página"
+#: mod/admin.php:1104
+msgid "Enable OStatus support"
+msgstr "Habilitar suporte ao OStatus"
 
-#: mod/settings.php:1294
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modificar o comportamento desta conta em situações especiais"
+#: mod/admin.php:1104
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
 
-#: mod/settings.php:1297
-msgid "Relocate"
-msgstr "Relocação"
+#: mod/admin.php:1105
+msgid "OStatus conversation completion interval"
+msgstr "Intervalo de finalização da conversação OStatus "
 
-#: mod/settings.php:1298
+#: mod/admin.php:1105
 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 "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
 
-#: mod/settings.php:1299
-msgid "Resend relocate message to contacts"
-msgstr "Reenviar mensagem de relocação para os contatos"
+#: mod/admin.php:1106
+msgid "Only import OStatus threads from our contacts"
+msgstr ""
 
-#: mod/videos.php:123
-msgid "Do you really want to delete this video?"
+#: mod/admin.php:1106
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
 msgstr ""
 
-#: mod/videos.php:128
-msgid "Delete Video"
+#: mod/admin.php:1107
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Nenhum vídeo selecionado"
+#: mod/admin.php:1109
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr ""
 
-#: mod/videos.php:308 mod/photos.php:1075
-msgid "Access to this item is restricted."
-msgstr "O acesso a este item é restrito."
+#: mod/admin.php:1110
+msgid "Enable Diaspora support"
+msgstr "Habilitar suporte ao Diaspora"
 
-#: mod/videos.php:390 mod/photos.php:1877
-msgid "View Album"
-msgstr "Ver álbum"
+#: mod/admin.php:1110
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornece compatibilidade nativa com a rede Diaspora."
 
-#: mod/videos.php:399
-msgid "Recent Videos"
-msgstr "Vídeos Recentes"
+#: mod/admin.php:1111
+msgid "Only allow Friendica contacts"
+msgstr "Permitir somente contatos Friendica"
 
-#: mod/videos.php:401
-msgid "Upload New Videos"
-msgstr "Envie Novos Vídeos"
+#: mod/admin.php:1111
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados"
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
-msgstr "Servidor de Comunicações Friendica - Configuração"
+#: mod/admin.php:1112
+msgid "Verify SSL"
+msgstr "Verificar SSL"
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "Não foi possível conectar ao banco de dados."
+#: mod/admin.php:1112
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "Não foi possível criar tabela."
+#: mod/admin.php:1113
+msgid "Proxy user"
+msgstr "Usuário do proxy"
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "O banco de dados do seu site Friendica foi instalado."
+#: mod/admin.php:1114
+msgid "Proxy URL"
+msgstr "URL do proxy"
 
-#: mod/install.php:160
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
+#: mod/admin.php:1115
+msgid "Network timeout"
+msgstr "Limite de tempo da rede"
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:602
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
+#: mod/admin.php:1115
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr ""
+#: mod/admin.php:1116
+msgid "Maximum Load Average"
+msgstr "Média de Carga Máxima"
 
-#: mod/install.php:227
-msgid "System check"
-msgstr "Checagem do sistema"
+#: mod/admin.php:1116
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Checar novamente"
+#: mod/admin.php:1117
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
+
+#: mod/admin.php:1117
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Conexão de banco de dados"
+#: mod/admin.php:1118
+msgid "Minimal Memory"
+msgstr ""
 
-#: mod/install.php:252
+#: mod/admin.php:1118
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
 
-#: mod/install.php:253
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
+#: mod/admin.php:1119
+msgid "Maximum table size for optimization"
+msgstr ""
 
-#: mod/install.php:254
+#: mod/admin.php:1119
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr ""
 
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
+#: mod/admin.php:1120
+msgid "Minimum level of fragmentation"
+msgstr ""
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
+#: mod/admin.php:1120
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
+#: mod/admin.php:1122
+msgid "Periodical check of global contacts"
+msgstr "Checagem periódica dos contatos globais"
 
-#: mod/install.php:261
-msgid "Database Name"
-msgstr "Nome do banco de dados"
+#: mod/admin.php:1122
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "Endereço de email do administrador do site"
+#: mod/admin.php:1123
+msgid "Days between requery"
+msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+#: mod/admin.php:1123
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr ""
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+#: mod/admin.php:1124
+msgid "Discover contacts from other servers"
+msgstr ""
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr "Configurações do site"
+#: mod/admin.php:1124
+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 "Periodicamente buscar contatos em outros servidores. Você pode entre 'Usuários': os usuários do sistema remoto; e 'Contatos Globais': os contatos ativos conhecidos pelo sistema. O plano B é destinado a servidores rodando Redmatrix ou Friendica, se mais antigos, para os quais os contatos globais não estavam disponíveis. O plano B aumenta a carga do servidor, por isso a opção recomendada é 'Usuários, Contatos Globais'."
 
-#: mod/install.php:307
-msgid "System Language:"
+#: mod/admin.php:1125
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/install.php:307
+#: mod/admin.php:1125
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+"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/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+#: mod/admin.php:1126
+msgid "Search the local directory"
+msgstr ""
 
-#: mod/install.php:348
+#: mod/admin.php:1126
 msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
+"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/install.php:352
-msgid "PHP executable path"
-msgstr "Caminho para o executável do PhP"
+#: mod/admin.php:1128
+msgid "Publish server information"
+msgstr ""
 
-#: mod/install.php:352
+#: mod/admin.php:1128
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+"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/install.php:357
-msgid "Command line PHP"
-msgstr "PHP em linha de comando"
+#: mod/admin.php:1130
+msgid "Suppress Tags"
+msgstr "Suprime etiquetas"
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
+#: mod/admin.php:1130
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "suprime mostrar uma lista de hashtags no final de cada texto."
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Encontrado PHP versão:"
+#: mod/admin.php:1131
+msgid "Path to item cache"
+msgstr "Diretório do cache de item"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
-msgstr "Binário cli do PHP"
+#: mod/admin.php:1131
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
+
+#: mod/admin.php:1132
+msgid "Cache duration in seconds"
+msgstr "Duração do cache em segundos"
 
-#: mod/install.php:380
+#: mod/admin.php:1132
 msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+"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 "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1."
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+#: mod/admin.php:1133
+msgid "Maximum numbers of comments per post"
+msgstr "O número máximo de comentários por post"
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/admin.php:1133
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100."
 
-#: mod/install.php:404
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
+#: mod/admin.php:1134
+msgid "Temp path"
+msgstr "Diretório Temp"
 
-#: mod/install.php:405
+#: mod/admin.php:1134
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr ""
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr "Gerar chaves de encriptação"
+#: mod/admin.php:1135
+msgid "Base path to installation"
+msgstr "Diretório base para instalação"
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: mod/admin.php:1135
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr ""
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP GD graphics"
+#: mod/admin.php:1136
+msgid "Disable picture proxy"
+msgstr "Disabilitar proxy de imagem"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: mod/admin.php:1136
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa."
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: mod/admin.php:1137
+msgid "Only search in tags"
+msgstr "Somente pesquisa nas estiquetas"
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string "
+#: mod/admin.php:1137
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento."
+
+#: mod/admin.php:1139
+msgid "New base url"
+msgstr "Nova URL base"
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
+#: mod/admin.php:1139
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
 msgstr ""
 
-#: mod/install.php:420
-msgid "XML PHP module"
+#: mod/admin.php:1141
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/install.php:421
-msgid "iconv module"
+#: mod/admin.php:1141
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite do Apache"
+#: mod/admin.php:1143
+msgid "Maximum number of parallel workers"
+msgstr ""
 
-#: mod/install.php:425
+#: mod/admin.php:1143
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr ""
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+#: mod/admin.php:1144
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
 
-#: mod/install.php:437
+#: mod/admin.php:1144
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
-
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
-
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
-
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
-
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado."
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr ""
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
+#: mod/admin.php:1145
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/install.php:466
+#: mod/admin.php:1145
 msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
+#: mod/admin.php:1146
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
+#: mod/admin.php:1146
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server. The worker background process needs to be activated for "
+"this."
 msgstr ""
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
-msgstr "Erro: o módulo XML do PHP é necessário, mas não está instalado."
+#: mod/admin.php:1176
+msgid "Update has been marked successful"
+msgstr "A atualização foi marcada como bem sucedida"
 
-#: mod/install.php:494
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+#: mod/admin.php:1184
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso."
 
-#: mod/install.php:495
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+#: mod/admin.php:1187
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s"
 
-#: mod/install.php:496
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
+#: mod/admin.php:1201
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "A execução de %s falhou com erro: %s"
+
+#: mod/admin.php:1204
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
+
+#: mod/admin.php:1207
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
+
+#: mod/admin.php:1210
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada."
+
+#: mod/admin.php:1230
+msgid "No failed updates."
+msgstr "Nenhuma atualização com falha."
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
+#: mod/admin.php:1231
+msgid "Check database structure"
+msgstr "Verifique a estrutura do banco de dados"
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tem permissão de escrita"
+#: mod/admin.php:1236
+msgid "Failed Updates"
+msgstr "Atualizações com falha"
 
-#: mod/install.php:510
+#: mod/admin.php:1237
 msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
 
-#: mod/install.php:511
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
+#: mod/admin.php:1238
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+#: mod/admin.php:1239
+msgid "Attempt to execute this update step automatically"
+msgstr "Tentar executar esse passo da atualização automaticamente"
 
-#: mod/install.php:513
+#: mod/admin.php:1273
+#, 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 "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
-
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 tem escrita permitida"
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você."
 
-#: mod/install.php:532
+#: mod/admin.php:1276
+#, php-format
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s."
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
-msgstr "A reescrita de URLs está funcionando"
+#: mod/admin.php:1320
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuário bloqueado/desbloqueado"
+msgstr[1] "%s usuários bloqueados/desbloqueados"
 
-#: mod/install.php:551
-msgid "ImageMagick PHP extension is installed"
-msgstr ""
+#: mod/admin.php:1327
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuário excluído"
+msgstr[1] "%s usuários excluídos"
 
-#: mod/install.php:553
-msgid "ImageMagick supports GIF"
-msgstr ""
+#: mod/admin.php:1374
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário '%s' foi excluído"
 
-#: mod/install.php:561
-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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário '%s' foi desbloqueado"
 
-#: mod/install.php:600
-msgid "<h1>What next</h1>"
-msgstr "<h1>A seguir</h1>"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' blocked"
+msgstr "O usuário '%s' foi bloqueado"
 
-#: mod/install.php:601
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Register date"
+msgstr "Data de registro"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Identificador de solicitação inválido"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last login"
+msgstr "Última entrada"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
-msgstr "Descartar"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last item"
+msgstr "Último item"
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "Notificações de rede"
+#: mod/admin.php:1499
+msgid "Add User"
+msgstr "Adicionar usuário"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Notificações pessoais"
+#: mod/admin.php:1500
+msgid "select all"
+msgstr "selecionar todos"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Notificações pessoais"
+#: mod/admin.php:1501
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Exibir solicitações ignoradas"
+#: mod/admin.php:1502
+msgid "User waiting for permanent deletion"
+msgstr "Usuário aguardando por fim permanente da conta."
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Ocultar solicitações ignoradas"
+#: mod/admin.php:1503
+msgid "Request date"
+msgstr "Solicitar data"
 
-#: mod/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
-msgstr "Tipo de notificação:"
+#: mod/admin.php:1504
+msgid "No registrations."
+msgstr "Nenhum registro."
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerido por %s"
+#: mod/admin.php:1505
+msgid "Note from the user"
+msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
-msgstr "Publicar a adição de amigo"
+#: mod/admin.php:1507
+msgid "Deny"
+msgstr "Negar"
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
-msgstr "se aplicável"
+#: mod/admin.php:1511
+msgid "Site admin"
+msgstr "Administração do site"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Alega ser conhecido por você: "
+#: mod/admin.php:1512
+msgid "Account expired"
+msgstr "Conta expirou"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "sim"
+#: mod/admin.php:1515
+msgid "New User"
+msgstr "Novo usuário"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "não"
+#: mod/admin.php:1516
+msgid "Deleted since"
+msgstr "Apagado desde"
 
-#: mod/notifications.php:197
+#: mod/admin.php:1521
 msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
-"you allow to read but you do not want to read theirs. Approve as: "
-msgstr "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite  ler e  se inscreve nos  textos dele. \"Fan / admirador\" significa que você permite  ler, mas você não quer ler os textos dele. Aprovar como:"
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
 
-#: mod/notifications.php:200
+#: mod/admin.php:1522
 msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
-msgstr "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite a leitura e assina o textos dele. \"Compartilhador\" significa que você permite a leitura mas você não quer ler os textos dele. Aprova como:"
-
-#: mod/notifications.php:209
-msgid "Friend"
-msgstr "Amigo"
-
-#: mod/notifications.php:210
-msgid "Sharer"
-msgstr "Compartilhador"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?"
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
-msgstr "Fã/Admirador"
+#: mod/admin.php:1532
+msgid "Name of the new user."
+msgstr "Nome do novo usuário."
 
-#: mod/notifications.php:260
-msgid "No introductions."
-msgstr "Sem apresentações."
+#: mod/admin.php:1533
+msgid "Nickname"
+msgstr "Apelido"
 
-#: mod/notifications.php:299
-msgid "Show unread"
-msgstr ""
+#: mod/admin.php:1533
+msgid "Nickname of the new user."
+msgstr "Apelido para o novo usuário."
 
-#: mod/notifications.php:299
-msgid "Show all"
-msgstr ""
+#: mod/admin.php:1534
+msgid "Email address of the new user."
+msgstr "Endereço de e-mail do novo usuário."
 
-#: mod/notifications.php:305
+#: mod/admin.php:1577
 #, php-format
-msgid "No more %s notifications."
-msgstr ""
-
-#: mod/photos.php:101 mod/photos.php:1886
-msgid "Recent Photos"
-msgstr "Fotos recentes"
+msgid "Plugin %s disabled."
+msgstr "O plugin %s foi desabilitado."
 
-#: mod/photos.php:104 mod/photos.php:1308 mod/photos.php:1888
-msgid "Upload New Photos"
-msgstr "Enviar novas fotos"
+#: mod/admin.php:1581
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "O plugin %s foi habilitado."
 
-#: mod/photos.php:182
-msgid "Contact information unavailable"
-msgstr "A informação de contato não está disponível"
+#: mod/admin.php:1592 mod/admin.php:1844
+msgid "Disable"
+msgstr "Desabilitar"
 
-#: mod/photos.php:203
-msgid "Album not found."
-msgstr "O álbum não foi encontrado."
+#: mod/admin.php:1594 mod/admin.php:1846
+msgid "Enable"
+msgstr "Habilitar"
 
-#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1250
-msgid "Delete Album"
-msgstr "Excluir o álbum"
+#: mod/admin.php:1617 mod/admin.php:1893
+msgid "Toggle"
+msgstr "Alternar"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
+#: mod/admin.php:1625 mod/admin.php:1902
+msgid "Author: "
+msgstr "Autor: "
 
-#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1567
-msgid "Delete Photo"
-msgstr "Excluir a foto"
+#: mod/admin.php:1626 mod/admin.php:1903
+msgid "Maintainer: "
+msgstr "Mantenedor: "
 
-#: mod/photos.php:332
-msgid "Do you really want to delete this photo?"
-msgstr "Você realmente deseja deletar essa foto?"
+#: mod/admin.php:1681
+msgid "Reload active plugins"
+msgstr ""
 
-#: mod/photos.php:707
+#: mod/admin.php:1686
 #, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s foi marcado em %2$s por %3$s"
+msgid ""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr ""
 
-#: mod/photos.php:707
-msgid "a photo"
-msgstr "uma foto"
+#: mod/admin.php:1805
+msgid "No themes found."
+msgstr "Nenhum tema encontrado"
 
-#: mod/photos.php:814
-msgid "Image file is empty."
-msgstr "O arquivo de imagem está vazio."
+#: mod/admin.php:1884
+msgid "Screenshot"
+msgstr "Captura de tela"
 
-#: mod/photos.php:974
-msgid "No photos selected"
-msgstr "Não foi selecionada nenhuma foto"
+#: mod/admin.php:1944
+msgid "Reload active themes"
+msgstr ""
 
-#: mod/photos.php:1135
+#: mod/admin.php:1949
 #, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr ""
 
-#: mod/photos.php:1170
-msgid "Upload Photos"
-msgstr "Enviar fotos"
+#: mod/admin.php:1950
+msgid "[Experimental]"
+msgstr "[Esperimental]"
 
-#: mod/photos.php:1174 mod/photos.php:1245
-msgid "New album name: "
-msgstr "Nome do novo álbum: "
+#: mod/admin.php:1951
+msgid "[Unsupported]"
+msgstr "[Não suportado]"
 
-#: mod/photos.php:1175
-msgid "or existing album name: "
-msgstr "ou o nome de um álbum já existente: "
+#: mod/admin.php:1975
+msgid "Log settings updated."
+msgstr "As configurações de relatórios foram atualizadas."
 
-#: mod/photos.php:1176
-msgid "Do not show a status post for this upload"
-msgstr "Não exiba uma publicação de status para este envio"
+#: mod/admin.php:2007
+msgid "PHP log currently enabled."
+msgstr ""
 
-#: mod/photos.php:1189
-msgid "Private Photo"
-msgstr "Foto Privada"
+#: mod/admin.php:2009
+msgid "PHP log currently disabled."
+msgstr ""
 
-#: mod/photos.php:1190
-msgid "Public Photo"
-msgstr "Foto Pública"
+#: mod/admin.php:2018
+msgid "Clear"
+msgstr "Limpar"
 
-#: mod/photos.php:1258
-msgid "Edit Album"
-msgstr "Editar o álbum"
+#: mod/admin.php:2023
+msgid "Enable Debugging"
+msgstr "Habilitar depuração"
 
-#: mod/photos.php:1264
-msgid "Show Newest First"
-msgstr "Exibir as mais recentes primeiro"
+#: mod/admin.php:2024
+msgid "Log file"
+msgstr "Arquivo do relatório"
 
-#: mod/photos.php:1266
-msgid "Show Oldest First"
-msgstr "Exibir as mais antigas primeiro"
+#: mod/admin.php:2024
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica."
 
-#: mod/photos.php:1294 mod/photos.php:1871
-msgid "View Photo"
-msgstr "Ver a foto"
+#: mod/admin.php:2025
+msgid "Log level"
+msgstr "Nível do relatório"
 
-#: mod/photos.php:1340
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permissão negada. O acesso a este item pode estar restrito."
+#: mod/admin.php:2028
+msgid "PHP logging"
+msgstr ""
 
-#: mod/photos.php:1342
-msgid "Photo not available"
-msgstr "A foto não está disponível"
+#: mod/admin.php:2029
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr ""
 
-#: mod/photos.php:1398
-msgid "View photo"
-msgstr "Ver a imagem"
+#: mod/admin.php:2160
+#, php-format
+msgid "Lock feature %s"
+msgstr "Bloquear funcionalidade %s"
 
-#: mod/photos.php:1398
-msgid "Edit photo"
-msgstr "Editar a foto"
+#: mod/admin.php:2168
+msgid "Manage Additional Features"
+msgstr "Gerenciar funcionalidades adicionais"
 
-#: mod/photos.php:1399
-msgid "Use as profile photo"
-msgstr "Usar como uma foto de perfil"
+#: object/Item.php:359
+msgid "via"
+msgstr "via"
 
-#: mod/photos.php:1424
-msgid "View Full Size"
-msgstr "Ver no tamanho real"
+#: view/theme/duepuntozero/config.php:44
+msgid "greenzero"
+msgstr "greenzero"
 
-#: mod/photos.php:1510
-msgid "Tags: "
-msgstr "Etiquetas: "
+#: view/theme/duepuntozero/config.php:45
+msgid "purplezero"
+msgstr "purplezero"
 
-#: mod/photos.php:1513
-msgid "[Remove any tag]"
-msgstr "[Remover qualquer etiqueta]"
+#: view/theme/duepuntozero/config.php:46
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: mod/photos.php:1553
-msgid "New album name"
-msgstr "Novo nome para o álbum"
+#: view/theme/duepuntozero/config.php:47
+msgid "darkzero"
+msgstr "darkzero"
 
-#: mod/photos.php:1554
-msgid "Caption"
-msgstr "Legenda"
+#: view/theme/duepuntozero/config.php:48
+msgid "comix"
+msgstr "comix"
 
-#: mod/photos.php:1555
-msgid "Add a Tag"
-msgstr "Adicionar uma etiqueta"
+#: view/theme/duepuntozero/config.php:49
+msgid "slackr"
+msgstr "slackr"
 
-#: mod/photos.php:1555
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
+#: view/theme/duepuntozero/config.php:64
+msgid "Variations"
+msgstr "Variações"
 
-#: mod/photos.php:1556
-msgid "Do not rotate"
+#: view/theme/frio/config.php:47
+msgid "Default"
+msgstr "Padrão"
+
+#: view/theme/frio/config.php:59
+msgid "Note: "
+msgstr "Observação:"
+
+#: view/theme/frio/config.php:59
+msgid "Check image permissions if all users are allowed to visit the image"
 msgstr ""
 
-#: mod/photos.php:1557
-msgid "Rotate CW (right)"
-msgstr "Rotacionar para direita"
+#: view/theme/frio/config.php:67
+msgid "Select scheme"
+msgstr "Selecionar esquema de cores"
 
-#: mod/photos.php:1558
-msgid "Rotate CCW (left)"
-msgstr "Rotacionar para esquerda"
+#: view/theme/frio/config.php:68
+msgid "Navigation bar background color"
+msgstr "Cor de fundo da barra de navegação"
 
-#: mod/photos.php:1573
-msgid "Private photo"
-msgstr "Foto privada"
+#: view/theme/frio/config.php:69
+msgid "Navigation bar icon color "
+msgstr "Cor do ícone da barra de navegação"
 
-#: mod/photos.php:1574
-msgid "Public photo"
-msgstr "Foto pública"
+#: view/theme/frio/config.php:70
+msgid "Link color"
+msgstr "Cor do link"
 
-#: mod/photos.php:1800
-msgid "Map"
-msgstr ""
+#: view/theme/frio/config.php:71
+msgid "Set the background color"
+msgstr "Escolher a cor de fundo"
 
-#: object/Item.php:370
-msgid "via"
-msgstr "via"
+#: view/theme/frio/config.php:72
+msgid "Content background transparency"
+msgstr "Transparência do fundo do conteúdo"
+
+#: view/theme/frio/config.php:73
+msgid "Set the background image"
+msgstr "Escolher a imagem de fundo"
 
 #: view/theme/frio/php/Image.php:23
 msgid "Repeat the image"
@@ -8557,46 +8831,6 @@ msgstr "Ajustar"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Redimensiona para ajustar ao plano de fundo, mantendo proporções."
 
-#: view/theme/frio/config.php:42
-msgid "Default"
-msgstr "Padrão"
-
-#: view/theme/frio/config.php:54
-msgid "Note: "
-msgstr "Observação:"
-
-#: view/theme/frio/config.php:54
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr ""
-
-#: view/theme/frio/config.php:62
-msgid "Select scheme"
-msgstr "Selecionar esquema de cores"
-
-#: view/theme/frio/config.php:63
-msgid "Navigation bar background color"
-msgstr "Cor de fundo da barra de navegação"
-
-#: view/theme/frio/config.php:64
-msgid "Navigation bar icon color "
-msgstr "Cor do ícone da barra de navegação"
-
-#: view/theme/frio/config.php:65
-msgid "Link color"
-msgstr "Cor do link"
-
-#: view/theme/frio/config.php:66
-msgid "Set the background color"
-msgstr "Escolher a cor de fundo"
-
-#: view/theme/frio/config.php:67
-msgid "Content background transparency"
-msgstr "Transparência do fundo do conteúdo"
-
-#: view/theme/frio/config.php:68
-msgid "Set the background image"
-msgstr "Escolher a imagem de fundo"
-
 #: view/theme/frio/theme.php:226
 msgid "Guest"
 msgstr "Convidado"
@@ -8605,230 +8839,119 @@ msgstr "Convidado"
 msgid "Visitor"
 msgstr "Visitante"
 
-#: view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
-
-#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73
-#: view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Escolha o tamanho da fonte para publicações e comentários"
-
-#: view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Configure a largura do tema"
-
-#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Esquema de cores"
-
-#: view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:70
 msgid "Alignment"
 msgstr "Alinhamento"
 
-#: view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:70
 msgid "Left"
 msgstr "Esquerda"
 
-#: view/theme/quattro/config.php:67
+#: view/theme/quattro/config.php:70
 msgid "Center"
 msgstr "Centro"
 
-#: view/theme/quattro/config.php:69
+#: view/theme/quattro/config.php:71
+msgid "Color scheme"
+msgstr "Esquema de cores"
+
+#: view/theme/quattro/config.php:72
 msgid "Posts font size"
 msgstr "Tamanho da fonte para publicações"
 
-#: view/theme/quattro/config.php:70
+#: view/theme/quattro/config.php:73
 msgid "Textareas font size"
 msgstr "Tamanho da fonte para campos texto"
 
-#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Escolha comprimento da linha para publicações e comentários"
-
-#: view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Configure o esquema de cores"
-
-#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
-#: view/theme/diabook/config.php:160
-msgid "Community Profiles"
-msgstr "Profiles Comunitários"
-
-#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
-#: view/theme/diabook/config.php:164
-msgid "Last users"
-msgstr "Últimos usuários"
-
-#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
-#: view/theme/diabook/config.php:163
-msgid "Find Friends"
-msgstr "Encontrar amigos"
-
-#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Diretório Local"
-
-#: view/theme/vier/theme.php:291
-msgid "Quick Start"
-msgstr ""
-
-#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
-#: view/theme/diabook/config.php:162
-msgid "Connect Services"
-msgstr "Conectar serviços"
-
-#: view/theme/vier/config.php:64
+#: view/theme/vier/config.php:69
 msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: view/theme/vier/config.php:110
+#: view/theme/vier/config.php:115
 msgid "Set style"
 msgstr "escolha estilo"
 
-#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
-#: view/theme/diabook/config.php:158
+#: view/theme/vier/config.php:116
 msgid "Community Pages"
 msgstr "Páginas da Comunidade"
 
-#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
-#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
+#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149
+msgid "Community Profiles"
+msgstr "Profiles Comunitários"
+
+#: view/theme/vier/config.php:118
 msgid "Help or @NewHere ?"
 msgstr "Ajuda ou @NewHere ?"
 
-#: view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Seus contatos"
-
-#: view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Suas fotos pessoais"
-
-#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
-#: view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Últimas gostadas"
-
-#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
-#: view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Últimas fotos"
-
-#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
-#: view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Camadas da Terra"
-
-#: view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Configure o zoom para Camadas da Terra"
-
-#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Configure longitude (X) para Camadas da Terra"
-
-#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Configure latitude (Y) para Camadas da Terra"
-
-#: view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostre/esconda caixas na coluna à direita:"
-
-#: view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Escolha a resolução para a coluna do meio"
-
-#: view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Configure o esquema de cores"
-
-#: view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Configure o zoom para Camadas da Terra"
-
-#: view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
-
-#: view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
-
-#: view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390
+msgid "Connect Services"
+msgstr "Conectar serviços"
 
-#: view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197
+msgid "Find Friends"
+msgstr "Encontrar amigos"
 
-#: view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179
+msgid "Last users"
+msgstr "Últimos usuários"
 
-#: view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
+#: view/theme/vier/theme.php:198
+msgid "Local Directory"
+msgstr "Diretório Local"
 
-#: view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variações"
+#: view/theme/vier/theme.php:290
+msgid "Quick Start"
+msgstr ""
 
-#: index.php:447
+#: index.php:433
 msgid "toggle mobile"
 msgstr "habilita mobile"
 
-#: boot.php:901
+#: boot.php:999
 msgid "Delete this item?"
 msgstr "Excluir este item?"
 
-#: boot.php:904
+#: boot.php:1001
 msgid "show fewer"
 msgstr "exibir menos"
 
-#: boot.php:1518
+#: boot.php:1729
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Atualização %s falhou. Vide registro de erros (log)."
 
-#: boot.php:1630
+#: boot.php:1843
 msgid "Create a New Account"
 msgstr "Criar uma nova conta"
 
-#: boot.php:1659
+#: boot.php:1871
 msgid "Password: "
 msgstr "Senha: "
 
-#: boot.php:1660
+#: boot.php:1872
 msgid "Remember me"
 msgstr "Lembre-se de mim"
 
-#: boot.php:1663
+#: boot.php:1875
 msgid "Or login using OpenID: "
 msgstr "Ou login usando OpendID:"
 
-#: boot.php:1669
+#: boot.php:1881
 msgid "Forgot your password?"
 msgstr "Esqueceu a sua senha?"
 
-#: boot.php:1672
+#: boot.php:1884
 msgid "Website Terms of Service"
 msgstr "Termos de Serviço do Website"
 
-#: boot.php:1673
+#: boot.php:1885
 msgid "terms of service"
 msgstr "termos de serviço"
 
-#: boot.php:1675
+#: boot.php:1887
 msgid "Website Privacy Policy"
 msgstr "Política de Privacidade do Website"
 
-#: boot.php:1676
+#: boot.php:1888
 msgid "privacy policy"
 msgstr "política de privacidade"
index 2dddd531afdad0600179218e46933ba6791621ae..0663e5bb3d2cfbf0b65cf9aa9b274ce218d5a375 100644 (file)
@@ -5,170 +5,105 @@ function string_plural_select_pt_br($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["Miscellaneous"] = "Miscelânea";
-$a->strings["Birthday:"] = "Aniversário:";
-$a->strings["Age: "] = "Idade: ";
-$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD ou MM-DD";
-$a->strings["never"] = "nunca";
-$a->strings["less than a second ago"] = "menos de um segundo atrás";
-$a->strings["year"] = "ano";
-$a->strings["years"] = "anos";
-$a->strings["month"] = "mês";
-$a->strings["months"] = "meses";
-$a->strings["week"] = "semana";
-$a->strings["weeks"] = "semanas";
-$a->strings["day"] = "dia";
-$a->strings["days"] = "dias";
-$a->strings["hour"] = "hora";
-$a->strings["hours"] = "horas";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minutos";
-$a->strings["second"] = "segundo";
-$a->strings["seconds"] = "segundos";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
-$a->strings["%s's birthday"] = "aniversário de %s";
-$a->strings["Happy Birthday %s"] = "Feliz aniversário, %s";
-$a->strings["Add New Contact"] = "Adicionar Contato Novo";
-$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
-$a->strings["Connect"] = "Conectar";
-$a->strings["%d invitation available"] = array(
-       0 => "%d convite disponível",
-       1 => "%d convites disponíveis",
-);
-$a->strings["Find People"] = "Pesquisar por pessoas";
-$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
-$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
-$a->strings["Find"] = "Pesquisar";
-$a->strings["Friend Suggestions"] = "Sugestões de amigos";
-$a->strings["Similar Interests"] = "Interesses Parecidos";
-$a->strings["Random Profile"] = "Perfil Randômico";
-$a->strings["Invite Friends"] = "Convidar amigos";
-$a->strings["Networks"] = "Redes";
-$a->strings["All Networks"] = "Todas as redes";
-$a->strings["Saved Folders"] = "Pastas salvas";
-$a->strings["Everything"] = "Tudo";
-$a->strings["Categories"] = "Categorias";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contato em comum",
-       1 => "%d contatos em comum",
-);
-$a->strings["show more"] = "exibir mais";
-$a->strings["Friendica Notification"] = "Notificação Friendica";
-$a->strings["Thank You,"] = "Obrigado,";
-$a->strings["%s Administrator"] = "%s Administrador";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador";
-$a->strings["noreply"] = "naoresponda";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
-$a->strings["a private message"] = "uma mensagem privada";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' aceitou o seu pedido de conexão no %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
-$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' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento.";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação.";
 $a->strings["Forums"] = "Fóruns";
 $a->strings["External link to forum"] = "Link externo para fórum";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
-$a->strings["Starts:"] = "Início:";
-$a->strings["Finishes:"] = "Término:";
-$a->strings["Location:"] = "Localização:";
-$a->strings["Sun"] = "Dom";
-$a->strings["Mon"] = "Seg";
-$a->strings["Tue"] = "Ter";
-$a->strings["Wed"] = "Qua";
-$a->strings["Thu"] = "Qui";
-$a->strings["Fri"] = "Sex";
-$a->strings["Sat"] = "Sáb";
-$a->strings["Sunday"] = "Domingo";
-$a->strings["Monday"] = "Segunda";
-$a->strings["Tuesday"] = "Terça";
-$a->strings["Wednesday"] = "Quarta";
-$a->strings["Thursday"] = "Quinta";
-$a->strings["Friday"] = "Sexta";
-$a->strings["Saturday"] = "Sábado";
-$a->strings["Jan"] = "Jan";
-$a->strings["Feb"] = "Fev";
-$a->strings["Mar"] = "Mar";
-$a->strings["Apr"] = "Abr";
-$a->strings["May"] = "Maio";
-$a->strings["Jun"] = "Jun";
-$a->strings["Jul"] = "Jul";
-$a->strings["Aug"] = "Ago";
-$a->strings["Sept"] = "Set";
-$a->strings["Oct"] = "Out";
-$a->strings["Nov"] = "Nov";
-$a->strings["Dec"] = "Dez";
-$a->strings["January"] = "Janeiro";
-$a->strings["February"] = "Fevereiro";
-$a->strings["March"] = "Março";
-$a->strings["April"] = "Abril";
-$a->strings["June"] = "Junho";
-$a->strings["July"] = "Julho";
-$a->strings["August"] = "Agosto";
-$a->strings["September"] = "Setembro";
-$a->strings["October"] = "Outubro";
-$a->strings["November"] = "Novembro";
-$a->strings["December"] = "Dezembro";
-$a->strings["today"] = "hoje";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editar o evento";
-$a->strings["link to source"] = "exibir a origem";
-$a->strings["Export"] = "Exportar";
-$a->strings["Export calendar as ical"] = "Exportar a agenda como iCal";
-$a->strings["Export calendar as csv"] = "Exportar a agenda como CSV";
-$a->strings["Welcome "] = "Bem-vindo(a) ";
-$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
-$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
+$a->strings["show more"] = "exibir mais";
+$a->strings["System"] = "Sistema";
+$a->strings["Network"] = "Rede";
+$a->strings["Personal"] = "Pessoal";
+$a->strings["Home"] = "Pessoal";
+$a->strings["Introductions"] = "Apresentações";
+$a->strings["%s commented on %s's post"] = "%s comentou a publicação de %s";
+$a->strings["%s created a new post"] = "%s criou uma nova publicação";
+$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
+$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
+$a->strings["%s is attending %s's event"] = "%s comparecerá ao evento de %s";
+$a->strings["%s is not attending %s's event"] = "%s não comparecerá ao evento de %s";
+$a->strings["%s may attend %s's event"] = "%s talvez compareça ao evento de %s";
+$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
+$a->strings["Friend Suggestion"] = "Sugestão de amizade";
+$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
+$a->strings["New Follower"] = "Novo acompanhante";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["(no subject)"] = "(sem assunto)";
+$a->strings["noreply"] = "naoresponda";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s vai a %3\$s de %2\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s não vai a %3\$s de %2\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s está pensando em ir a %3\$s de %2\$s";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["event"] = "evento";
+$a->strings["[no subject]"] = "[sem assunto]";
+$a->strings["Nothing new here"] = "Nada de novo aqui";
+$a->strings["Clear notifications"] = "Descartar notificações";
+$a->strings["@name, !forum, #tags, content"] = "";
+$a->strings["Logout"] = "Sair";
+$a->strings["End this session"] = "Terminar esta sessão";
+$a->strings["Status"] = "Status";
+$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
+$a->strings["Profile"] = "Perfil ";
+$a->strings["Your profile page"] = "Sua página de perfil";
+$a->strings["Photos"] = "Fotos";
+$a->strings["Your photos"] = "Suas fotos";
+$a->strings["Videos"] = "Vídeos";
+$a->strings["Your videos"] = "Seus vídeos";
+$a->strings["Events"] = "Eventos";
+$a->strings["Your events"] = "Seus eventos";
+$a->strings["Personal notes"] = "Suas anotações pessoais";
+$a->strings["Your personal notes"] = "Suas anotações pessoais";
+$a->strings["Login"] = "Entrar";
+$a->strings["Sign in"] = "Entrar";
+$a->strings["Home Page"] = "Página pessoal";
+$a->strings["Register"] = "Registrar";
+$a->strings["Create an account"] = "Criar uma conta";
+$a->strings["Help"] = "Ajuda";
+$a->strings["Help and documentation"] = "Ajuda e documentação";
+$a->strings["Apps"] = "Aplicativos";
+$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
+$a->strings["Search"] = "Pesquisar";
+$a->strings["Search site content"] = "Pesquisar conteúdo no site";
+$a->strings["Full Text"] = "";
+$a->strings["Tags"] = "";
+$a->strings["Contacts"] = "Contatos";
+$a->strings["Community"] = "Comunidade";
+$a->strings["Conversations on this site"] = "Conversas neste site";
+$a->strings["Conversations on the network"] = "Conversas na rede";
+$a->strings["Events and Calendar"] = "Eventos e Agenda";
+$a->strings["Directory"] = "Diretório";
+$a->strings["People directory"] = "Diretório de pessoas";
+$a->strings["Information"] = "Informação";
+$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
+$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
+$a->strings["Network Reset"] = "Reiniciar Rede";
+$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
+$a->strings["Friend Requests"] = "Requisições de Amizade";
+$a->strings["Notifications"] = "Notificações";
+$a->strings["See all notifications"] = "Ver todas notificações";
+$a->strings["Mark as seen"] = "Marcar como visto";
+$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
+$a->strings["Messages"] = "Mensagens";
+$a->strings["Private mail"] = "Mensagem privada";
+$a->strings["Inbox"] = "Recebidas";
+$a->strings["Outbox"] = "Enviadas";
+$a->strings["New Message"] = "Nova mensagem";
+$a->strings["Manage"] = "Gerenciar";
+$a->strings["Manage other pages"] = "Gerenciar outras páginas";
+$a->strings["Delegations"] = "Delegações";
+$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
+$a->strings["Settings"] = "Configurações";
+$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Profiles"] = "Perfis";
+$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
+$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
+$a->strings["Admin"] = "Admin";
+$a->strings["Site setup and configuration"] = "Configurações do site";
+$a->strings["Navigation"] = "Navegação";
+$a->strings["Site map"] = "Mapa do Site";
+$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
+$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
 $a->strings["Male"] = "Masculino";
 $a->strings["Female"] = "Feminino";
 $a->strings["Currently Male"] = "Atualmente masculino";
@@ -230,170 +165,60 @@ $a->strings["Uncertain"] = "Incerto(a)";
 $a->strings["It's complicated"] = "É complicado";
 $a->strings["Don't care"] = "Não importa";
 $a->strings["Ask me"] = "Pergunte-me";
-$a->strings["Embedded content"] = "Conteúdo incorporado";
-$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
-$a->strings["Image/photo"] = "Imagem/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 escreveu:";
-$a->strings["Encrypted content"] = "Conteúdo criptografado";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
+$a->strings["Welcome "] = "Bem-vindo(a) ";
+$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
+$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
+$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
+$a->strings["User creation error"] = "Erro na criação do usuário";
+$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contato não foi importado",
+       1 => "%d contatos não foram importados",
+);
+$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha.";
+$a->strings["View Profile"] = "Ver Perfil";
+$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
+$a->strings["View Status"] = "Ver Status";
+$a->strings["View Photos"] = "Ver Fotos";
+$a->strings["Network Posts"] = "Publicações da Rede";
+$a->strings["View Contact"] = "";
+$a->strings["Drop Contact"] = "Excluir o contato";
+$a->strings["Send PM"] = "Enviar MP";
+$a->strings["Poke"] = "Cutucar";
+$a->strings["Organisation"] = "";
+$a->strings["News"] = "";
+$a->strings["Forum"] = "Fórum";
+$a->strings["Post to Email"] = "Enviar por e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["show"] = "exibir";
+$a->strings["don't show"] = "não exibir";
+$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
+$a->strings["Permissions"] = "Permissões";
+$a->strings["Close"] = "Fechar";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado.";
 $a->strings["Logged out."] = "Saiu.";
 $a->strings["Login failed."] = "Não foi possível autenticar.";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
 $a->strings["The error message was:"] = "A mensagem de erro foi:";
-$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
-$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
-$a->strings["Everybody"] = "Todos";
-$a->strings["edit"] = "editar";
-$a->strings["Groups"] = "Grupos";
-$a->strings["Edit groups"] = "Editar grupos";
-$a->strings["Edit group"] = "Editar grupo";
-$a->strings["Create a new group"] = "Criar um novo grupo";
-$a->strings["Group Name: "] = "Nome do grupo: ";
-$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
-$a->strings["add"] = "adicionar";
-$a->strings["Wall Photos"] = "Fotos do mural";
-$a->strings["(no subject)"] = "(sem assunto)";
-$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
-$a->strings["An invitation is required."] = "É necessário um convite.";
-$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
-$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
-$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
-$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
-$a->strings["Name too short."] = "O nome é muito curto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
-$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
-$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
-$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
-$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
-$a->strings["default"] = "padrão";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
-$a->strings["Profile Photos"] = "Fotos do perfil";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s.";
-$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
-$a->strings["General Features"] = "Funcionalidades Gerais";
-$a->strings["Multiple Profiles"] = "Perfis Múltiplos";
-$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
-$a->strings["Photo Location"] = "";
-$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"] = "Exportar a agenda pública";
-$a->strings["Ability for visitors to download the public calendar"] = "Visitantes podem baixar a agenda pública";
-$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
-$a->strings["Richtext Editor"] = "Editor Richtext";
-$a->strings["Enable richtext editor"] = "Habilite editor richtext";
-$a->strings["Post Preview"] = "Pré-visualização da Publicação";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
-$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
-$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
-$a->strings["Search by Date"] = "Buscar por Data";
-$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
-$a->strings["List Forums"] = "";
-$a->strings["Enable widget to display the forums your are connected with"] = "";
-$a->strings["Group Filter"] = "Filtrar Grupo";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
-$a->strings["Network Filter"] = "Filtrar Rede";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
-$a->strings["Saved Searches"] = "Pesquisas salvas";
-$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
-$a->strings["Network Tabs"] = "Abas da Rede";
-$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
-$a->strings["Network New Tab"] = "Aba Nova da Rede";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
-$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
-$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
-$a->strings["Multiple Deletion"] = "Deleção Multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
-$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
-$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
-$a->strings["Tagging"] = "Etiquetagem";
-$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
-$a->strings["Post Categories"] = "Categorias de Publicações";
-$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
-$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
-$a->strings["Dislike Posts"] = "Desgostar de publicações";
-$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
-$a->strings["Star Posts"] = "Destacar publicações";
-$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
-$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem";
-$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa";
-$a->strings["Advanced Profile Settings"] = "Configurações de perfil avançadas";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
-$a->strings["Nothing new here"] = "Nada de novo aqui";
-$a->strings["Clear notifications"] = "Descartar notificações";
-$a->strings["@name, !forum, #tags, content"] = "";
-$a->strings["Logout"] = "Sair";
-$a->strings["End this session"] = "Terminar esta sessão";
-$a->strings["Status"] = "Status";
-$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
-$a->strings["Profile"] = "Perfil ";
-$a->strings["Your profile page"] = "Sua página de perfil";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Your photos"] = "Suas fotos";
-$a->strings["Videos"] = "Vídeos";
-$a->strings["Your videos"] = "Seus vídeos";
-$a->strings["Events"] = "Eventos";
-$a->strings["Your events"] = "Seus eventos";
-$a->strings["Personal notes"] = "Suas anotações pessoais";
-$a->strings["Your personal notes"] = "Suas anotações pessoais";
-$a->strings["Login"] = "Entrar";
-$a->strings["Sign in"] = "Entrar";
-$a->strings["Home"] = "Pessoal";
-$a->strings["Home Page"] = "Página pessoal";
-$a->strings["Register"] = "Registrar";
-$a->strings["Create an account"] = "Criar uma conta";
-$a->strings["Help"] = "Ajuda";
-$a->strings["Help and documentation"] = "Ajuda e documentação";
-$a->strings["Apps"] = "Aplicativos";
-$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
-$a->strings["Search"] = "Pesquisar";
-$a->strings["Search site content"] = "Pesquisar conteúdo no site";
-$a->strings["Full Text"] = "";
-$a->strings["Tags"] = "";
-$a->strings["Contacts"] = "Contatos";
-$a->strings["Community"] = "Comunidade";
-$a->strings["Conversations on this site"] = "Conversas neste site";
-$a->strings["Conversations on the network"] = "Conversas na rede";
-$a->strings["Events and Calendar"] = "Eventos e Agenda";
-$a->strings["Directory"] = "Diretório";
-$a->strings["People directory"] = "Diretório de pessoas";
-$a->strings["Information"] = "Informação";
-$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
-$a->strings["Network"] = "Rede";
-$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
-$a->strings["Network Reset"] = "Reiniciar Rede";
-$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
-$a->strings["Introductions"] = "Apresentações";
-$a->strings["Friend Requests"] = "Requisições de Amizade";
-$a->strings["Notifications"] = "Notificações";
-$a->strings["See all notifications"] = "Ver todas notificações";
-$a->strings["Mark as seen"] = "Marcar como visto";
-$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
-$a->strings["Messages"] = "Mensagens";
-$a->strings["Private mail"] = "Mensagem privada";
-$a->strings["Inbox"] = "Recebidas";
-$a->strings["Outbox"] = "Enviadas";
-$a->strings["New Message"] = "Nova mensagem";
-$a->strings["Manage"] = "Gerenciar";
-$a->strings["Manage other pages"] = "Gerenciar outras páginas";
-$a->strings["Delegations"] = "Delegações";
-$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
-$a->strings["Settings"] = "Configurações";
-$a->strings["Account settings"] = "Configurações da conta";
-$a->strings["Profiles"] = "Perfis";
-$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
-$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site setup and configuration"] = "Configurações do site";
-$a->strings["Navigation"] = "Navegação";
-$a->strings["Site map"] = "Mapa do Site";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
+$a->strings["Starts:"] = "Início:";
+$a->strings["Finishes:"] = "Término:";
+$a->strings["Location:"] = "Localização:";
+$a->strings["Image/photo"] = "Imagem/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 escreveu:";
+$a->strings["Encrypted content"] = "Conteúdo criptografado";
+$a->strings["Invalid source protocol"] = "";
+$a->strings["Invalid link protocol"] = "";
 $a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
 $a->strings["Block immediately"] = "Bloquear imediatamente";
 $a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
@@ -420,14 +245,34 @@ $a->strings["Google+"] = "Google+";
 $a->strings["pump.io"] = "pump.io";
 $a->strings["Twitter"] = "Twitter";
 $a->strings["Diaspora Connector"] = "Conector do Diáspora";
-$a->strings["GNU Social"] = "GNU Social";
+$a->strings["GNU Social Connector"] = "";
+$a->strings["pnut"] = "";
 $a->strings["App.net"] = "App.net";
-$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
-$a->strings["event"] = "evento";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
+$a->strings["Add New Contact"] = "Adicionar Contato Novo";
+$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
+$a->strings["Connect"] = "Conectar";
+$a->strings["%d invitation available"] = array(
+       0 => "%d convite disponível",
+       1 => "%d convites disponíveis",
+);
+$a->strings["Find People"] = "Pesquisar por pessoas";
+$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
+$a->strings["Find"] = "Pesquisar";
+$a->strings["Friend Suggestions"] = "Sugestões de amigos";
+$a->strings["Similar Interests"] = "Interesses Parecidos";
+$a->strings["Random Profile"] = "Perfil Randômico";
+$a->strings["Invite Friends"] = "Convidar amigos";
+$a->strings["Networks"] = "Redes";
+$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Saved Folders"] = "Pastas salvas";
+$a->strings["Everything"] = "Tudo";
+$a->strings["Categories"] = "Categorias";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contato em comum",
+       1 => "%d contatos em comum",
+);
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "";
 $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
@@ -456,13 +301,6 @@ $a->strings["Please wait"] = "Por favor, espere";
 $a->strings["remove"] = "remover";
 $a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
 $a->strings["Follow Thread"] = "Seguir o Thread";
-$a->strings["View Status"] = "Ver Status";
-$a->strings["View Profile"] = "Ver Perfil";
-$a->strings["View Photos"] = "Ver Fotos";
-$a->strings["Network Posts"] = "Publicações da Rede";
-$a->strings["Edit Contact"] = "Editar Contato";
-$a->strings["Send PM"] = "Enviar MP";
-$a->strings["Poke"] = "Cutucar";
 $a->strings["%s likes this."] = "%s gostou disso.";
 $a->strings["%s doesn't like this."] = "%s não gostou disso.";
 $a->strings["%s attends."] = "";
@@ -478,7 +316,7 @@ $a->strings["<span  %1\$s>%2\$d people</span> attend"] = "";
 $a->strings["%s attend."] = "";
 $a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "";
 $a->strings["%s don't attend."] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> anttend maybe"] = "";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "";
 $a->strings["%s anttend maybe."] = "";
 $a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
 $a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
@@ -528,30 +366,186 @@ $a->strings["Not Attending"] = array(
        0 => "Não vai",
        1 => "Não vão",
 );
-$a->strings["view full size"] = "ver na tela inteira";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
-$a->strings["Errors encountered performing database changes."] = "Erros encontrados realizando mudanças no banco de dados.";
-$a->strings["stopped following"] = "parou de acompanhar";
-$a->strings["Drop Contact"] = "Excluir o contato";
-$a->strings["Post to Email"] = "Enviar por e-mail";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?";
-$a->strings["Visible to everybody"] = "Visível para todos";
-$a->strings["show"] = "exibir";
-$a->strings["don't show"] = "não exibir";
-$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
-$a->strings["Permissions"] = "Permissões";
-$a->strings["Close"] = "Fechar";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado.";
-$a->strings["%s\\'s birthday"] = "Aniversário de %s\__DQ_";
-$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
-$a->strings["Attachments:"] = "Anexos:";
+$a->strings["Miscellaneous"] = "Miscelânea";
+$a->strings["Birthday:"] = "Aniversário:";
+$a->strings["Age: "] = "Idade: ";
+$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD ou MM-DD";
+$a->strings["never"] = "nunca";
+$a->strings["less than a second ago"] = "menos de um segundo atrás";
+$a->strings["year"] = "ano";
+$a->strings["years"] = "anos";
+$a->strings["month"] = "mês";
+$a->strings["months"] = "meses";
+$a->strings["week"] = "semana";
+$a->strings["weeks"] = "semanas";
+$a->strings["day"] = "dia";
+$a->strings["days"] = "dias";
+$a->strings["hour"] = "hora";
+$a->strings["hours"] = "horas";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minutos";
+$a->strings["second"] = "segundo";
+$a->strings["seconds"] = "segundos";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["%s's birthday"] = "aniversário de %s";
+$a->strings["Happy Birthday %s"] = "Feliz aniversário, %s";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'";
+$a->strings["Friendica Notification"] = "Notificação Friendica";
+$a->strings["Thank You,"] = "Obrigado,";
+$a->strings["%s Administrator"] = "%s Administrador";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
+$a->strings["a private message"] = "uma mensagem privada";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' aceitou o seu pedido de conexão no %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Vocês agora são amigos mútuos e podem trocar atualizações de status, fotos e e-mails livremente.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "";
+$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' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação.";
+$a->strings["all-day"] = "";
+$a->strings["Sun"] = "Dom";
+$a->strings["Mon"] = "Seg";
+$a->strings["Tue"] = "Ter";
+$a->strings["Wed"] = "Qua";
+$a->strings["Thu"] = "Qui";
+$a->strings["Fri"] = "Sex";
+$a->strings["Sat"] = "Sáb";
+$a->strings["Sunday"] = "Domingo";
+$a->strings["Monday"] = "Segunda";
+$a->strings["Tuesday"] = "Terça";
+$a->strings["Wednesday"] = "Quarta";
+$a->strings["Thursday"] = "Quinta";
+$a->strings["Friday"] = "Sexta";
+$a->strings["Saturday"] = "Sábado";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Fev";
+$a->strings["Mar"] = "Mar";
+$a->strings["Apr"] = "Abr";
+$a->strings["May"] = "Maio";
+$a->strings["Jun"] = "Jun";
+$a->strings["Jul"] = "Jul";
+$a->strings["Aug"] = "Ago";
+$a->strings["Sept"] = "Set";
+$a->strings["Oct"] = "Out";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dez";
+$a->strings["January"] = "Janeiro";
+$a->strings["February"] = "Fevereiro";
+$a->strings["March"] = "Março";
+$a->strings["April"] = "Abril";
+$a->strings["June"] = "Junho";
+$a->strings["July"] = "Julho";
+$a->strings["August"] = "Agosto";
+$a->strings["September"] = "Setembro";
+$a->strings["October"] = "Outubro";
+$a->strings["November"] = "Novembro";
+$a->strings["December"] = "Dezembro";
+$a->strings["today"] = "hoje";
+$a->strings["No events to display"] = "";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editar o evento";
+$a->strings["Delete event"] = "";
+$a->strings["link to source"] = "exibir a origem";
+$a->strings["Export"] = "Exportar";
+$a->strings["Export calendar as ical"] = "Exportar a agenda como iCal";
+$a->strings["Export calendar as csv"] = "Exportar a agenda como CSV";
+$a->strings["General Features"] = "Funcionalidades Gerais";
+$a->strings["Multiple Profiles"] = "Perfis Múltiplos";
+$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
+$a->strings["Photo Location"] = "";
+$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"] = "Exportar a agenda pública";
+$a->strings["Ability for visitors to download the public calendar"] = "Visitantes podem baixar a agenda pública";
+$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
+$a->strings["Post Preview"] = "Pré-visualização da Publicação";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
+$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
+$a->strings["Search by Date"] = "Buscar por Data";
+$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
+$a->strings["List Forums"] = "";
+$a->strings["Enable widget to display the forums your are connected with"] = "";
+$a->strings["Group Filter"] = "Filtrar Grupo";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
+$a->strings["Network Filter"] = "Filtrar Rede";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
+$a->strings["Saved Searches"] = "Pesquisas salvas";
+$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
+$a->strings["Network Tabs"] = "Abas da Rede";
+$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
+$a->strings["Network New Tab"] = "Aba Nova da Rede";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
+$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
+$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
+$a->strings["Multiple Deletion"] = "Deleção Multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
+$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
+$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
+$a->strings["Tagging"] = "Etiquetagem";
+$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
+$a->strings["Post Categories"] = "Categorias de Publicações";
+$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
+$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
+$a->strings["Dislike Posts"] = "Desgostar de publicações";
+$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
+$a->strings["Star Posts"] = "Destacar publicações";
+$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
+$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem";
+$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa";
+$a->strings["Advanced Profile Settings"] = "Configurações de perfil avançadas";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
 $a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
+$a->strings["Blocked domain"] = "";
 $a->strings["Connect URL missing."] = "URL de conexão faltando.";
 $a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
 $a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
@@ -563,7 +557,17 @@ $a->strings["Use mailto: in front of address to force email check."] = "Use mail
 $a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
 $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
 $a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
-$a->strings["following"] = "acompanhando";
+$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."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
+$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
+$a->strings["Everybody"] = "Todos";
+$a->strings["edit"] = "editar";
+$a->strings["Groups"] = "Grupos";
+$a->strings["Edit groups"] = "Editar grupos";
+$a->strings["Edit group"] = "Editar grupo";
+$a->strings["Create a new group"] = "Criar um novo grupo";
+$a->strings["Group Name: "] = "Nome do grupo: ";
+$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
+$a->strings["add"] = "adicionar";
 $a->strings["Requested account is not available."] = "Conta solicitada não disponível";
 $a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
 $a->strings["Edit profile"] = "Editar perfil";
@@ -574,11 +578,11 @@ $a->strings["Create New Profile"] = "Criar um novo perfil";
 $a->strings["Profile Image"] = "Imagem do perfil";
 $a->strings["visible to everybody"] = "visível para todos";
 $a->strings["Edit visibility"] = "Editar a visibilidade";
-$a->strings["Forum"] = "Fórum";
 $a->strings["Gender:"] = "Gênero:";
 $a->strings["Status:"] = "Situação:";
 $a->strings["Homepage:"] = "Página web:";
 $a->strings["About:"] = "Sobre:";
+$a->strings["XMPP:"] = "";
 $a->strings["Network:"] = "Rede:";
 $a->strings["g A l F d"] = "G l d F";
 $a->strings["F d"] = "F d";
@@ -617,25 +621,60 @@ $a->strings["Profile Details"] = "Detalhe do Perfil";
 $a->strings["Photo Albums"] = "Álbuns de fotos";
 $a->strings["Personal Notes"] = "Notas pessoais";
 $a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
+$a->strings["view full size"] = "ver na tela inteira";
+$a->strings["Embedded content"] = "Conteúdo incorporado";
+$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["Contact Photos"] = "Fotos dos contatos";
+$a->strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada.";
+$a->strings["An invitation is required."] = "É necessário um convite.";
+$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
+$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
+$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
+$a->strings["Name too short."] = "O nome é muito curto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
+$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
+$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
+$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
+$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
+$a->strings["default"] = "padrão";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
+$a->strings["Profile Photos"] = "Fotos do perfil";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
+$a->strings["Registration at %s"] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s.";
+$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
+$a->strings["There are no tables on MyISAM."] = "";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "";
+$a->strings["Errors encountered performing database changes: "] = "";
+$a->strings[": Database update"] = "";
+$a->strings["%s: updating %s table."] = "";
+$a->strings["%s\\'s birthday"] = "Aniversário de %s\__DQ_";
+$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
+$a->strings["Attachments:"] = "Anexos:";
 $a->strings["[Name Withheld]"] = "[Nome não revelado]";
 $a->strings["Item not found."] = "O item não foi encontrado.";
 $a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
 $a->strings["Yes"] = "Sim";
 $a->strings["Permission denied."] = "Permissão negada.";
 $a->strings["Archives"] = "Arquivos";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s vai a %3\$s de %2\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s não vai a %3\$s de %2\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s está pensando em ir a %3\$s de %2\$s";
-$a->strings["[no subject]"] = "[sem assunto]";
-$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
-$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
+$a->strings["%s is now following %s."] = "";
+$a->strings["following"] = "acompanhando";
+$a->strings["%s stopped following %s."] = "";
+$a->strings["stopped following"] = "parou de acompanhar";
 $a->strings["newer"] = "mais recente";
 $a->strings["older"] = "antigo";
-$a->strings["prev"] = "anterior";
 $a->strings["first"] = "primeiro";
-$a->strings["last"] = "último";
+$a->strings["prev"] = "anterior";
 $a->strings["next"] = "próximo";
+$a->strings["last"] = "último";
 $a->strings["Loading more entries..."] = "Baixando mais entradas...";
 $a->strings["The end"] = "Fim";
 $a->strings["No contacts"] = "Nenhum contato";
@@ -689,727 +728,20 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "publicação";
 $a->strings["Item filed"] = "O item foi arquivado";
-$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
-$a->strings["User creation error"] = "Erro na criação do usuário";
-$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contato não foi importado",
-       1 => "%d contatos não foram importados",
-);
-$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha.";
-$a->strings["System"] = "Sistema";
-$a->strings["Personal"] = "Pessoal";
-$a->strings["%s commented on %s's post"] = "%s comentou uma publicação de %s";
-$a->strings["%s created a new post"] = "%s criou uma nova publicação";
-$a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
-$a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
-$a->strings["%s is attending %s's event"] = "%s vai comparecer ao evento de %s";
-$a->strings["%s is not attending %s's event"] = "%s não vai comparecer ao evento de %s";
-$a->strings["%s may attend %s's event"] = "%s talvez compareça ao evento de %s";
-$a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
-$a->strings["Friend Suggestion"] = "Sugestão de amigo";
-$a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
-$a->strings["New Follower"] = "Novo acompanhante";
-$a->strings["Post successful."] = "Publicado com sucesso.";
-$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
-$a->strings["Access denied."] = "Acesso negado.";
-$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
-$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
-$a->strings["System Notifications"] = "Notificações de sistema";
-$a->strings["Remove term"] = "Remover o termo";
-$a->strings["Public access denied."] = "Acesso público negado.";
-$a->strings["Only logged in users are permitted to perform a search."] = "";
-$a->strings["Too Many Requests"] = "";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "";
-$a->strings["No results."] = "Nenhum resultado.";
-$a->strings["Items tagged with: %s"] = "";
-$a->strings["Results for: %s"] = "";
-$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
-$a->strings["running at web location"] = "sendo executado no endereço web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Relate ou acompanhe um erro no";
-$a->strings["the bugtracker at github"] = "GitHub";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
-$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
-$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
-$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
-$a->strings["Password Reset"] = "Redifinir a senha";
-$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
-$a->strings["Your new password is"] = "Sua nova senha é";
-$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
-$a->strings["click here to login"] = "clique aqui para entrar";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
-$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
-$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
-$a->strings["Reset"] = "Reiniciar";
-$a->strings["No profile"] = "Nenhum perfil";
-$a->strings["Help:"] = "Ajuda:";
-$a->strings["Not Found"] = "Não encontrada";
-$a->strings["Page not found."] = "Página não encontrada.";
-$a->strings["Invalid request."] = "Solicitação inválida.";
-$a->strings["Image exceeds size limit of %s"] = "";
-$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
-$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
-$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
-$a->strings["Visible to:"] = "Visível para:";
-$a->strings["Global Directory"] = "Diretório global";
-$a->strings["Find on this site"] = "Pesquisar neste site";
-$a->strings["Results for:"] = "";
-$a->strings["Site Directory"] = "Diretório do site";
-$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
-$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
-$a->strings["Import"] = "Importar";
-$a->strings["Move account"] = "Mover conta";
-$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
-$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."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora.";
-$a->strings["Account file"] = "Arquivo de conta";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
-$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
-$a->strings["Edit contact"] = "Editar o contato";
-$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
-$a->strings["is interested in:"] = "se interessa por:";
-$a->strings["Profile Match"] = "Correspondência de perfil";
-$a->strings["No matches"] = "Nenhuma correspondência";
-$a->strings["Export account"] = "Exportar conta";
-$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
-$a->strings["Export all"] = "Exportar tudo";
-$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)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
-$a->strings["Export personal data"] = "Exportar dados pessoais";
-$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
-$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
-$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
-$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
-$a->strings["%d message sent."] = array(
-       0 => "%d mensagem enviada.",
-       1 => "%d mensagens enviadas.",
-);
-$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
-$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
-$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
-$a->strings["Send invitations"] = "Enviar convites.";
-$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
-$a->strings["Your message:"] = "Sua mensagem:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
-$a->strings["Submit"] = "Enviar";
-$a->strings["Contact Photos"] = "Fotos dos contatos";
-$a->strings["Files"] = "Arquivos";
-$a->strings["System down for maintenance"] = "Sistema em manutenção";
-$a->strings["Permission denied"] = "Permissão negada";
-$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
-$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
-$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
-$a->strings["Visible To"] = "Visível para";
-$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
-$a->strings["No contacts."] = "Nenhum contato.";
-$a->strings["Tag removed"] = "A etiqueta foi removida";
-$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
-$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
-$a->strings["Remove"] = "Remover";
-$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
-$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
-$a->strings["{0} requested registration"] = "{0} solicitou registro";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
-$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
-$a->strings["File exceeds size limit of %s"] = "";
-$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
-$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
-$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
-$a->strings["View"] = "";
-$a->strings["Previous"] = "Anterior";
-$a->strings["Next"] = "Próximo";
-$a->strings["User not found"] = "";
-$a->strings["This calendar format is not supported"] = "Esse formato de agenda não é contemplado";
-$a->strings["No exportable data found"] = "";
-$a->strings["calendar"] = "agenda";
-$a->strings["Resubscribing to OStatus contacts"] = "";
-$a->strings["Error"] = "Erro";
-$a->strings["Done"] = "";
-$a->strings["Keep this window open until done."] = "";
-$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
-$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
-$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
-$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
-$a->strings["Potential Delegates"] = "Delegados Potenciais";
-$a->strings["Add"] = "Adicionar";
-$a->strings["No entries."] = "Sem entradas.";
-$a->strings["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!"] = "";
-$a->strings["- select -"] = "-selecione-";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
-$a->strings["Item not available."] = "O item não está disponível.";
-$a->strings["Item was not found."] = "O item não foi encontrado.";
-$a->strings["Submit Request"] = "Enviar solicitação";
-$a->strings["You already added this contact."] = "Você já adicionou esse contato.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
-$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
-$a->strings["Does %s know you?"] = "%s conhece você?";
-$a->strings["No"] = "Não";
-$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
-$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
-$a->strings["Profile URL"] = "URL do perfil";
-$a->strings["Contact added"] = "O contato foi adicionado";
-$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons.";
-$a->strings["Applications"] = "Aplicativos";
-$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
-$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
-$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
-$a->strings["Not Extended"] = "";
-$a->strings["Item has been removed."] = "O item foi removido.";
-$a->strings["No contacts in common."] = "Nenhum contato em comum.";
-$a->strings["Common Friends"] = "Amigos em Comum";
-$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
-$a->strings["New Member Checklist"] = "Dicas para os novos membros";
-$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
-$a->strings["Getting Started"] = "Do Início";
-$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
-$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."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
-$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
-$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."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
-$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
-$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
-$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."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
-$a->strings["Edit Your Profile"] = "Editar seu perfil";
-$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."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
-$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
-$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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
-$a->strings["Connecting"] = "Conexões";
-$a->strings["Importing Emails"] = "Importação de e-mails";
-$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
-$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
-$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."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
-$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
-$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 página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
-$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
-$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
-$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
-$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
-$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
-$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 friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
-$a->strings["Getting Help"] = "Obtendo ajuda";
-$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Consulte nossas páginas de <strong>ajuda</strong> para mais detalhes sobre as características e recursos do programa.";
-$a->strings["Remove My Account"] = "Remover minha conta";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
-$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
-$a->strings["Item not found"] = "O item não foi encontrado";
-$a->strings["Edit post"] = "Editar a publicação";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Aviso: Este grupo contém %s membro de uma rede insegura.",
-       1 => "Aviso: Este grupo contém %s membros de uma rede insegura.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública.";
-$a->strings["No such group"] = "Este grupo não existe";
-$a->strings["Group is empty"] = "O grupo está vazio";
-$a->strings["Group: %s"] = "Grupo: %s";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
-$a->strings["Invalid contact."] = "Contato inválido.";
-$a->strings["Commented Order"] = "Ordem dos comentários";
-$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
-$a->strings["Posted Order"] = "Ordem das publicações";
-$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
-$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
-$a->strings["New"] = "Nova";
-$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
-$a->strings["Shared Links"] = "Links compartilhados";
-$a->strings["Interesting Links"] = "Links interessantes";
-$a->strings["Starred"] = "Destacada";
-$a->strings["Favourite Posts"] = "Publicações favoritas";
-$a->strings["Not available."] = "Não disponível.";
-$a->strings["Time Conversion"] = "Conversão de tempo";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos.";
-$a->strings["UTC time: %s"] = "Hora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
-$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
-$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
-$a->strings["The post was created"] = "O texto foi criado";
-$a->strings["Group created."] = "O grupo foi criado.";
-$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
-$a->strings["Group not found."] = "O grupo não foi encontrado.";
-$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
-$a->strings["Save Group"] = "Salvar o grupo";
-$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
-$a->strings["Group removed."] = "O grupo foi removido.";
-$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
-$a->strings["Group Editor"] = "Editor de grupo";
-$a->strings["Members"] = "Membros";
-$a->strings["All Contacts"] = "Todos os contatos";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
-$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
-$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
-$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
-$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
-$a->strings["Message sent."] = "A mensagem foi enviada.";
-$a->strings["No recipient."] = "Nenhum destinatário.";
-$a->strings["Send Private Message"] = "Enviar mensagem privada";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
-$a->strings["To:"] = "Para:";
-$a->strings["Subject:"] = "Assunto:";
-$a->strings["link"] = "ligação";
-$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
-$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
-$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
-$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
-$a->strings["Source input: "] = "Entrada fonte:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Subscribing to OStatus contacts"] = "";
-$a->strings["No contact provided."] = "";
-$a->strings["Couldn't fetch information for contact."] = "";
-$a->strings["Couldn't fetch friends for contact."] = "";
-$a->strings["success"] = "sucesso";
-$a->strings["failed"] = "";
-$a->strings["ignored"] = "Ignorado";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
-$a->strings["Tips for New Members"] = "Dicas para novos membros";
-$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
-$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
-$a->strings["Message deleted."] = "A mensagem foi excluída.";
-$a->strings["Conversation removed."] = "A conversa foi removida.";
-$a->strings["No messages."] = "Nenhuma mensagem.";
-$a->strings["Message not available."] = "A mensagem não está disponível.";
-$a->strings["Delete message"] = "Excluir a mensagem";
-$a->strings["Delete conversation"] = "Excluir conversa";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
-$a->strings["Send Reply"] = "Enviar resposta";
-$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
-$a->strings["You and %s"] = "Você e %s";
-$a->strings["%s and You"] = "%s e você";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d mensagem",
-       1 => "%d mensagens",
-);
-$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
-$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
-$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
-$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
-$a->strings["Contact not found."] = "O contato não foi encontrado.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
-$a->strings["No mirroring"] = "Nenhum espelhamento";
-$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada";
-$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem";
-$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
-$a->strings["Refetch contact data"] = "";
-$a->strings["Remote Self"] = "Eu remoto";
-$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário.";
-$a->strings["Name"] = "Nome";
-$a->strings["Account Nickname"] = "Identificação da conta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
-$a->strings["Account URL"] = "URL da conta";
-$a->strings["Friend Request URL"] = "URL da requisição de amizade";
-$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
-$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
-$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
-$a->strings["New photo from this URL"] = "Nova imagem desta URL";
-$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
-$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
-       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
-);
-$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
-$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
-$a->strings["Profile unavailable."] = "O perfil não está disponível.";
-$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
-$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
-$a->strings["Invalid locator"] = "Localizador inválido";
-$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
-$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
-$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
-$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
-$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
-$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "A sua rede não permite inscrição a distância. Inscreva-se diretamente no seu sistema.";
-$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
-$a->strings["Confirm"] = "Confirmar";
-$a->strings["Hide this contact"] = "Ocultar este contato";
-$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
-$a->strings["This entry was edited"] = "Essa entrada foi editada";
-$a->strings["%d comment"] = array(
-       0 => "%d comentário",
-       1 => "%d comentários",
-);
-$a->strings["Private Message"] = "Mensagem privada";
-$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)";
-$a->strings["like"] = "gostei";
-$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)";
-$a->strings["dislike"] = "desgostar";
-$a->strings["Share this"] = "Compartilhar isso";
-$a->strings["share"] = "compartilhar";
-$a->strings["This is you"] = "Este(a) é você";
-$a->strings["Comment"] = "Comentar";
-$a->strings["Bold"] = "Negrito";
-$a->strings["Italic"] = "Itálico";
-$a->strings["Underline"] = "Sublinhado";
-$a->strings["Quote"] = "Citação";
-$a->strings["Code"] = "Código";
-$a->strings["Image"] = "Imagem";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Vídeo";
-$a->strings["Edit"] = "Editar";
-$a->strings["add star"] = "destacar";
-$a->strings["remove star"] = "remover o destaque";
-$a->strings["toggle star status"] = "ativa/desativa o destaque";
-$a->strings["starred"] = "marcado com estrela";
-$a->strings["add tag"] = "adicionar etiqueta";
-$a->strings["ignore thread"] = "ignorar tópico";
-$a->strings["unignore thread"] = "deixar de ignorar tópico";
-$a->strings["toggle ignore status"] = "alternar status ignorar";
-$a->strings["save to folder"] = "salvar na pasta";
-$a->strings["I will attend"] = "Eu vou";
-$a->strings["I will not attend"] = "Eu não vou";
-$a->strings["I might attend"] = "Eu estou pensando em ir";
-$a->strings["to"] = "para";
-$a->strings["Wall-to-Wall"] = "Mural-para-mural";
-$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
-$a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
-$a->strings["Site"] = "Site";
-$a->strings["Users"] = "Usuários";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Temas";
-$a->strings["Additional features"] = "Funcionalidades adicionais";
-$a->strings["DB updates"] = "Atualizações do BD";
-$a->strings["Inspect Queue"] = "";
-$a->strings["Federation Statistics"] = "";
-$a->strings["Logs"] = "Relatórios";
-$a->strings["View Logs"] = "";
-$a->strings["probe address"] = "prova endereço";
-$a->strings["check webfinger"] = "verifica webfinger";
-$a->strings["Plugin Features"] = "Recursos do plugin";
-$a->strings["diagnostics"] = "diagnóstico";
-$a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
-$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["Administration"] = "Administração";
-$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "";
-$a->strings["ID"] = "ID";
-$a->strings["Recipient Name"] = "";
-$a->strings["Recipient Profile"] = "";
-$a->strings["Created"] = "";
-$a->strings["Last Tried"] = "";
-$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["Normal Account"] = "Conta normal";
-$a->strings["Soapbox Account"] = "Conta de vitrine";
-$a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
-$a->strings["Automatic Friend Account"] = "Conta de amigo automático";
-$a->strings["Blog Account"] = "Conta de blog";
-$a->strings["Private Forum"] = "Fórum privado";
-$a->strings["Message queues"] = "Fila de mensagens";
-$a->strings["Summary"] = "Resumo";
-$a->strings["Registered users"] = "Usuários registrados";
-$a->strings["Pending registrations"] = "Registros pendentes";
-$a->strings["Version"] = "Versão";
-$a->strings["Active plugins"] = "Plugins ativos";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>";
-$a->strings["RINO2 needs mcrypt php extension to work."] = "";
-$a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
-$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
-$a->strings["No community page"] = "Sem página de comunidade";
-$a->strings["Public postings from users of this site"] = "Textos públicos de usuários deste sítio";
-$a->strings["Global community page"] = "Página global da comunidade";
-$a->strings["Never"] = "Nunca";
-$a->strings["At post arrival"] = "Na chegada da publicação";
-$a->strings["Disabled"] = "Desabilitado";
-$a->strings["Users, Global Contacts"] = "Usuários, Contatos Globais";
-$a->strings["Users, Global Contacts/fallback"] = "Usuários, Contatos Globais/plano B";
-$a->strings["One month"] = "Um mês";
-$a->strings["Three months"] = "Três meses";
-$a->strings["Half a year"] = "Seis meses";
-$a->strings["One year"] = "Um ano";
-$a->strings["Multi user instance"] = "Instância multi usuário";
-$a->strings["Closed"] = "Fechado";
-$a->strings["Requires approval"] = "Requer aprovação";
-$a->strings["Open"] = "Aberto";
-$a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma política de SSL, os links irão rastrear o estado SSL da página";
-$a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
-$a->strings["Save Settings"] = "Salvar configurações";
-$a->strings["Registration"] = "Registro";
-$a->strings["File upload"] = "Envio de arquivo";
-$a->strings["Policies"] = "Políticas";
-$a->strings["Auto Discovered Contact Directory"] = "";
-$a->strings["Performance"] = "Performance";
-$a->strings["Worker"] = "";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível.";
-$a->strings["Site name"] = "Nome do site";
-$a->strings["Host name"] = "Nome do host";
-$a->strings["Sender Email"] = "enviador de email";
-$a->strings["The email address your server shall use to send notification emails from."] = "";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "ícone de atalho";
-$a->strings["Link to an icon that will be used for browsers."] = "";
-$a->strings["Touch icon"] = "ícone de toque";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
-$a->strings["Additional Info"] = "Informação adicional";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
-$a->strings["System language"] = "Idioma do sistema";
-$a->strings["System theme"] = "Tema do sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>";
-$a->strings["Mobile system theme"] = "Tema do sistema para dispositivos móveis";
-$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis";
-$a->strings["SSL link policy"] = "Política de link SSL";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se os links gerados devem ser forçados a utilizar SSL";
-$a->strings["Force SSL"] = "Forçar SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos.";
-$a->strings["Old style 'Share'"] = "Estilo antigo do 'Compartilhar' ";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Desativa o elemento bbcode 'compartilhar' para repetir ítens.";
-$a->strings["Hide help entry from navigation menu"] = "Oculta a entrada 'Ajuda' do menu de navegação";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente.";
-$a->strings["Single user instance"] = "Instância de usuário único";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Faça essa instância multiusuário ou usuário único para o usuário em questão";
-$a->strings["Maximum image size"] = "Tamanho máximo da imagem";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites";
-$a->strings["Maximum image length"] = "Tamanho máximo da imagem";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites.";
-$a->strings["JPEG image quality"] = "Qualidade da imagem JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade.";
-$a->strings["Register policy"] = "Política de registro";
-$a->strings["Maximum Daily Registrations"] = "Registros Diários Máximos";
-$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."] = "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito.";
-$a->strings["Register text"] = "Texto de registro";
-$a->strings["Will be displayed prominently on the registration page."] = "Será exibido com destaque na página de registro.";
-$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo.";
-$a->strings["Allowed friend domains"] = "Domínios de amigos permitidos";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio.";
-$a->strings["Allowed email domains"] = "Domínios de e-mail permitidos";
-$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"] = "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio";
-$a->strings["Block public"] = "Bloquear acesso público";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada.";
-$a->strings["Force publish"] = "Forçar a listagem";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis desse site a serem listados no diretório do site.";
-$a->strings["Global directory URL"] = "";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "Habilita itens aninhados";
-$a->strings["Allow infinite level threading for items on this site."] = "Habilita nível infinito de aninhamento (threading) para itens.";
-$a->strings["Private posts by default for new users"] = "Publicações privadas por padrão para novos usuários";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas.";
-$a->strings["Don't include post content in email notifications"] = "Não incluir o conteúdo da postagem nas notificações de email";
-$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."] = "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita acesso público a addons listados no menu de aplicativos.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente.";
-$a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações";
-$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."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo.";
-$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem 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."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários";
-$a->strings["Block multiple registrations"] = "Bloquear registros repetidos";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas.";
-$a->strings["OpenID support"] = "Suporte ao OpenID";
-$a->strings["OpenID support for registration and logins."] = "Suporte ao OpenID para registros e autenticações.";
-$a->strings["Fullname check"] = "Verificar nome completo";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam";
-$a->strings["UTF-8 Regular expressions"] = "Expressões regulares UTF-8";
-$a->strings["Use PHP UTF8 regular expressions"] = "Use expressões regulares do PHP em UTF8";
-$a->strings["Community Page Style"] = "Estilo da página de comunidade";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor.";
-$a->strings["Posts per user on community page"] = "Textos por usuário na página da comunidade";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')";
-$a->strings["Enable OStatus support"] = "Habilitar suporte ao OStatus";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados.";
-$a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus ";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada.";
-$a->strings["Only import OStatus threads from our contacts"] = "";
-$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."] = "";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
-$a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Fornece compatibilidade nativa com a rede Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Permitir somente contatos Friendica";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados";
-$a->strings["Verify SSL"] = "Verificar 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."] = "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados.";
-$a->strings["Proxy user"] = "Usuário do proxy";
-$a->strings["Proxy URL"] = "URL do proxy";
-$a->strings["Network timeout"] = "Limite de tempo da rede";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Defina como 0 para ilimitado (não recomendado).";
-$a->strings["Delivery interval"] = "Intervalo de envio";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados.";
-$a->strings["Poll interval"] = "Intervalo da busca (polling)";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega.";
-$a->strings["Maximum Load Average"] = "Média de Carga Máxima";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50.";
-$a->strings["Maximum Load Average (Frontend)"] = "";
-$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
-$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"] = "Checagem periódica dos contatos globais";
-$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'."] = "Periodicamente buscar contatos em outros servidores. Você pode entre 'Usuários': os usuários do sistema remoto; e 'Contatos Globais': os contatos ativos conhecidos pelo sistema. O plano B é destinado a servidores rodando Redmatrix ou Friendica, se mais antigos, para os quais os contatos globais não estavam disponíveis. O plano B aumenta a carga do servidor, por isso a opção recomendada é 'Usuários, Contatos Globais'.";
-$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"] = "";
-$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"] = "";
-$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["Use MySQL full text engine"] = "Use o engine de texto completo (full text) do MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres.";
-$a->strings["Suppress Language"] = "Retira idioma";
-$a->strings["Suppress language information in meta information about a posting."] = "Retira informações sobre idioma nas meta informações sobre uma publicação.";
-$a->strings["Suppress Tags"] = "Suprime etiquetas";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "suprime mostrar uma lista de hashtags no final de cada texto.";
-$a->strings["Path to item cache"] = "Diretório do cache de item";
-$a->strings["The item caches buffers generated bbcode and external images."] = "";
-$a->strings["Cache duration in seconds"] = "Duração do cache em segundos";
-$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."] = "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1.";
-$a->strings["Maximum numbers of comments per post"] = "O número máximo de comentários por post";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100.";
-$a->strings["Path for lock file"] = "Diretório do arquivo de trava";
-$a->strings["The lock file is used to avoid multiple pollers at one time. Only define a folder here."] = "";
-$a->strings["Temp path"] = "Diretório Temp";
-$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"] = "Diretório base para instalação";
-$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"] = "Disabilitar proxy de imagem";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
-$a->strings["Enable old style pager"] = "Habilita estilo antigo de paginação";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "O estilo antigo de paginação tem número de páginas mas dimunui muito a velocidade das páginas.";
-$a->strings["Only search in tags"] = "Somente pesquisa nas estiquetas";
-$a->strings["On large systems the text search can slow down the system extremely."] = "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento.";
-$a->strings["New base url"] = "Nova URL base";
-$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
-$a->strings["RINO Encryption"] = "";
-$a->strings["Encryption layer between nodes."] = "";
-$a->strings["Embedly API key"] = "";
-$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
-$a->strings["Enable 'worker' background processing"] = "";
-$a->strings["The worker background processing limits the number of parallel background jobs to a maximum number and respects the system load."] = "";
-$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 poller calls in your crontab."] = "";
-$a->strings["Enable 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["Update has been marked successful"] = "A atualização foi marcada como bem sucedida";
-$a->strings["Database structure update %s was successfully applied."] = "A atualização da estrutura do banco de dados %s foi aplicada com sucesso.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s";
-$a->strings["Executing %s failed with error: %s"] = "A execução de %s falhou com erro: %s";
-$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Não havia nenhuma função de atualização %s adicional que precisava ser chamada.";
-$a->strings["No failed updates."] = "Nenhuma atualização com falha.";
-$a->strings["Check database structure"] = "Verifique a estrutura do banco de dados";
-$a->strings["Failed Updates"] = "Atualizações com falha";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
-$a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
-$a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tCaro %1\$s,\n\t\t\t\to administrador de %2\$s criou uma conta para você.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1\$s\n\t\t\tNome de Login:\t\t%2\$s\n\t\t\tSenha:\t\t%3\$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4\$s.";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s usuário bloqueado/desbloqueado",
-       1 => "%s usuários bloqueados/desbloqueados",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s usuário excluído",
-       1 => "%s usuários excluídos",
-);
-$a->strings["User '%s' deleted"] = "O usuário '%s' foi excluído";
-$a->strings["User '%s' unblocked"] = "O usuário '%s' foi desbloqueado";
-$a->strings["User '%s' blocked"] = "O usuário '%s' foi bloqueado";
-$a->strings["Register date"] = "Data de registro";
-$a->strings["Last login"] = "Última entrada";
-$a->strings["Last item"] = "Último item";
-$a->strings["Account"] = "Conta";
-$a->strings["Add User"] = "Adicionar usuário";
-$a->strings["select all"] = "selecionar todos";
-$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
-$a->strings["User waiting for permanent deletion"] = "Usuário aguardando por fim permanente da conta.";
-$a->strings["Request date"] = "Solicitar data";
-$a->strings["No registrations."] = "Nenhum registro.";
-$a->strings["Approve"] = "Aprovar";
-$a->strings["Deny"] = "Negar";
-$a->strings["Block"] = "Bloquear";
-$a->strings["Unblock"] = "Desbloquear";
-$a->strings["Site admin"] = "Administração do site";
-$a->strings["Account expired"] = "Conta expirou";
-$a->strings["New User"] = "Novo usuário";
-$a->strings["Deleted since"] = "Apagado desde";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?";
-$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?"] = "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?";
-$a->strings["Name of the new user."] = "Nome do novo usuário.";
-$a->strings["Nickname"] = "Apelido";
-$a->strings["Nickname of the new user."] = "Apelido para o novo usuário.";
-$a->strings["Email address of the new user."] = "Endereço de e-mail do novo usuário.";
-$a->strings["Plugin %s disabled."] = "O plugin %s foi desabilitado.";
-$a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado.";
-$a->strings["Disable"] = "Desabilitar";
-$a->strings["Enable"] = "Habilitar";
-$a->strings["Toggle"] = "Alternar";
-$a->strings["Author: "] = "Autor: ";
-$a->strings["Maintainer: "] = "Mantenedor: ";
-$a->strings["Reload active plugins"] = "";
-$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
-$a->strings["No themes found."] = "Nenhum tema encontrado";
-$a->strings["Screenshot"] = "Captura de tela";
-$a->strings["Reload active themes"] = "";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
-$a->strings["[Experimental]"] = "[Esperimental]";
-$a->strings["[Unsupported]"] = "[Não suportado]";
-$a->strings["Log settings updated."] = "As configurações de relatórios foram atualizadas.";
-$a->strings["Clear"] = "Limpar";
-$a->strings["Enable Debugging"] = "Habilitar depuração";
-$a->strings["Log file"] = "Arquivo do relatório";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica.";
-$a->strings["Log level"] = "Nível do relatório";
-$a->strings["PHP logging"] = "";
-$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["Off"] = "Off";
-$a->strings["On"] = "On";
-$a->strings["Lock feature %s"] = "Bloquear funcionalidade %s";
-$a->strings["Manage Additional Features"] = "Gerenciar funcionalidades adicionais";
+$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
+$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
+$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
+$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
+$a->strings["No"] = "Não";
+$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons.";
+$a->strings["Applications"] = "Aplicativos";
+$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
+$a->strings["Item not available."] = "O item não está disponível.";
+$a->strings["Item was not found."] = "O item não foi encontrado.";
+$a->strings["The post was created"] = "O texto foi criado";
+$a->strings["No contacts in common."] = "Nenhum contato em comum.";
+$a->strings["Common Friends"] = "Amigos em Comum";
 $a->strings["%d contact edited."] = array(
        0 => "",
        1 => "",
@@ -1417,6 +749,7 @@ $a->strings["%d contact edited."] = array(
 $a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
 $a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
 $a->strings["Contact updated."] = "O contato foi atualizado.";
+$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
 $a->strings["Contact has been blocked"] = "O contato foi bloqueado";
 $a->strings["Contact has been unblocked"] = "O contato foi desbloqueado";
 $a->strings["Contact has been ignored"] = "O contato foi ignorado";
@@ -1430,19 +763,23 @@ $a->strings["You are mutual friends with %s"] = "Você tem uma amizade mútua co
 $a->strings["You are sharing with %s"] = "Você está compartilhando com %s";
 $a->strings["%s is sharing with you"] = "%s está compartilhando com você";
 $a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato.";
+$a->strings["Never"] = "Nunca";
 $a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)";
 $a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)";
 $a->strings["Suggest friends"] = "Sugerir amigos";
 $a->strings["Network type: %s"] = "Tipo de rede: %s";
 $a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!";
 $a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
+$a->strings["Disabled"] = "Desabilitado";
 $a->strings["Fetch information"] = "Buscar informações";
 $a->strings["Fetch information and keywords"] = "Buscar informação e palavras-chave";
 $a->strings["Contact"] = "";
+$a->strings["Submit"] = "Enviar";
 $a->strings["Profile Visibility"] = "Visibilidade do perfil";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
 $a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
 $a->strings["Edit contact notes"] = "Editar as anotações do contato";
+$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
 $a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
 $a->strings["Ignore contact"] = "Ignorar o contato";
 $a->strings["Repair URL settings"] = "Reparar as definições de URL";
@@ -1450,6 +787,8 @@ $a->strings["View conversations"] = "Ver as conversas";
 $a->strings["Last update:"] = "Última atualização:";
 $a->strings["Update public posts"] = "Atualizar publicações públicas";
 $a->strings["Update now"] = "Atualizar agora";
+$a->strings["Unblock"] = "Desbloquear";
+$a->strings["Block"] = "Bloquear";
 $a->strings["Unignore"] = "Deixar de ignorar";
 $a->strings["Ignore"] = "Ignorar";
 $a->strings["Currently blocked"] = "Atualmente bloqueado";
@@ -1461,10 +800,12 @@ $a->strings["Notification for new posts"] = "Notificações para novas publicaç
 $a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
 $a->strings["Blacklisted keywords"] = "Palavras-chave na Lista Negra";
 $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado.";
+$a->strings["Profile URL"] = "URL do perfil";
 $a->strings["Actions"] = "";
 $a->strings["Contact Settings"] = "";
 $a->strings["Suggestions"] = "Sugestões";
 $a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
+$a->strings["All Contacts"] = "Todos os contatos";
 $a->strings["Show all contacts"] = "Exibe todos os contatos";
 $a->strings["Unblocked"] = "Desbloquear";
 $a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados";
@@ -1477,6 +818,7 @@ $a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados"
 $a->strings["Hidden"] = "Ocultos";
 $a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
 $a->strings["Search your contacts"] = "Pesquisar seus contatos";
+$a->strings["Results for: %s"] = "";
 $a->strings["Update"] = "Atualizar";
 $a->strings["Archive"] = "Arquivar";
 $a->strings["Unarchive"] = "Desarquivar";
@@ -1487,55 +829,205 @@ $a->strings["Advanced Contact Settings"] = "Configurações avançadas do contat
 $a->strings["Mutual Friendship"] = "Amizade mútua";
 $a->strings["is a fan of yours"] = "é um fã seu";
 $a->strings["you are a fan of"] = "você é um fã de";
+$a->strings["Edit contact"] = "Editar o contato";
 $a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
 $a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
 $a->strings["Toggle Archive status"] = "Alternar o status de arquivamento";
 $a->strings["Delete contact"] = "Excluir o contato";
-$a->strings["Profile not found."] = "O perfil não foi encontrado.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
-$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
-$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
-$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
-$a->strings["Remote site reported: "] = "O site remoto relatou: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
-$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
-$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
-$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
-$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
-$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
-$a->strings["People Search - %s"] = "";
-$a->strings["Forum Search - %s"] = "";
-$a->strings["Event can not end before it has started."] = "O evento não pode terminar antes de ter começado.";
-$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
-$a->strings["Create New Event"] = "Criar um novo evento";
-$a->strings["Event details"] = "Detalhes do evento";
-$a->strings["Starting date and Title are required."] = "";
-$a->strings["Event Starts:"] = "Início do evento:";
-$a->strings["Required"] = "Obrigatório";
-$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
-$a->strings["Event Finishes:"] = "Término do evento:";
-$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
-$a->strings["Description:"] = "Descrição:";
-$a->strings["Title:"] = "Título:";
-$a->strings["Share this event"] = "Compartilhar este evento";
+$a->strings["No such group"] = "Este grupo não existe";
+$a->strings["Group is empty"] = "O grupo está vazio";
+$a->strings["Group: %s"] = "Grupo: %s";
+$a->strings["This entry was edited"] = "Essa entrada foi editada";
+$a->strings["%d comment"] = array(
+       0 => "%d comentário",
+       1 => "%d comentários",
+);
+$a->strings["Private Message"] = "Mensagem privada";
+$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)";
+$a->strings["like"] = "gostei";
+$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)";
+$a->strings["dislike"] = "desgostar";
+$a->strings["Share this"] = "Compartilhar isso";
+$a->strings["share"] = "compartilhar";
+$a->strings["This is you"] = "Este(a) é você";
+$a->strings["Comment"] = "Comentar";
+$a->strings["Bold"] = "Negrito";
+$a->strings["Italic"] = "Itálico";
+$a->strings["Underline"] = "Sublinhado";
+$a->strings["Quote"] = "Citação";
+$a->strings["Code"] = "Código";
+$a->strings["Image"] = "Imagem";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Vídeo";
+$a->strings["Edit"] = "Editar";
+$a->strings["add star"] = "destacar";
+$a->strings["remove star"] = "remover o destaque";
+$a->strings["toggle star status"] = "ativa/desativa o destaque";
+$a->strings["starred"] = "marcado com estrela";
+$a->strings["add tag"] = "adicionar etiqueta";
+$a->strings["ignore thread"] = "ignorar tópico";
+$a->strings["unignore thread"] = "deixar de ignorar tópico";
+$a->strings["toggle ignore status"] = "alternar status ignorar";
+$a->strings["ignored"] = "Ignorado";
+$a->strings["save to folder"] = "salvar na pasta";
+$a->strings["I will attend"] = "Eu vou";
+$a->strings["I will not attend"] = "Eu não vou";
+$a->strings["I might attend"] = "Eu estou pensando em ir";
+$a->strings["to"] = "para";
+$a->strings["Wall-to-Wall"] = "Mural-para-mural";
+$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
+$a->strings["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!"] = "";
+$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
+$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
+$a->strings["Contact not found."] = "O contato não foi encontrado.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
+$a->strings["No mirroring"] = "Nenhum espelhamento";
+$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada";
+$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem";
+$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
+$a->strings["Refetch contact data"] = "";
+$a->strings["Remote Self"] = "Eu remoto";
+$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como eu remoto: o Friendica replicará novas publicações desse usuário.";
+$a->strings["Name"] = "Nome";
+$a->strings["Account Nickname"] = "Identificação da conta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
+$a->strings["Account URL"] = "URL da conta";
+$a->strings["Friend Request URL"] = "URL da requisição de amizade";
+$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
+$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
+$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
+$a->strings["New photo from this URL"] = "Nova imagem desta URL";
+$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
+$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."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
+$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
+$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
+$a->strings["Potential Delegates"] = "Delegados Potenciais";
+$a->strings["Remove"] = "Remover";
+$a->strings["Add"] = "Adicionar";
+$a->strings["No entries."] = "Sem entradas.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
+$a->strings["Public access denied."] = "Acesso público negado.";
+$a->strings["Global Directory"] = "Diretório global";
+$a->strings["Find on this site"] = "Pesquisar neste site";
+$a->strings["Results for:"] = "";
+$a->strings["Site Directory"] = "Diretório do site";
+$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
+$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
+$a->strings["Item has been removed."] = "O item foi removido.";
+$a->strings["Item not found"] = "O item não foi encontrado";
+$a->strings["Edit post"] = "Editar a publicação";
+$a->strings["Files"] = "Arquivos";
+$a->strings["Not Found"] = "Não encontrada";
+$a->strings["- select -"] = "-selecione-";
 $a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
 $a->strings["Suggest Friends"] = "Sugerir amigos";
 $a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
-$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
-$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
-$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica.";
-$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
-$a->strings["%s posted an update."] = "%s publicou uma atualização.";
+$a->strings["No profile"] = "Nenhum perfil";
+$a->strings["Help:"] = "Ajuda:";
+$a->strings["Page not found."] = "Página não encontrada.";
+$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
+$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
+$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
+$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
+$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
+$a->strings["%d message sent."] = array(
+       0 => "%d mensagem enviada.",
+       1 => "%d mensagens enviadas.",
+);
+$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
+$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."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
+$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."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
+$a->strings["Send invitations"] = "Enviar convites.";
+$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
+$a->strings["Your message:"] = "Sua mensagem:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
+$a->strings["Time Conversion"] = "Conversão de tempo";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica oferece esse serviço para compartilhar eventos com outras redes e amigos em fusos horários desconhecidos.";
+$a->strings["UTC time: %s"] = "Hora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
+$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
+$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
+$a->strings["Visible to:"] = "Visível para:";
+$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
+$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
+$a->strings["Password Reset"] = "Redifinir a senha";
+$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
+$a->strings["Your new password is"] = "Sua nova senha é";
+$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
+$a->strings["click here to login"] = "clique aqui para entrar";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
+$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
+$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
+$a->strings["Reset"] = "Reiniciar";
+$a->strings["System down for maintenance"] = "Sistema em manutenção";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
+$a->strings["is interested in:"] = "se interessa por:";
+$a->strings["Profile Match"] = "Correspondência de perfil";
+$a->strings["No matches"] = "Nenhuma correspondência";
 $a->strings["Mood"] = "Humor";
 $a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
+$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
+$a->strings["New Member Checklist"] = "Dicas para os novos membros";
+$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."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
+$a->strings["Getting Started"] = "Do Início";
+$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
+$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."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
+$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
+$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."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
+$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."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
+$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
+$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."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
+$a->strings["Edit Your Profile"] = "Editar seu perfil";
+$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."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
+$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
+$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."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
+$a->strings["Connecting"] = "Conexões";
+$a->strings["Importing Emails"] = "Importação de e-mails";
+$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"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
+$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
+$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."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
+$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
+$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 página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
+$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
+$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."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
+$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
+$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."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
+$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
+$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 friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
+$a->strings["Getting Help"] = "Obtendo ajuda";
+$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Consulte nossas páginas de <strong>ajuda</strong> para mais detalhes sobre as características e recursos do programa.";
+$a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
+$a->strings["No more system notifications."] = "Não fazer notificações de sistema.";
+$a->strings["System Notifications"] = "Notificações de sistema";
+$a->strings["Post successful."] = "Publicado com sucesso.";
+$a->strings["Subscribing to OStatus contacts"] = "";
+$a->strings["No contact provided."] = "";
+$a->strings["Couldn't fetch information for contact."] = "";
+$a->strings["Couldn't fetch friends for contact."] = "";
+$a->strings["Done"] = "";
+$a->strings["success"] = "sucesso";
+$a->strings["failed"] = "";
+$a->strings["Keep this window open until done."] = "";
+$a->strings["Not Extended"] = "";
 $a->strings["Poke/Prod"] = "Cutucar/Incitar";
 $a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
 $a->strings["Recipient"] = "Destinatário";
@@ -1545,6 +1037,8 @@ $a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada
 $a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
 $a->strings["Unable to process image"] = "Não foi possível processar a imagem";
+$a->strings["Image exceeds size limit of %s"] = "";
+$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
 $a->strings["Upload File:"] = "Enviar arquivo:";
 $a->strings["Select a profile:"] = "Selecione um perfil:";
 $a->strings["Upload"] = "Enviar";
@@ -1555,6 +1049,270 @@ $a->strings["Crop Image"] = "Cortar a imagem";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
 $a->strings["Done Editing"] = "Encerrar a edição";
 $a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
+$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
+$a->strings["Permission denied"] = "Permissão negada";
+$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
+$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
+$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
+$a->strings["Visible To"] = "Visível para";
+$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
+$a->strings["Account approved."] = "A conta foi aprovada.";
+$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
+$a->strings["Please login."] = "Por favor, autentique-se.";
+$a->strings["Remove My Account"] = "Remover minha conta";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
+$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
+$a->strings["Resubscribing to OStatus contacts"] = "";
+$a->strings["Error"] = "Erro";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["Tag removed"] = "A etiqueta foi removida";
+$a->strings["Remove Item Tag"] = "Remover a etiqueta do item";
+$a->strings["Select a tag to remove: "] = "Selecione uma etiqueta para remover: ";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
+$a->strings["Import"] = "Importar";
+$a->strings["Move account"] = "Mover conta";
+$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
+$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."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Esta funcionalidade está em fase de testes. Não importamos contatos da rede OStatuss (GNU Social/Statusnet) nem da Diaspora.";
+$a->strings["Account file"] = "Arquivo de conta";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
+$a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
+$a->strings["No contacts."] = "Nenhum contato.";
+$a->strings["Access denied."] = "Acesso negado.";
+$a->strings["Invalid request."] = "Solicitação inválida.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
+$a->strings["File exceeds size limit of %s"] = "";
+$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
+$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
+$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
+$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
+$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
+$a->strings["Message sent."] = "A mensagem foi enviada.";
+$a->strings["No recipient."] = "Nenhum destinatário.";
+$a->strings["Send Private Message"] = "Enviar mensagem privada";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
+$a->strings["To:"] = "Para:";
+$a->strings["Subject:"] = "Assunto:";
+$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
+$a->strings["Source input: "] = "Entrada fonte:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["View"] = "";
+$a->strings["Previous"] = "Anterior";
+$a->strings["Next"] = "Próximo";
+$a->strings["list"] = "";
+$a->strings["User not found"] = "";
+$a->strings["This calendar format is not supported"] = "Esse formato de agenda não é contemplado";
+$a->strings["No exportable data found"] = "";
+$a->strings["calendar"] = "agenda";
+$a->strings["Not available."] = "Não disponível.";
+$a->strings["No results."] = "Nenhum resultado.";
+$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
+$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
+$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
+$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
+$a->strings["Remote site reported: "] = "O site remoto relatou: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
+$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
+$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
+$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
+$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
+$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
+$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
+$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
+       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
+);
+$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
+$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
+$a->strings["Profile unavailable."] = "O perfil não está disponível.";
+$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
+$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
+$a->strings["Invalid locator"] = "Localizador inválido";
+$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
+$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
+$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
+$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
+$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "A sua rede não permite inscrição a distância. Inscreva-se diretamente no seu sistema.";
+$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
+$a->strings["Confirm"] = "Confirmar";
+$a->strings["Hide this contact"] = "Ocultar este contato";
+$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
+$a->strings["Does %s know you?"] = "%s conhece você?";
+$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora.";
+$a->strings["Your Identity Address:"] = "Seu endereço de identificação:";
+$a->strings["Submit Request"] = "Enviar solicitação";
+$a->strings["People Search - %s"] = "";
+$a->strings["Forum Search - %s"] = "";
+$a->strings["Event can not end before it has started."] = "O evento não pode terminar antes de ter começado.";
+$a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
+$a->strings["Create New Event"] = "Criar um novo evento";
+$a->strings["Event details"] = "Detalhes do evento";
+$a->strings["Starting date and Title are required."] = "";
+$a->strings["Event Starts:"] = "Início do evento:";
+$a->strings["Required"] = "Obrigatório";
+$a->strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante";
+$a->strings["Event Finishes:"] = "Término do evento:";
+$a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
+$a->strings["Description:"] = "Descrição:";
+$a->strings["Title:"] = "Título:";
+$a->strings["Share this event"] = "Compartilhar este evento";
+$a->strings["Failed to remove event"] = "";
+$a->strings["Event removed"] = "";
+$a->strings["You already added this contact."] = "Você já adicionou esse contato.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "";
+$a->strings["Contact added"] = "O contato foi adicionado";
+$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
+$a->strings["running at web location"] = "sendo executado no endereço web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Relate ou acompanhe um erro no";
+$a->strings["the bugtracker at github"] = "GitHub";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
+$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
+$a->strings["On this server the following remote servers are blocked."] = "";
+$a->strings["Reason for the block"] = "";
+$a->strings["Group created."] = "O grupo foi criado.";
+$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
+$a->strings["Group not found."] = "O grupo não foi encontrado.";
+$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
+$a->strings["Save Group"] = "Salvar o grupo";
+$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
+$a->strings["Group removed."] = "O grupo foi removido.";
+$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
+$a->strings["Delete Group"] = "";
+$a->strings["Group Editor"] = "Editor de grupo";
+$a->strings["Edit Group Name"] = "";
+$a->strings["Members"] = "Membros";
+$a->strings["Remove Contact"] = "";
+$a->strings["Add Contact"] = "";
+$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
+$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
+$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
+$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
+$a->strings["Message deleted."] = "A mensagem foi excluída.";
+$a->strings["Conversation removed."] = "A conversa foi removida.";
+$a->strings["No messages."] = "Nenhuma mensagem.";
+$a->strings["Message not available."] = "A mensagem não está disponível.";
+$a->strings["Delete message"] = "Excluir a mensagem";
+$a->strings["Delete conversation"] = "Excluir conversa";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
+$a->strings["Send Reply"] = "Enviar resposta";
+$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
+$a->strings["You and %s"] = "Você e %s";
+$a->strings["%s and You"] = "%s e você";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d mensagem",
+       1 => "%d mensagens",
+);
+$a->strings["Remove term"] = "Remover o termo";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "",
+       1 => "",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
+$a->strings["Invalid contact."] = "Contato inválido.";
+$a->strings["Commented Order"] = "Ordem dos comentários";
+$a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
+$a->strings["Posted Order"] = "Ordem das publicações";
+$a->strings["Sort by Post Date"] = "Ordenar pela data de publicação";
+$a->strings["Posts that mention or involve you"] = "Publicações que mencionem ou envolvam você";
+$a->strings["New"] = "Nova";
+$a->strings["Activity Stream - by date"] = "Fluxo de atividades - por data";
+$a->strings["Shared Links"] = "Links compartilhados";
+$a->strings["Interesting Links"] = "Links interessantes";
+$a->strings["Starred"] = "Destacada";
+$a->strings["Favourite Posts"] = "Publicações favoritas";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
+$a->strings["Recent Photos"] = "Fotos recentes";
+$a->strings["Upload New Photos"] = "Enviar novas fotos";
+$a->strings["everybody"] = "todos";
+$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
+$a->strings["Album not found."] = "O álbum não foi encontrado.";
+$a->strings["Delete Album"] = "Excluir o álbum";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
+$a->strings["Delete Photo"] = "Excluir a foto";
+$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
+$a->strings["a photo"] = "uma foto";
+$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
+$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
+$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
+$a->strings["Upload Photos"] = "Enviar fotos";
+$a->strings["New album name: "] = "Nome do novo álbum: ";
+$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
+$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
+$a->strings["Show to Groups"] = "Mostre para Grupos";
+$a->strings["Show to Contacts"] = "Mostre para Contatos";
+$a->strings["Private Photo"] = "Foto Privada";
+$a->strings["Public Photo"] = "Foto Pública";
+$a->strings["Edit Album"] = "Editar o álbum";
+$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
+$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
+$a->strings["View Photo"] = "Ver a foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
+$a->strings["Photo not available"] = "A foto não está disponível";
+$a->strings["View photo"] = "Ver a imagem";
+$a->strings["Edit photo"] = "Editar a foto";
+$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
+$a->strings["View Full Size"] = "Ver no tamanho real";
+$a->strings["Tags: "] = "Etiquetas: ";
+$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
+$a->strings["New album name"] = "Novo nome para o álbum";
+$a->strings["Caption"] = "Legenda";
+$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
+$a->strings["Do not rotate"] = "";
+$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
+$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
+$a->strings["Private photo"] = "Foto privada";
+$a->strings["Public photo"] = "Foto pública";
+$a->strings["Map"] = "";
+$a->strings["View Album"] = "Ver álbum";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
+$a->strings["Tips for New Members"] = "Dicas para novos membros";
 $a->strings["Profile deleted."] = "O perfil foi excluído.";
 $a->strings["Profile-"] = "Perfil-";
 $a->strings["New profile created."] = "O novo perfil foi criado.";
@@ -1567,6 +1325,7 @@ $a->strings["Religion"] = "Religião";
 $a->strings["Political Views"] = "Posicionamento político";
 $a->strings["Gender"] = "Gênero";
 $a->strings["Sexual Preference"] = "Preferência sexual";
+$a->strings["XMPP"] = "";
 $a->strings["Homepage"] = "Página Principal";
 $a->strings["Interests"] = "Interesses";
 $a->strings["Address"] = "Endereço";
@@ -1609,6 +1368,8 @@ $a->strings["Who: (if applicable)"] = "Quem: (se pertinente)";
 $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
 $a->strings["Since [date]:"] = "Desde [data]:";
 $a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
+$a->strings["XMPP (Jabber) address:"] = "";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
 $a->strings["Homepage URL:"] = "Endereço do site web:";
 $a->strings["Religious Views:"] = "Orientação religiosa:";
 $a->strings["Public Keywords:"] = "Palavras-chave públicas:";
@@ -1634,8 +1395,11 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your
 $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
 $a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
 $a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
+$a->strings["Note for the admin"] = "";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "";
 $a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
 $a->strings["Your invitation ID: "] = "A ID do seu convite: ";
+$a->strings["Registration"] = "Registro";
 $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "";
 $a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
 $a->strings["New Password:"] = "Nova senha:";
@@ -1644,13 +1408,17 @@ $a->strings["Confirm:"] = "Confirme:";
 $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
 $a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
 $a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
-$a->strings["Account approved."] = "A conta foi aprovada.";
-$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
-$a->strings["Please login."] = "Por favor, autentique-se.";
-$a->strings["everybody"] = "todos";
+$a->strings["Only logged in users are permitted to perform a search."] = "";
+$a->strings["Too Many Requests"] = "";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "";
+$a->strings["Items tagged with: %s"] = "";
+$a->strings["Account"] = "Conta";
+$a->strings["Additional features"] = "Funcionalidades adicionais";
 $a->strings["Display"] = "Tela";
 $a->strings["Social Networks"] = "Redes Sociais";
+$a->strings["Plugins"] = "Plugins";
 $a->strings["Connected apps"] = "Aplicações conectadas";
+$a->strings["Export personal data"] = "Exportar dados pessoais";
 $a->strings["Remove account"] = "Remover a conta";
 $a->strings["Missing some important data!"] = "Está faltando algum dado importante!";
 $a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
@@ -1670,6 +1438,7 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
 $a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão.";
 $a->strings["Settings updated."] = "As configurações foram atualizadas.";
 $a->strings["Add application"] = "Adicionar aplicação";
+$a->strings["Save Settings"] = "Salvar configurações";
 $a->strings["Consumer Key"] = "Chave do consumidor";
 $a->strings["Consumer Secret"] = "Segredo do consumidor";
 $a->strings["Redirect"] = "Redirecionar";
@@ -1681,6 +1450,8 @@ $a->strings["No name"] = "Sem nome";
 $a->strings["Remove authorization"] = "Remover autorização";
 $a->strings["No Plugin settings configured"] = "Não foi definida nenhuma configuração de plugin";
 $a->strings["Plugin Settings"] = "Configurações do plugin";
+$a->strings["Off"] = "Off";
+$a->strings["On"] = "On";
 $a->strings["Additional Features"] = "Funcionalidades Adicionais";
 $a->strings["General Social Media Settings"] = "";
 $a->strings["Disable intelligent shortening"] = "";
@@ -1710,9 +1481,12 @@ $a->strings["Send public posts to all email contacts:"] = "Enviar publicações
 $a->strings["Action after import:"] = "Ação após a importação:";
 $a->strings["Move to folder"] = "Mover para pasta";
 $a->strings["Move to folder:"] = "Mover para pasta:";
+$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
 $a->strings["Display Settings"] = "Configurações de exibição";
 $a->strings["Display Theme:"] = "Tema do perfil:";
 $a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:";
+$a->strings["Suppress warning of insecure networks"] = "";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "";
 $a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos";
 $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "";
 $a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:";
@@ -1724,18 +1498,29 @@ $a->strings["Beginning of week:"] = "";
 $a->strings["Don't show notices"] = "Não mostra avisos";
 $a->strings["Infinite scroll"] = "rolamento infinito";
 $a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede";
+$a->strings["Bandwith Saver Mode"] = "";
+$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
 $a->strings["General Theme Settings"] = "";
 $a->strings["Custom Theme Settings"] = "";
 $a->strings["Content Settings"] = "";
 $a->strings["Theme settings"] = "Configurações do tema";
-$a->strings["User Types"] = "Tipos de Usuários";
-$a->strings["Community Types"] = "Tipos de Comunidades";
+$a->strings["Account Types"] = "";
+$a->strings["Personal Page Subtypes"] = "";
+$a->strings["Community Forum Subtypes"] = "";
+$a->strings["Personal Page"] = "";
+$a->strings["This account is a regular personal profile"] = "";
+$a->strings["Organisation Page"] = "";
+$a->strings["This account is a profile for an organisation"] = "";
+$a->strings["News Page"] = "";
+$a->strings["This account is a news account/reflector"] = "";
+$a->strings["Community Forum"] = "";
+$a->strings["This account is a community forum where people can discuss with each other"] = "";
 $a->strings["Normal Account Page"] = "Página de conta normal";
 $a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
 $a->strings["Soapbox Page"] = "Página de vitrine";
 $a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura";
-$a->strings["Community Forum/Celebrity Account"] = "Conta de fórum de comunidade/celebridade";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita";
+$a->strings["Public Forum"] = "";
+$a->strings["Automatically approve all contact requests"] = "";
 $a->strings["Automatic Friend Page"] = "Página de amigo automático";
 $a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos";
 $a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]";
@@ -1743,6 +1528,7 @@ $a->strings["Private forum - approved members only"] = "Fórum privado - somente
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta";
 $a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?";
+$a->strings["Your profile may be visible in public."] = "";
 $a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? ";
 $a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível.";
@@ -1779,8 +1565,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições
 $a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
 $a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
 $a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
-$a->strings["Show to Groups"] = "Mostre para Grupos";
-$a->strings["Show to Contacts"] = "Mostre para Contatos";
 $a->strings["Default Private Post"] = "Publicação Privada Padrão";
 $a->strings["Default Public Post"] = "Publicação Pública Padrão";
 $a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
@@ -1808,11 +1592,13 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo
 $a->strings["Relocate"] = "Relocação";
 $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."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
 $a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
+$a->strings["Export account"] = "Exportar conta";
+$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."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
+$a->strings["Export all"] = "Exportar tudo";
+$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)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
 $a->strings["Do you really want to delete this video?"] = "";
 $a->strings["Delete Video"] = "";
 $a->strings["No videos selected"] = "Nenhum vídeo selecionado";
-$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
-$a->strings["View Album"] = "Ver álbum";
 $a->strings["Recent Videos"] = "Vídeos Recentes";
 $a->strings["Upload New Videos"] = "Envie Novos Vídeos";
 $a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
@@ -1831,6 +1617,7 @@ $a->strings["The database you specify below should already exist. If it does not
 $a->strings["Database Server Name"] = "Nome do servidor de banco de dados";
 $a->strings["Database Login Name"] = "Nome do usuário do banco de dados";
 $a->strings["Database Login Password"] = "Senha do usuário do banco de dados";
+$a->strings["For security reasons the password must not be empty"] = "";
 $a->strings["Database Name"] = "Nome do banco de dados";
 $a->strings["Site administrator email address"] = "Endereço de email do administrador do site";
 $a->strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web.";
@@ -1839,7 +1626,7 @@ $a->strings["Site settings"] = "Configurações do site";
 $a->strings["System Language:"] = "";
 $a->strings["Set the default language for your Friendica installation interface and to send emails."] = "";
 $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
 $a->strings["PHP executable path"] = "Caminho para o executável do PhP";
 $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação.";
 $a->strings["Command line PHP"] = "PHP em linha de comando";
@@ -1855,9 +1642,8 @@ $a->strings["Generate encryption keys"] = "Gerar chaves de encriptação";
 $a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
 $a->strings["GD graphics PHP module"] = "Módulo PHP GD graphics";
 $a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
+$a->strings["PDO or MySQLi PHP module"] = "";
 $a->strings["mb_string PHP module"] = "Módulo PHP mb_string ";
-$a->strings["mcrypt PHP module"] = "";
 $a->strings["XML PHP module"] = "";
 $a->strings["iconv module"] = "";
 $a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache";
@@ -1865,13 +1651,10 @@ $a->strings["Error: Apache webserver mod-rewrite module is required but not inst
 $a->strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado.";
 $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado.";
 $a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
 $a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado.";
 $a->strings["Error: iconv PHP module required but not installed."] = "";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "";
-$a->strings["mcrypt_create_iv() function"] = "";
 $a->strings["Error, XML PHP module required but not installed."] = "Erro: o módulo XML do PHP é necessário, mas não está instalado.";
 $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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
 $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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
@@ -1885,11 +1668,19 @@ $a->strings["Note: as a security measure, you should give the web server write a
 $a->strings["view/smarty3 is writable"] = "view/smarty3 tem escrita permitida";
 $a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor.";
 $a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
+$a->strings["ImageMagick PHP extension is not installed"] = "";
 $a->strings["ImageMagick PHP extension is installed"] = "";
 $a->strings["ImageMagick supports 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."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
 $a->strings["<h1>What next</h1>"] = "<h1>A seguir</h1>";
 $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador.";
+$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
+$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
+$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica.";
+$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
+$a->strings["%s posted an update."] = "%s publicou uma atualização.";
 $a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
 $a->strings["Discard"] = "Descartar";
 $a->strings["Network Notifications"] = "Notificações de rede";
@@ -1901,68 +1692,325 @@ $a->strings["Notification type: "] = "Tipo de notificação:";
 $a->strings["suggested by %s"] = "sugerido por %s";
 $a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
 $a->strings["if applicable"] = "se aplicável";
+$a->strings["Approve"] = "Aprovar";
 $a->strings["Claims to be known to you: "] = "Alega ser conhecido por você: ";
 $a->strings["yes"] = "sim";
 $a->strings["no"] = "não";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite  ler e  se inscreve nos  textos dele. \"Fan / admirador\" significa que você permite  ler, mas você não quer ler os textos dele. Aprovar como:";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Sua conexão deve ser bidirecional ou não? \"Amigo\" implica que você permite a leitura e assina o textos dele. \"Compartilhador\" significa que você permite a leitura mas você não quer ler os textos dele. Aprova como:";
+$a->strings["Shall your connection be bidirectional or not?"] = "";
+$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"] = "Amigo";
 $a->strings["Sharer"] = "Compartilhador";
-$a->strings["Fan/Admirer"] = "Fã/Admirador";
+$a->strings["Subscriber"] = "";
 $a->strings["No introductions."] = "Sem apresentações.";
 $a->strings["Show unread"] = "";
 $a->strings["Show all"] = "";
 $a->strings["No more %s notifications."] = "";
-$a->strings["Recent Photos"] = "Fotos recentes";
-$a->strings["Upload New Photos"] = "Enviar novas fotos";
-$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
-$a->strings["Album not found."] = "O álbum não foi encontrado.";
-$a->strings["Delete Album"] = "Excluir o álbum";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
-$a->strings["Delete Photo"] = "Excluir a foto";
-$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
-$a->strings["a photo"] = "uma foto";
-$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
-$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
-$a->strings["Upload Photos"] = "Enviar fotos";
-$a->strings["New album name: "] = "Nome do novo álbum: ";
-$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
-$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
-$a->strings["Private Photo"] = "Foto Privada";
-$a->strings["Public Photo"] = "Foto Pública";
-$a->strings["Edit Album"] = "Editar o álbum";
-$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
-$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
-$a->strings["View Photo"] = "Ver a foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
-$a->strings["Photo not available"] = "A foto não está disponível";
-$a->strings["View photo"] = "Ver a imagem";
-$a->strings["Edit photo"] = "Editar a foto";
-$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
-$a->strings["View Full Size"] = "Ver no tamanho real";
-$a->strings["Tags: "] = "Etiquetas: ";
-$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
-$a->strings["New album name"] = "Novo nome para o álbum";
-$a->strings["Caption"] = "Legenda";
-$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
-$a->strings["Do not rotate"] = "";
-$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
-$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
-$a->strings["Private photo"] = "Foto privada";
-$a->strings["Public photo"] = "Foto pública";
-$a->strings["Map"] = "";
+$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
+$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
+$a->strings["{0} requested registration"] = "{0} solicitou registro";
+$a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Usuários";
+$a->strings["Themes"] = "Temas";
+$a->strings["DB updates"] = "Atualizações do BD";
+$a->strings["Inspect Queue"] = "";
+$a->strings["Server Blocklist"] = "";
+$a->strings["Federation Statistics"] = "";
+$a->strings["Logs"] = "Relatórios";
+$a->strings["View Logs"] = "";
+$a->strings["probe address"] = "prova endereço";
+$a->strings["check webfinger"] = "verifica webfinger";
+$a->strings["Plugin Features"] = "Recursos do plugin";
+$a->strings["diagnostics"] = "diagnóstico";
+$a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
+$a->strings["The blocked domain"] = "";
+$a->strings["The reason why you blocked this domain."] = "";
+$a->strings["Delete domain"] = "";
+$a->strings["Check to delete this entry from the blocklist"] = "";
+$a->strings["Administration"] = "Administração";
+$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"] = "";
+$a->strings["Server Domain"] = "";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "";
+$a->strings["Add Entry"] = "";
+$a->strings["Save changes to the blocklist"] = "";
+$a->strings["Current Entries in the Blocklist"] = "";
+$a->strings["Delete entry from blocklist"] = "";
+$a->strings["Delete entry from blocklist?"] = "";
+$a->strings["Server added to blocklist."] = "";
+$a->strings["Site blocklist updated."] = "";
+$a->strings["unknown"] = "";
+$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 from the following platforms:"] = "";
+$a->strings["ID"] = "ID";
+$a->strings["Recipient Name"] = "";
+$a->strings["Recipient Profile"] = "";
+$a->strings["Created"] = "";
+$a->strings["Last Tried"] = "";
+$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 include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
+$a->strings["Normal Account"] = "Conta normal";
+$a->strings["Soapbox Account"] = "Conta de vitrine";
+$a->strings["Community/Celebrity Account"] = "Conta de comunidade/celebridade";
+$a->strings["Automatic Friend Account"] = "Conta de amigo automático";
+$a->strings["Blog Account"] = "Conta de blog";
+$a->strings["Private Forum"] = "Fórum privado";
+$a->strings["Message queues"] = "Fila de mensagens";
+$a->strings["Summary"] = "Resumo";
+$a->strings["Registered users"] = "Usuários registrados";
+$a->strings["Pending registrations"] = "Registros pendentes";
+$a->strings["Version"] = "Versão";
+$a->strings["Active plugins"] = "Plugins ativos";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>";
+$a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
+$a->strings["No community page"] = "Sem página de comunidade";
+$a->strings["Public postings from users of this site"] = "Textos públicos de usuários deste sítio";
+$a->strings["Global community page"] = "Página global da comunidade";
+$a->strings["At post arrival"] = "Na chegada da publicação";
+$a->strings["Users, Global Contacts"] = "Usuários, Contatos Globais";
+$a->strings["Users, Global Contacts/fallback"] = "Usuários, Contatos Globais/plano B";
+$a->strings["One month"] = "Um mês";
+$a->strings["Three months"] = "Três meses";
+$a->strings["Half a year"] = "Seis meses";
+$a->strings["One year"] = "Um ano";
+$a->strings["Multi user instance"] = "Instância multi usuário";
+$a->strings["Closed"] = "Fechado";
+$a->strings["Requires approval"] = "Requer aprovação";
+$a->strings["Open"] = "Aberto";
+$a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma política de SSL, os links irão rastrear o estado SSL da página";
+$a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
+$a->strings["File upload"] = "Envio de arquivo";
+$a->strings["Policies"] = "Políticas";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Performance";
+$a->strings["Worker"] = "";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível.";
+$a->strings["Site name"] = "Nome do site";
+$a->strings["Host name"] = "Nome do host";
+$a->strings["Sender Email"] = "enviador de email";
+$a->strings["The email address your server shall use to send notification emails from."] = "";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "ícone de atalho";
+$a->strings["Link to an icon that will be used for browsers."] = "";
+$a->strings["Touch icon"] = "ícone de toque";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
+$a->strings["Additional Info"] = "Informação adicional";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
+$a->strings["System language"] = "Idioma do sistema";
+$a->strings["System theme"] = "Tema do sistema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>";
+$a->strings["Mobile system theme"] = "Tema do sistema para dispositivos móveis";
+$a->strings["Theme for mobile devices"] = "Tema para dispositivos móveis";
+$a->strings["SSL link policy"] = "Política de link SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se os links gerados devem ser forçados a utilizar SSL";
+$a->strings["Force SSL"] = "Forçar SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos.";
+$a->strings["Hide help entry from navigation menu"] = "Oculta a entrada 'Ajuda' do menu de navegação";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente.";
+$a->strings["Single user instance"] = "Instância de usuário único";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Faça essa instância multiusuário ou usuário único para o usuário em questão";
+$a->strings["Maximum image size"] = "Tamanho máximo da imagem";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo, em bytes, das imagens enviadas. O padrão é 0, o que significa sem limites";
+$a->strings["Maximum image length"] = "Tamanho máximo da imagem";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites.";
+$a->strings["JPEG image quality"] = "Qualidade da imagem JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade.";
+$a->strings["Register policy"] = "Política de registro";
+$a->strings["Maximum Daily Registrations"] = "Registros Diários Máximos";
+$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."] = "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito.";
+$a->strings["Register text"] = "Texto de registro";
+$a->strings["Will be displayed prominently on the registration page."] = "Será exibido com destaque na página de registro.";
+$a->strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não desperdiçará recursos do sistema captando de sites externos para contas abandonadas. Digite 0 para nenhum limite de tempo.";
+$a->strings["Allowed friend domains"] = "Domínios de amigos permitidos";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista dos domínios que têm permissão para estabelecer amizades com esse site, separados por vírgula. Caracteres curinga são aceitos. Deixe em branco para permitir qualquer domínio.";
+$a->strings["Allowed email domains"] = "Domínios de e-mail permitidos";
+$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"] = "Lista de domínios separados por vírgula, que são permitidos em endereços de e-mail para registro nesse site. Caracteres-curinga são aceitos. Vazio para aceitar qualquer domínio";
+$a->strings["Block public"] = "Bloquear acesso público";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada.";
+$a->strings["Force publish"] = "Forçar a listagem";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis desse site a serem listados no diretório do site.";
+$a->strings["Global directory URL"] = "";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Allow threaded items"] = "Habilita itens aninhados";
+$a->strings["Allow infinite level threading for items on this site."] = "Habilita nível infinito de aninhamento (threading) para itens.";
+$a->strings["Private posts by default for new users"] = "Publicações privadas por padrão para novos usuários";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas.";
+$a->strings["Don't include post content in email notifications"] = "Não incluir o conteúdo da postagem nas notificações de email";
+$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."] = "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Disabilita acesso público a addons listados no menu de aplicativos.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente.";
+$a->strings["Don't embed private images in posts"] = "Não inclua imagens privadas em publicações";
+$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."] = "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo.";
+$a->strings["Allow Users to set remote_self"] = "Permite usuários configurarem 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."] = "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários";
+$a->strings["Block multiple registrations"] = "Bloquear registros repetidos";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Desabilitar o registro de contas adicionais para serem usadas como páginas.";
+$a->strings["OpenID support"] = "Suporte ao OpenID";
+$a->strings["OpenID support for registration and logins."] = "Suporte ao OpenID para registros e autenticações.";
+$a->strings["Fullname check"] = "Verificar nome completo";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Forçar os usuários a usar um espaço em branco entre o nome e o sobrenome, ao preencherem o nome completo no registro, como uma medida contra o spam";
+$a->strings["Community Page Style"] = "Estilo da página de comunidade";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Tipo de página de comunidade para mostrar. 'Comunidade Global' mostra todos os textos públicos de uma rede aberta e distribuída que chega neste servidor.";
+$a->strings["Posts per user on community page"] = "Textos por usuário na página da comunidade";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "O número máximo de textos por usuário na página da comunidade. (Não é válido para 'comunidade global')";
+$a->strings["Enable OStatus support"] = "Habilitar suporte ao OStatus";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados.";
+$a->strings["OStatus conversation completion interval"] = "Intervalo de finalização da conversação OStatus ";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada.";
+$a->strings["Only import OStatus threads from our contacts"] = "";
+$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."] = "";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
+$a->strings["Enable Diaspora support"] = "Habilitar suporte ao Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Fornece compatibilidade nativa com a rede Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Permitir somente contatos Friendica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos os contatos devem usar protocolos Friendica. Todos os outros protocolos de comunicação embarcados estão desabilitados";
+$a->strings["Verify SSL"] = "Verificar 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."] = "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados.";
+$a->strings["Proxy user"] = "Usuário do proxy";
+$a->strings["Proxy URL"] = "URL do proxy";
+$a->strings["Network timeout"] = "Limite de tempo da rede";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Defina como 0 para ilimitado (não recomendado).";
+$a->strings["Maximum Load Average"] = "Média de Carga Máxima";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 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 poller. 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"] = "Checagem periódica dos contatos globais";
+$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'."] = "Periodicamente buscar contatos em outros servidores. Você pode entre 'Usuários': os usuários do sistema remoto; e 'Contatos Globais': os contatos ativos conhecidos pelo sistema. O plano B é destinado a servidores rodando Redmatrix ou Friendica, se mais antigos, para os quais os contatos globais não estavam disponíveis. O plano B aumenta a carga do servidor, por isso a opção recomendada é 'Usuários, Contatos Globais'.";
+$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"] = "";
+$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"] = "";
+$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["Suppress Tags"] = "Suprime etiquetas";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "suprime mostrar uma lista de hashtags no final de cada texto.";
+$a->strings["Path to item cache"] = "Diretório do cache de item";
+$a->strings["The item caches buffers generated bbcode and external images."] = "";
+$a->strings["Cache duration in seconds"] = "Duração do cache em segundos";
+$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."] = "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1.";
+$a->strings["Maximum numbers of comments per post"] = "O número máximo de comentários por post";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100.";
+$a->strings["Temp path"] = "Diretório Temp";
+$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"] = "Diretório base para instalação";
+$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"] = "Disabilitar proxy de imagem";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
+$a->strings["Only search in tags"] = "Somente pesquisa nas estiquetas";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento.";
+$a->strings["New base url"] = "Nova URL base";
+$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "";
+$a->strings["RINO Encryption"] = "";
+$a->strings["Encryption layer between nodes."] = "";
+$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 poller calls in your crontab."] = "";
+$a->strings["Enable 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 (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
+$a->strings["Update has been marked successful"] = "A atualização foi marcada como bem sucedida";
+$a->strings["Database structure update %s was successfully applied."] = "A atualização da estrutura do banco de dados %s foi aplicada com sucesso.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s";
+$a->strings["Executing %s failed with error: %s"] = "A execução de %s falhou com erro: %s";
+$a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Não havia nenhuma função de atualização %s adicional que precisava ser chamada.";
+$a->strings["No failed updates."] = "Nenhuma atualização com falha.";
+$a->strings["Check database structure"] = "Verifique a estrutura do banco de dados";
+$a->strings["Failed Updates"] = "Atualizações com falha";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
+$a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
+$a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tCaro %1\$s,\n\t\t\t\to administrador de %2\$s criou uma conta para você.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1\$s\n\t\t\tNome de Login:\t\t%2\$s\n\t\t\tSenha:\t\t%3\$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4\$s.";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s usuário bloqueado/desbloqueado",
+       1 => "%s usuários bloqueados/desbloqueados",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s usuário excluído",
+       1 => "%s usuários excluídos",
+);
+$a->strings["User '%s' deleted"] = "O usuário '%s' foi excluído";
+$a->strings["User '%s' unblocked"] = "O usuário '%s' foi desbloqueado";
+$a->strings["User '%s' blocked"] = "O usuário '%s' foi bloqueado";
+$a->strings["Register date"] = "Data de registro";
+$a->strings["Last login"] = "Última entrada";
+$a->strings["Last item"] = "Último item";
+$a->strings["Add User"] = "Adicionar usuário";
+$a->strings["select all"] = "selecionar todos";
+$a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
+$a->strings["User waiting for permanent deletion"] = "Usuário aguardando por fim permanente da conta.";
+$a->strings["Request date"] = "Solicitar data";
+$a->strings["No registrations."] = "Nenhum registro.";
+$a->strings["Note from the user"] = "";
+$a->strings["Deny"] = "Negar";
+$a->strings["Site admin"] = "Administração do site";
+$a->strings["Account expired"] = "Conta expirou";
+$a->strings["New User"] = "Novo usuário";
+$a->strings["Deleted since"] = "Apagado desde";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?";
+$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?"] = "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?";
+$a->strings["Name of the new user."] = "Nome do novo usuário.";
+$a->strings["Nickname"] = "Apelido";
+$a->strings["Nickname of the new user."] = "Apelido para o novo usuário.";
+$a->strings["Email address of the new user."] = "Endereço de e-mail do novo usuário.";
+$a->strings["Plugin %s disabled."] = "O plugin %s foi desabilitado.";
+$a->strings["Plugin %s enabled."] = "O plugin %s foi habilitado.";
+$a->strings["Disable"] = "Desabilitar";
+$a->strings["Enable"] = "Habilitar";
+$a->strings["Toggle"] = "Alternar";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "Mantenedor: ";
+$a->strings["Reload active plugins"] = "";
+$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
+$a->strings["No themes found."] = "Nenhum tema encontrado";
+$a->strings["Screenshot"] = "Captura de tela";
+$a->strings["Reload active themes"] = "";
+$a->strings["No themes found on the system. They should be paced in %1\$s"] = "";
+$a->strings["[Experimental]"] = "[Esperimental]";
+$a->strings["[Unsupported]"] = "[Não suportado]";
+$a->strings["Log settings updated."] = "As configurações de relatórios foram atualizadas.";
+$a->strings["PHP log currently enabled."] = "";
+$a->strings["PHP log currently disabled."] = "";
+$a->strings["Clear"] = "Limpar";
+$a->strings["Enable Debugging"] = "Habilitar depuração";
+$a->strings["Log file"] = "Arquivo do relatório";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "O servidor web precisa ter permissão de escrita. Relativa ao diretório raiz do seu Friendica.";
+$a->strings["Log level"] = "Nível do relatório";
+$a->strings["PHP logging"] = "";
+$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["Lock feature %s"] = "Bloquear funcionalidade %s";
+$a->strings["Manage Additional Features"] = "Gerenciar funcionalidades adicionais";
 $a->strings["via"] = "via";
-$a->strings["Repeat the image"] = "Lado a lado";
-$a->strings["Will repeat your image to fill the background."] = "Repete a imagem para preencher o plano de fundo.";
-$a->strings["Stretch"] = "Esticar";
-$a->strings["Will stretch to width/height of the image."] = "Estica até a largura/altura da imagem.";
-$a->strings["Resize fill and-clip"] = "Preencher e cortar";
-$a->strings["Resize to fill and retain aspect ratio."] = "Redimensiona para preencher o plano de fundo, mantendo proporções.";
-$a->strings["Resize best fit"] = "Ajustar";
-$a->strings["Resize to best fit and retain aspect ratio."] = "Redimensiona para ajustar ao plano de fundo, mantendo proporções.";
+$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"] = "Variações";
 $a->strings["Default"] = "Padrão";
 $a->strings["Note: "] = "Observação:";
 $a->strings["Check image permissions if all users are allowed to visit the image"] = "";
@@ -1973,48 +2021,32 @@ $a->strings["Link color"] = "Cor do link";
 $a->strings["Set the background color"] = "Escolher a cor de fundo";
 $a->strings["Content background transparency"] = "Transparência do fundo do conteúdo";
 $a->strings["Set the background image"] = "Escolher a imagem de fundo";
+$a->strings["Repeat the image"] = "Lado a lado";
+$a->strings["Will repeat your image to fill the background."] = "Repete a imagem para preencher o plano de fundo.";
+$a->strings["Stretch"] = "Esticar";
+$a->strings["Will stretch to width/height of the image."] = "Estica até a largura/altura da imagem.";
+$a->strings["Resize fill and-clip"] = "Preencher e cortar";
+$a->strings["Resize to fill and retain aspect ratio."] = "Redimensiona para preencher o plano de fundo, mantendo proporções.";
+$a->strings["Resize best fit"] = "Ajustar";
+$a->strings["Resize to best fit and retain aspect ratio."] = "Redimensiona para ajustar ao plano de fundo, mantendo proporções.";
 $a->strings["Guest"] = "Convidado";
 $a->strings["Visitor"] = "Visitante";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
-$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
-$a->strings["Set theme width"] = "Configure a largura do tema";
-$a->strings["Color scheme"] = "Esquema de cores";
 $a->strings["Alignment"] = "Alinhamento";
 $a->strings["Left"] = "Esquerda";
 $a->strings["Center"] = "Centro";
+$a->strings["Color scheme"] = "Esquema de cores";
 $a->strings["Posts font size"] = "Tamanho da fonte para publicações";
 $a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
-$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
-$a->strings["Set colour scheme"] = "Configure o esquema de cores";
-$a->strings["Community Profiles"] = "Profiles Comunitários";
-$a->strings["Last users"] = "Últimos usuários";
-$a->strings["Find Friends"] = "Encontrar amigos";
-$a->strings["Local Directory"] = "Diretório Local";
-$a->strings["Quick Start"] = "";
-$a->strings["Connect Services"] = "Conectar serviços";
 $a->strings["Comma separated list of helper forums"] = "";
 $a->strings["Set style"] = "escolha estilo";
 $a->strings["Community Pages"] = "Páginas da Comunidade";
+$a->strings["Community Profiles"] = "Profiles Comunitários";
 $a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
-$a->strings["Your contacts"] = "Seus contatos";
-$a->strings["Your personal photos"] = "Suas fotos pessoais";
-$a->strings["Last likes"] = "Últimas gostadas";
-$a->strings["Last photos"] = "Últimas fotos";
-$a->strings["Earth Layers"] = "Camadas da Terra";
-$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
-$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
-$a->strings["Set color scheme"] = "Configure o esquema de cores";
-$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
-$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"] = "Variações";
+$a->strings["Connect Services"] = "Conectar serviços";
+$a->strings["Find Friends"] = "Encontrar amigos";
+$a->strings["Last users"] = "Últimos usuários";
+$a->strings["Local Directory"] = "Diretório Local";
+$a->strings["Quick Start"] = "";
 $a->strings["toggle mobile"] = "habilita mobile";
 $a->strings["Delete this item?"] = "Excluir este item?";
 $a->strings["show fewer"] = "exibir menos";
index 6690728d9369a4bca06e3d3d90210f5ce5970709..8986fad38a4760e4ce5ddb764871ca18ff76c7cd 100644 (file)
@@ -19,8 +19,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-03-20 08:24+0100\n"
-"PO-Revision-Date: 2017-04-08 16:49+0000\n"
+"POT-Creation-Date: 2017-05-03 07:08+0200\n"
+"PO-Revision-Date: 2017-05-26 12:25+0000\n"
 "Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
 "Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -29,156 +29,34 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: boot.php:976
-msgid "Delete this item?"
-msgstr "Удалить этот элемент?"
-
-#: boot.php:977 include/ForumManager.php:119 include/contact_widgets.php:253
-#: include/items.php:2254 mod/content.php:624 object/Item.php:420
-#: view/theme/vier/theme.php:255
-msgid "show more"
-msgstr "показать больше"
-
-#: boot.php:978
-msgid "show fewer"
-msgstr "показать меньше"
-
-#: boot.php:1667
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Обновление %s не удалось. Смотрите журнал ошибок."
-
-#: boot.php:1779
-msgid "Create a New Account"
-msgstr "Создать новый аккаунт"
-
-#: boot.php:1780 include/nav.php:109 mod/register.php:289
-msgid "Register"
-msgstr "Регистрация"
-
-#: boot.php:1804 include/nav.php:78 view/theme/frio/theme.php:243
-msgid "Logout"
-msgstr "Выход"
-
-#: boot.php:1805 include/nav.php:95 mod/bookmarklet.php:12
-msgid "Login"
-msgstr "Вход"
-
-#: boot.php:1807 mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Ник или E-mail: "
-
-#: boot.php:1808
-msgid "Password: "
-msgstr "Пароль: "
-
-#: boot.php:1809
-msgid "Remember me"
-msgstr "Запомнить"
-
-#: boot.php:1812
-msgid "Or login using OpenID: "
-msgstr "Или зайти с OpenID: "
-
-#: boot.php:1818
-msgid "Forgot your password?"
-msgstr "Забыли пароль?"
-
-#: boot.php:1819 mod/lostpass.php:110
-msgid "Password Reset"
-msgstr "Сброс пароля"
-
-#: boot.php:1821
-msgid "Website Terms of Service"
-msgstr "Правила сайта"
-
-#: boot.php:1822
-msgid "terms of service"
-msgstr "правила"
-
-#: boot.php:1824
-msgid "Website Privacy Policy"
-msgstr "Политика конфиденциальности сервера"
-
-#: boot.php:1825
-msgid "privacy policy"
-msgstr "политика конфиденциальности"
-
-#: include/Contact.php:387 include/Contact.php:400 include/Contact.php:445
-#: include/conversation.php:970 include/conversation.php:986
-#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209
-#: mod/match.php:73 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Просмотреть профиль"
-
-#: include/Contact.php:401 include/contact_widgets.php:32
-#: include/conversation.php:983 mod/allfriends.php:69 mod/contacts.php:610
-#: mod/dirfind.php:210 mod/follow.php:106 mod/match.php:74 mod/suggest.php:83
-msgid "Connect/Follow"
-msgstr "Подключиться/Следовать"
-
-#: include/Contact.php:444 include/conversation.php:969
-msgid "View Status"
-msgstr "Просмотреть статус"
-
-#: include/Contact.php:446 include/conversation.php:971
-msgid "View Photos"
-msgstr "Просмотреть фото"
-
-#: include/Contact.php:447 include/conversation.php:972
-msgid "Network Posts"
-msgstr "Посты сети"
-
-#: include/Contact.php:448 include/conversation.php:973
-msgid "View Contact"
-msgstr "Просмотреть контакт"
-
-#: include/Contact.php:449
-msgid "Drop Contact"
-msgstr "Удалить контакт"
-
-#: include/Contact.php:450 include/conversation.php:974
-msgid "Send PM"
-msgstr "Отправить ЛС"
-
-#: include/Contact.php:451 include/conversation.php:978
-msgid "Poke"
-msgstr "потыкать"
-
-#: include/Contact.php:828
-msgid "Organisation"
-msgstr "Организация"
-
-#: include/Contact.php:831
-msgid "News"
-msgstr "Новости"
-
-#: include/Contact.php:834
-msgid "Forum"
-msgstr "Форум"
-
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
-#: view/theme/vier/theme.php:250
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
+#: view/theme/vier/theme.php:254
 msgid "Forums"
 msgstr "Форумы"
 
-#: include/ForumManager.php:116 view/theme/vier/theme.php:252
+#: include/ForumManager.php:116 view/theme/vier/theme.php:256
 msgid "External link to forum"
 msgstr "Внешняя ссылка на форум"
 
+#: include/ForumManager.php:119 include/contact_widgets.php:269
+#: include/items.php:2450 mod/content.php:624 object/Item.php:420
+#: view/theme/vier/theme.php:259 boot.php:1000
+msgid "show more"
+msgstr "показать больше"
+
 #: include/NotificationsManager.php:153
 msgid "System"
 msgstr "Система"
 
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:421
+#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:517
 #: view/theme/frio/theme.php:253
 msgid "Network"
 msgstr "Новости"
 
-#: include/NotificationsManager.php:167 mod/network.php:829
-#: mod/profiles.php:695
+#: include/NotificationsManager.php:167 mod/network.php:832
+#: mod/profiles.php:696
 msgid "Personal"
-msgstr "Ð\9fеÑ\80Ñ\81онал"
+msgstr "Ð\9bиÑ\87нÑ\8bе"
 
 #: include/NotificationsManager.php:174 include/nav.php:105
 #: include/nav.php:161
@@ -242,2739 +120,3003 @@ msgid "New Follower"
 msgstr "Новый фолловер"
 
 #: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
-#: include/Photo.php:1087 include/message.php:146 mod/item.php:462
-#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237
+#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
+#: mod/item.php:467
 msgid "Wall Photos"
 msgstr "Фото стены"
 
-#: include/acl_selectors.php:341
-msgid "Post to Email"
-msgstr "Отправить на Email"
+#: include/delivery.php:427
+msgid "(no subject)"
+msgstr "(без темы)"
+
+#: include/delivery.php:439 include/enotify.php:43
+msgid "noreply"
+msgstr "без ответа"
 
-#: include/acl_selectors.php:346
+#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Коннекторы отключены так как \"%s\" включен."
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s нравится %3$s от %2$s "
 
-#: include/acl_selectors.php:347 mod/settings.php:1188
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Скрыть данные профиля из неизвестных зрителей?"
+#: include/like.php:31 include/like.php:36 include/conversation.php:156
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s не нравится %3$s от %2$s "
 
-#: include/acl_selectors.php:352
-msgid "Visible to everybody"
-msgstr "Видимо всем"
+#: include/like.php:41
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr ""
 
-#: include/acl_selectors.php:353 view/theme/vier/config.php:108
-msgid "show"
-msgstr "показывать"
+#: include/like.php:46
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr ""
 
-#: include/acl_selectors.php:354 view/theme/vier/config.php:108
-msgid "don't show"
-msgstr "не показывать"
+#: include/like.php:51
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr ""
 
-#: include/acl_selectors.php:360 mod/editpost.php:123
-msgid "CC: email addresses"
-msgstr "Копии на email адреса"
+#: include/like.php:178 include/conversation.php:141
+#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "photo"
+msgstr "фото"
 
-#: include/acl_selectors.php:361 mod/editpost.php:130
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Пример: bob@example.com, mary@example.com"
+#: include/like.php:178 include/conversation.php:136
+#: include/conversation.php:146 include/conversation.php:288
+#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "status"
+msgstr "статус"
 
-#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176
-#: mod/photos.php:1558
-msgid "Permissions"
-msgstr "РазÑ\80еÑ\88ениÑ\8f"
+#: include/like.php:180 include/conversation.php:133
+#: include/conversation.php:285 include/text.php:1870
+msgid "event"
+msgstr "меÑ\80опÑ\80иÑ\8fÑ\82ие"
 
-#: include/acl_selectors.php:364
-msgid "Close"
-msgstr "Закрыть"
+#: include/message.php:15 include/message.php:169
+msgid "[no subject]"
+msgstr "[без темы]"
 
-#: include/api.php:1021
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Дневной лимит в %d постов достигнут. Пост отклонен."
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
+msgstr "Ничего нового здесь"
 
-#: include/api.php:1041
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Недельный лимит в %d постов достигнут. Пост отклонен."
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
+msgstr "Стереть уведомления"
 
-#: include/api.php:1062
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Месячный лимит в %d постов достигнут. Пост отклонен."
+#: include/nav.php:40 include/text.php:1083
+msgid "@name, !forum, #tags, content"
+msgstr "@имя, !форум, #тег, контент"
 
-#: include/auth.php:45
-msgid "Logged out."
-msgstr "Выход из системы."
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
+msgid "Logout"
+msgstr "Выход"
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:110
-msgid "Login failed."
-msgstr "Ð\92ойÑ\82и Ð½Ðµ Ñ\83далоÑ\81Ñ\8c."
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
+msgstr "Ð\97авеÑ\80Ñ\88иÑ\82Ñ\8c Ñ\8dÑ\82Ñ\83 Ñ\81еÑ\81Ñ\81иÑ\8e"
 
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."
+#: include/nav.php:81 include/identity.php:769 mod/contacts.php:645
+#: mod/contacts.php:841 view/theme/frio/theme.php:246
+msgid "Status"
+msgstr "Посты"
 
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
-msgstr "СообÑ\89ение Ð¾Ð± Ð¾Ñ\88ибке Ð±Ñ\8bло:"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
+msgstr "Ð\94аннÑ\8bе Ð²Ð°Ñ\88ей Ñ\83Ñ\87Ñ\91Ñ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и"
 
-#: include/bb2diaspora.php:199 include/event.php:16 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: include/nav.php:82 include/identity.php:622 include/identity.php:744
+#: include/identity.php:777 mod/contacts.php:647 mod/contacts.php:849
+#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
+msgid "Profile"
+msgstr "Информация"
 
-#: include/bb2diaspora.php:205 include/event.php:33 include/event.php:51
-#: include/event.php:488
-msgid "Starts:"
-msgstr "Начало:"
+#: include/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
+msgstr "Информация о вас"
 
-#: include/bb2diaspora.php:213 include/event.php:36 include/event.php:57
-#: include/event.php:489
-msgid "Finishes:"
-msgstr "Ð\9eконÑ\87ание:"
+#: include/nav.php:83 include/identity.php:785 mod/fbrowser.php:31
+#: view/theme/frio/theme.php:248
+msgid "Photos"
+msgstr "ФоÑ\82о"
 
-#: include/bb2diaspora.php:221 include/event.php:39 include/event.php:63
-#: include/event.php:490 include/identity.php:331 mod/contacts.php:636
-#: mod/directory.php:139 mod/events.php:501 mod/notifications.php:238
-msgid "Location:"
-msgstr "Откуда:"
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
+msgstr "Ваши фотографии"
 
-#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056
-msgid "Image/photo"
-msgstr "Изображение / Фото"
+#: include/nav.php:84 include/identity.php:793 include/identity.php:796
+#: view/theme/frio/theme.php:249
+msgid "Videos"
+msgstr "Видео"
 
-#: include/bbcode.php:467
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
+msgstr "Ваши видео"
 
-#: include/bbcode.php:1015 include/bbcode.php:1035
-msgid "$1 wrote:"
-msgstr "$1 написал:"
+#: include/nav.php:85 include/nav.php:149 include/identity.php:805
+#: include/identity.php:816 mod/cal.php:270 mod/events.php:374
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
+msgstr "Мероприятия"
 
-#: include/bbcode.php:1064 include/bbcode.php:1065
-msgid "Encrypted content"
-msgstr "Ð\97аÑ\88иÑ\84Ñ\80ованнÑ\8bй ÐºÐ¾Ð½Ñ\82енÑ\82"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
+msgstr "Ð\92аÑ\88и Ñ\81обÑ\8bÑ\82иÑ\8f"
 
-#: include/bbcode.php:1169
-msgid "Invalid source protocol"
-msgstr "Ð\9dепÑ\80авилÑ\8cнÑ\8bй Ð¿Ñ\80оÑ\82окол Ð¸Ñ\81Ñ\82оÑ\87ника"
+#: include/nav.php:86
+msgid "Personal notes"
+msgstr "Ð\9bиÑ\87нÑ\8bе Ð·Ð°Ð¼ÐµÑ\82ки"
 
-#: include/bbcode.php:1179
-msgid "Invalid link protocol"
-msgstr "Ð\9dепÑ\80авилÑ\8cнаÑ\8f Ð¿Ñ\80оÑ\82околÑ\8cнаÑ\8f Ñ\81Ñ\81Ñ\8bлка"
+#: include/nav.php:86
+msgid "Your personal notes"
+msgstr "Ð\92аÑ\88и Ð»Ð¸Ñ\87нÑ\8bе Ð·Ð°Ð¼ÐµÑ\82ки"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Ð\9dеизвеÑ\81Ñ\82но | Ð\9dе Ð¾Ð¿Ñ\80еделено"
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
+msgid "Login"
+msgstr "Ð\92Ñ\85од"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Ð\91локиÑ\80оваÑ\82Ñ\8c Ð½ÐµÐ¼ÐµÐ´Ð»ÐµÐ½Ð½Ð¾"
+#: include/nav.php:95
+msgid "Sign in"
+msgstr "Ð\92Ñ\85од"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "ТÑ\80оллÑ\8c, Ñ\81паммеÑ\80, Ñ\80аÑ\81Ñ\81Ñ\8bлаеÑ\82 Ñ\80екламÑ\83"
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Ð\93лавнаÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Известные мне, но нет определенного мнения"
-
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Хорошо, наверное, безвредные"
+#: include/nav.php:109 mod/register.php:289 boot.php:1844
+msgid "Register"
+msgstr "Регистрация"
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "УважаемÑ\8bе, ÐµÑ\81Ñ\82Ñ\8c Ð¼Ð¾Ðµ Ð´Ð¾Ð²ÐµÑ\80ие"
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "СоздаÑ\82Ñ\8c Ð°ÐºÐºÐ°Ñ\83нÑ\82"
 
-#: include/contact_selectors.php:56 mod/admin.php:893
-msgid "Frequently"
-msgstr "ЧаÑ\81Ñ\82о"
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:297
+msgid "Help"
+msgstr "Ð\9fомоÑ\89Ñ\8c"
 
-#: include/contact_selectors.php:57 mod/admin.php:894
-msgid "Hourly"
-msgstr "Раз Ð² Ñ\87аÑ\81"
+#: include/nav.php:115
+msgid "Help and documentation"
+msgstr "Ð\9fомоÑ\89Ñ\8c Ð¸ Ð´Ð¾ÐºÑ\83менÑ\82аÑ\86иÑ\8f"
 
-#: include/contact_selectors.php:58 mod/admin.php:895
-msgid "Twice daily"
-msgstr "Ð\94ва Ñ\80аза Ð² Ð´ÐµÐ½Ñ\8c"
+#: include/nav.php:119
+msgid "Apps"
+msgstr "Ð\9fÑ\80иложениÑ\8f"
 
-#: include/contact_selectors.php:59 mod/admin.php:896
-msgid "Daily"
-msgstr "Ð\95жедневно"
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
+msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð¿Ñ\80иложениÑ\8f, Ñ\83Ñ\82илиÑ\82Ñ\8b, Ð¸Ð³Ñ\80Ñ\8b"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Ð\95женеделÑ\8cно"
+#: include/nav.php:123 include/text.php:1080 mod/search.php:149
+msgid "Search"
+msgstr "Ð\9fоиÑ\81к"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Ð\95жемеÑ\81Ñ\8fÑ\87но"
+#: include/nav.php:123
+msgid "Search site content"
+msgstr "Ð\9fоиÑ\81к Ð¿Ð¾ Ñ\81айÑ\82Ñ\83"
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:881
-msgid "Friendica"
-msgstr "Friendica"
+#: include/nav.php:126 include/text.php:1088
+msgid "Full Text"
+msgstr "Контент"
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/nav.php:127 include/text.php:1089
+msgid "Tags"
+msgstr "Тэги"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/nav.php:128 include/nav.php:192 include/identity.php:838
+#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
+#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
+msgid "Contacts"
+msgstr "Контакты"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1449
-msgid "Email"
-msgstr "Эл. почта"
+#: include/nav.php:143 include/nav.php:145 mod/community.php:32
+msgid "Community"
+msgstr "Сообщество"
 
-#: include/contact_selectors.php:80 mod/dfrn_request.php:883
-#: mod/settings.php:848
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/nav.php:143
+msgid "Conversations on this site"
+msgstr "Беседы на этом сайте"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/nav.php:145
+msgid "Conversations on the network"
+msgstr "Беседы в сети"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: include/nav.php:149 include/identity.php:808 include/identity.php:819
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
+msgstr "Календарь и события"
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/nav.php:152
+msgid "Directory"
+msgstr "Каталог"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: include/nav.php:152
+msgid "People directory"
+msgstr "Каталог участников"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/nav.php:154
+msgid "Information"
+msgstr "Информация"
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/nav.php:154
+msgid "Information about this friendica instance"
+msgstr "Информация об этом экземпляре Friendica"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
+msgstr "Сообщения ваших друзей"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/nav.php:159
+msgid "Network Reset"
+msgstr "Перезагрузка сети"
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Ð\9aоннекÑ\82оÑ\80 Diaspora"
+#: include/nav.php:159
+msgid "Load Network page with no filters"
+msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\83 Ñ\81еÑ\82и Ð±ÐµÐ· Ñ\84илÑ\8cÑ\82Ñ\80ов"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
-msgstr "GNU Social"
+#: include/nav.php:166
+msgid "Friend Requests"
+msgstr "Запросы на добавление в список друзей"
 
-#: include/contact_selectors.php:92
-msgid "pnut"
-msgstr "pnut"
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
+msgstr "Уведомления"
 
-#: include/contact_selectors.php:93
-msgid "App.net"
-msgstr "App.net"
+#: include/nav.php:170
+msgid "See all notifications"
+msgstr "Посмотреть все уведомления"
 
-#: include/contact_selectors.php:104
-msgid "Hubzilla/Redmatrix"
-msgstr "Hubzilla/Redmatrix"
+#: include/nav.php:171 mod/settings.php:906
+msgid "Mark as seen"
+msgstr "Отметить, как прочитанное"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Ð\94обавиÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
+msgstr "Ð\9eÑ\82меÑ\82иÑ\82Ñ\8c Ð²Ñ\81е Ñ\81иÑ\81Ñ\82емнÑ\8bе Ñ\83ведомлениÑ\8f, ÐºÐ°Ðº Ð¿Ñ\80оÑ\87иÑ\82аннÑ\8bе"
 
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Ð\92ведиÑ\82е Ð°Ð´Ñ\80еÑ\81 Ð¸Ð»Ð¸ Ð²ÐµÐ±-меÑ\81Ñ\82онаÑ\85ождение"
+#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
+msgid "Messages"
+msgstr "СообÑ\89ениÑ\8f"
 
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Ð\9fÑ\80имеÑ\80: bob@example.com, http://example.com/barbara"
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
+msgstr "Ð\9bиÑ\87наÑ\8f Ð¿Ð¾Ñ\87Ñ\82а"
 
-#: include/contact_widgets.php:10 include/identity.php:219
-#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89
-#: mod/suggest.php:101
-msgid "Connect"
-msgstr "Подключить"
+#: include/nav.php:176
+msgid "Inbox"
+msgstr "Входящие"
 
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d приглашение доступно"
-msgstr[1] "%d приглашений доступно"
-msgstr[2] "%d приглашений доступно"
-msgstr[3] "%d приглашений доступно"
+#: include/nav.php:177
+msgid "Outbox"
+msgstr "Исходящие"
 
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Ð\9fоиÑ\81к Ð»Ñ\8eдей"
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
+msgstr "Ð\9dовое Ñ\81ообÑ\89ение"
 
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Ð\92ведиÑ\82е Ð¸Ð¼Ñ\8f Ð¸Ð»Ð¸ Ð¸Ð½Ñ\82еÑ\80еÑ\81"
+#: include/nav.php:181
+msgid "Manage"
+msgstr "УпÑ\80авлÑ\8fÑ\82Ñ\8c"
 
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Ð\9fÑ\80имеÑ\80Ñ\8b: Ð Ð¾Ð±ÐµÑ\80Ñ\82 Morgenstein, Ð Ñ\8bбалка"
+#: include/nav.php:181
+msgid "Manage other pages"
+msgstr "УпÑ\80авление Ð´Ñ\80Ñ\83гими Ñ\81Ñ\82Ñ\80аниÑ\86ами"
 
-#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
-msgid "Find"
-msgstr "Ð\9dайÑ\82и"
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
+msgstr "Ð\94елегиÑ\80ование"
 
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:198
-msgid "Friend Suggestions"
-msgstr "Предложения друзей"
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Делегировать управление страницей"
 
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:197
-msgid "Similar Interests"
-msgstr "Похожие интересы"
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
+msgid "Settings"
+msgstr "Настройки"
 
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "СлÑ\83Ñ\87айнÑ\8bй Ð¿Ñ\80оÑ\84илÑ\8c"
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
 
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:199
-msgid "Invite Friends"
-msgstr "Ð\9fÑ\80иглаÑ\81иÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей"
+#: include/nav.php:189 include/identity.php:290
+msgid "Profiles"
+msgstr "Ð\9fÑ\80оÑ\84или"
 
-#: include/contact_widgets.php:115
-msgid "Networks"
-msgstr "СеÑ\82и"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
+msgstr "УпÑ\80авление/Ñ\80едакÑ\82иÑ\80ование Ð¿Ñ\80оÑ\84илей"
 
-#: include/contact_widgets.php:118
-msgid "All Networks"
-msgstr "Ð\92Ñ\81е Ñ\81еÑ\82и"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
+msgstr "УпÑ\80авление / Ñ\80едакÑ\82иÑ\80ование Ð´Ñ\80Ñ\83зей Ð¸ ÐºÐ¾Ð½Ñ\82акÑ\82ов"
 
-#: include/contact_widgets.php:150 include/features.php:104
-msgid "Saved Folders"
-msgstr "СоÑ\85Ñ\80анÑ\91ннÑ\8bе Ð¿Ð°Ð¿ÐºÐ¸"
+#: include/nav.php:197 mod/admin.php:196
+msgid "Admin"
+msgstr "Ð\90дминиÑ\81Ñ\82Ñ\80аÑ\82оÑ\80"
 
-#: include/contact_widgets.php:153 include/contact_widgets.php:187
-msgid "Everything"
-msgstr "Ð\92Ñ\81Ñ\91"
+#: include/nav.php:197
+msgid "Site setup and configuration"
+msgstr "Ð\9aонÑ\84игÑ\83Ñ\80аÑ\86иÑ\8f Ñ\81айÑ\82а"
 
-#: include/contact_widgets.php:184
-msgid "Categories"
-msgstr "Ð\9aаÑ\82егоÑ\80ии"
+#: include/nav.php:200
+msgid "Navigation"
+msgstr "Ð\9dавигаÑ\86иÑ\8f"
 
-#: include/contact_widgets.php:248
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d Контакт"
-msgstr[1] "%d Контактов"
-msgstr[2] "%d Контактов"
-msgstr[3] "%d Контактов"
+#: include/nav.php:200
+msgid "Site map"
+msgstr "Карта сайта"
 
-#: include/conversation.php:122 include/conversation.php:258
-#: include/like.php:180 include/text.php:1804
-msgid "event"
-msgstr "мероприятие"
+#: include/plugin.php:530 include/plugin.php:532
+msgid "Click here to upgrade."
+msgstr "Нажмите для обновления."
 
-#: include/conversation.php:125 include/conversation.php:134
-#: include/conversation.php:261 include/conversation.php:270
-#: include/diaspora.php:1530 include/like.php:178 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "status"
-msgstr "статус"
+#: include/plugin.php:538
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Это действие превышает лимиты, установленные вашим тарифным планом."
 
-#: include/conversation.php:130 include/conversation.php:266
-#: include/like.php:178 include/text.php:1806 mod/subthread.php:88
-#: mod/tagger.php:62
-msgid "photo"
-msgstr "фото"
+#: include/plugin.php:543
+msgid "This action is not available under your subscription plan."
+msgstr "Это действие не доступно в соответствии с вашим планом подписки."
 
-#: include/conversation.php:141 include/diaspora.php:1526 include/like.php:27
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s нравится %3$s от %2$s "
+#: include/profile_selectors.php:6
+msgid "Male"
+msgstr "Мужчина"
 
-#: include/conversation.php:144 include/like.php:31 include/like.php:36
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s не нравится %3$s от %2$s "
+#: include/profile_selectors.php:6
+msgid "Female"
+msgstr "Женщина"
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s уделил внимание %2$s's %3$s"
+#: include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "В данный момент мужчина"
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr ""
+#: include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "В настоящее время женщина"
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr ""
+#: include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "В основном мужчина"
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:478
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s и %2$s теперь друзья"
+#: include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "В основном женщина"
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr ""
+#: include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Транссексуал"
 
-#: include/conversation.php:239 mod/mood.php:63
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr ""
+#: include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Интерсексуал"
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s tagged %2$s's %3$s в %4$s"
+#: include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Транссексуал"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "поÑ\81Ñ\82\8dлемент"
+#: include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Ð\93еÑ\80маÑ\84Ñ\80одит"
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s пометил %2$s %3$s как Фаворит"
+#: include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Средний род"
 
-#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
-#: mod/profiles.php:346
-msgid "Likes"
-msgstr "Лайки"
+#: include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Не определен"
 
-#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
-#: mod/profiles.php:350
-msgid "Dislikes"
-msgstr "Не нравится"
+#: include/profile_selectors.php:6
+msgid "Other"
+msgstr "Другой"
 
-#: include/conversation.php:588 include/conversation.php:1473
-#: mod/content.php:373 mod/photos.php:1630
-msgid "Attending"
-msgid_plural "Attending"
+#: include/profile_selectors.php:6 include/conversation.php:1547
+msgid "Undecided"
+msgid_plural "Undecided"
 msgstr[0] ""
 msgstr[1] ""
 msgstr[2] ""
 msgstr[3] ""
 
-#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
-msgid "Not attending"
-msgstr ""
+#: include/profile_selectors.php:23
+msgid "Males"
+msgstr "Мужчины"
 
-#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
-msgid "Might attend"
-msgstr ""
+#: include/profile_selectors.php:23
+msgid "Females"
+msgstr "Женщины"
 
-#: include/conversation.php:710 mod/content.php:453 mod/content.php:759
-#: mod/photos.php:1703 object/Item.php:137
-msgid "Select"
-msgstr "Выберите"
+#: include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Гей"
 
-#: include/conversation.php:711 mod/admin.php:1423 mod/contacts.php:816
-#: mod/contacts.php:1015 mod/content.php:454 mod/content.php:760
-#: mod/group.php:181 mod/photos.php:1704 mod/settings.php:744
-#: object/Item.php:138
-msgid "Delete"
-msgstr "Удалить"
+#: include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Лесбиянка"
 
-#: include/conversation.php:755 mod/content.php:487 mod/content.php:915
-#: mod/content.php:916 object/Item.php:356 object/Item.php:357
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Просмотреть профиль %s [@ %s]"
+#: include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Без предпочтений"
 
-#: include/conversation.php:767 object/Item.php:344
-msgid "Categories:"
-msgstr "Ð\9aаÑ\82егоÑ\80ии:"
+#: include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Ð\91иÑ\81екÑ\81Ñ\83ал"
 
-#: include/conversation.php:768 object/Item.php:345
-msgid "Filed under:"
-msgstr "Ð\92 Ñ\80Ñ\83бÑ\80ике:"
+#: include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Ð\90вÑ\82оÑ\81екÑ\81Ñ\83ал"
 
-#: include/conversation.php:775 mod/content.php:497 mod/content.php:928
-#: object/Item.php:370
-#, php-format
-msgid "%s from %s"
-msgstr "%s с %s"
+#: include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Воздержанный"
 
-#: include/conversation.php:791 mod/content.php:513
-msgid "View in context"
-msgstr "СмоÑ\82Ñ\80еÑ\82Ñ\8c Ð² ÐºÐ¾Ð½Ñ\82екÑ\81Ñ\82е"
+#: include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Ð\94евÑ\81Ñ\82венниÑ\86а"
 
-#: include/conversation.php:793 include/conversation.php:1256
-#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
-#: mod/message.php:337 mod/message.php:522 mod/photos.php:1592
-#: mod/wallmessage.php:140 object/Item.php:395
-msgid "Please wait"
-msgstr "Пожалуйста, подождите"
+#: include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: include/conversation.php:872
-msgid "remove"
-msgstr "удалить"
+#: include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Фетиш"
 
-#: include/conversation.php:876
-msgid "Delete Selected Items"
-msgstr "УдалиÑ\82Ñ\8c Ð²Ñ\8bбÑ\80аннÑ\8bе Ð¿Ð¾Ð·Ð¸Ñ\86ии"
+#: include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Ð\93Ñ\80Ñ\83пповой"
 
-#: include/conversation.php:968
-msgid "Follow Thread"
-msgstr "Ð\9fодпиÑ\81аÑ\82Ñ\8cÑ\81Ñ\8f Ð½Ð° Ñ\82ему"
+#: include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Ð\9dеÑ\82 Ð¸Ð½Ñ\82еÑ\80еÑ\81а Ðº Ñ\81екÑ\81у"
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s likes this."
-msgstr "%s нравится это."
+#: include/profile_selectors.php:42
+msgid "Single"
+msgstr "Без пары"
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s не нравится это."
+#: include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Пока никого нет"
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s attends."
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Available"
+msgstr "Доступный"
 
-#: include/conversation.php:1109
-#, php-format
-msgid "%s doesn't attend."
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Не ищу никого"
 
-#: include/conversation.php:1112
-#, php-format
-msgid "%s attends maybe."
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Имеет ошибку"
 
-#: include/conversation.php:1122
-msgid "and"
-msgstr "и"
+#: include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Ð\92лÑ\8eблÑ\91н"
 
-#: include/conversation.php:1128
-#, php-format
-msgid ", and %d other people"
-msgstr ", и %d других чел."
+#: include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Свидания"
 
-#: include/conversation.php:1137
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span %1$s>%2$d людям</span> нравится это"
+#: include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Изменяю супругу"
 
-#: include/conversation.php:1138
-#, php-format
-msgid "%s like this."
-msgstr "%s нравится это."
+#: include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Люблю секс"
 
-#: include/conversation.php:1141
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span %1$s>%2$d людям</span> не нравится это"
+#: include/profile_selectors.php:42 include/user.php:263 include/user.php:267
+msgid "Friends"
+msgstr "Друзья"
 
-#: include/conversation.php:1142
-#, php-format
-msgid "%s don't like this."
-msgstr "%s не нравится это"
+#: include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Друзья / Предпочтения"
 
-#: include/conversation.php:1145
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Обычный"
 
-#: include/conversation.php:1146
-#, php-format
-msgid "%s attend."
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Занят"
 
-#: include/conversation.php:1149
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Married"
+msgstr "Женат / Замужем"
 
-#: include/conversation.php:1150
-#, php-format
-msgid "%s don't attend."
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Воображаемо женат (замужем)"
 
-#: include/conversation.php:1153
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Партнеры"
 
-#: include/conversation.php:1154
-#, php-format
-msgid "%s anttend maybe."
-msgstr ""
+#: include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Партнерство"
 
-#: include/conversation.php:1184 include/conversation.php:1200
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Видимое <strong>всем</strong>"
+#: include/profile_selectors.php:42
+msgid "Common law"
+msgstr ""
 
-#: include/conversation.php:1185 include/conversation.php:1201
-#: mod/message.php:271 mod/message.php:278 mod/message.php:418
-#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121
-msgid "Please enter a link URL:"
-msgstr "Пожалуйста, введите URL ссылки:"
+#: include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Счастлив/а/"
 
-#: include/conversation.php:1186 include/conversation.php:1202
-msgid "Please enter a video link/URL:"
-msgstr "Ð\92ведиÑ\82е  Ñ\81Ñ\81Ñ\8bлкÑ\83 Ð½Ð° Ð²Ð¸Ð´ÐµÐ¾ link/URL:"
+#: include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Ð\9dе Ð² Ð¿Ð¾Ð¸Ñ\81ке"
 
-#: include/conversation.php:1187 include/conversation.php:1203
-msgid "Please enter an audio link/URL:"
-msgstr "Ð\92ведиÑ\82е Ñ\81Ñ\81Ñ\8bлкÑ\83 Ð½Ð° Ð°Ñ\83дио link/URL:"
+#: include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Свинг"
 
-#: include/conversation.php:1188 include/conversation.php:1204
-msgid "Tag term:"
-msgstr "Тег:"
+#: include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Ð\9fÑ\80еданнÑ\8bй"
 
-#: include/conversation.php:1189 include/conversation.php:1205
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Сохранить в папку:"
+#: include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Разделенный"
 
-#: include/conversation.php:1190 include/conversation.php:1206
-msgid "Where are you right now?"
-msgstr "Ð\98 Ð³Ð´Ðµ Ð²Ñ\8b Ñ\81ейÑ\87аÑ\81?"
+#: include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Ð\9dеÑ\81Ñ\82абилÑ\8cнÑ\8bй"
 
-#: include/conversation.php:1191
-msgid "Delete item(s)?"
-msgstr "УдалиÑ\82Ñ\8c ÐµÐ»ÐµÐ¼ÐµÐ½Ñ\82\82Ñ\8b)?"
+#: include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Разведен(а)"
 
-#: include/conversation.php:1237
-msgid "Share"
-msgstr "Ð\9fоделиÑ\82Ñ\8cÑ\81Ñ\8f"
+#: include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Ð\92ообÑ\80ажаемо Ñ\80азведен(а)"
 
-#: include/conversation.php:1238 mod/editpost.php:100 mod/message.php:335
-#: mod/message.php:519 mod/wallmessage.php:138
-msgid "Upload photo"
-msgstr "Загрузить фото"
+#: include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Овдовевший"
 
-#: include/conversation.php:1239 mod/editpost.php:101
-msgid "upload photo"
-msgstr "загÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\84оÑ\82о"
+#: include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Ð\9dеопÑ\80еделеннÑ\8bй"
 
-#: include/conversation.php:1240 mod/editpost.php:102
-msgid "Attach file"
-msgstr "Ð\9fÑ\80икÑ\80епиÑ\82Ñ\8c Ñ\84айл"
+#: include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "влиÑ\88ком Ñ\81ложно"
 
-#: include/conversation.php:1241 mod/editpost.php:103
-msgid "attach file"
-msgstr "пÑ\80иложиÑ\82Ñ\8c Ñ\84айл"
+#: include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ð\9dе Ð±ÐµÑ\81покоиÑ\82Ñ\8c"
 
-#: include/conversation.php:1242 mod/editpost.php:104 mod/message.php:336
-#: mod/message.php:520 mod/wallmessage.php:139
-msgid "Insert web link"
-msgstr "Вставить веб-ссылку"
+#: include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Спросите меня"
 
-#: include/conversation.php:1243 mod/editpost.php:105
-msgid "web link"
-msgstr "веб-Ñ\81Ñ\81Ñ\8bлка"
+#: include/security.php:61
+msgid "Welcome "
+msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c"
 
-#: include/conversation.php:1244 mod/editpost.php:106
-msgid "Insert video link"
-msgstr "Ð\92Ñ\81Ñ\82авиÑ\82Ñ\8c Ñ\81Ñ\81Ñ\8bлкÑ\83 Ð²Ð¸Ð´ÐµÐ¾"
+#: include/security.php:62
+msgid "Please upload a profile photo."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð·Ð°Ð³Ñ\80Ñ\83зиÑ\82е Ñ\84оÑ\82огÑ\80аÑ\84иÑ\8e Ð¿Ñ\80оÑ\84илÑ\8f."
 
-#: include/conversation.php:1245 mod/editpost.php:107
-msgid "video link"
-msgstr "видео-Ñ\81Ñ\81Ñ\8bлка"
+#: include/security.php:65
+msgid "Welcome back "
+msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c Ð¾Ð±Ñ\80аÑ\82но, "
 
-#: include/conversation.php:1246 mod/editpost.php:108
-msgid "Insert audio link"
-msgstr "Вставить ссылку аудио"
+#: include/security.php:429
+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 "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."
 
-#: include/conversation.php:1247 mod/editpost.php:109
-msgid "audio link"
-msgstr "аÑ\83дио-Ñ\81Ñ\81Ñ\8bлка"
+#: include/uimport.php:91
+msgid "Error decoding account file"
+msgstr "Ð\9eÑ\88ибка Ñ\80аÑ\81Ñ\88иÑ\84Ñ\80овки Ñ\84айла Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
 
-#: include/conversation.php:1248 mod/editpost.php:110
-msgid "Set your location"
-msgstr "Ð\97адаÑ\82Ñ\8c Ð²Ð°Ñ\88е Ð¼ÐµÑ\81Ñ\82оположение"
+#: include/uimport.php:97
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Ð\9eÑ\88ибка! Ð\9dепÑ\80авилÑ\8cнаÑ\8f Ð²ÐµÑ\80Ñ\81иÑ\8f Ð´Ð°Ð½Ð½Ñ\8bÑ\85 Ð² Ñ\84айле! Ð­Ñ\82о Ð½Ðµ Ñ\84айл Ð°ÐºÐºÐ°Ñ\83нÑ\82а Friendica?"
 
-#: include/conversation.php:1249 mod/editpost.php:111
-msgid "set location"
-msgstr "установить местонахождение"
+#: include/uimport.php:113 include/uimport.php:124
+msgid "Error! Cannot check nickname"
+msgstr "Ошибка! Невозможно проверить никнейм"
 
-#: include/conversation.php:1250 mod/editpost.php:112
-msgid "Clear browser location"
-msgstr "Очистить местонахождение браузера"
+#: include/uimport.php:117 include/uimport.php:128
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Пользователь '%s' уже существует на этом сервере!"
 
-#: include/conversation.php:1251 mod/editpost.php:113
-msgid "clear location"
-msgstr "убрать местонахождение"
+#: include/uimport.php:150
+msgid "User creation error"
+msgstr "Ошибка создания пользователя"
 
-#: include/conversation.php:1253 mod/editpost.php:127
-msgid "Set title"
-msgstr "УÑ\81Ñ\82ановиÑ\82Ñ\8c Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº"
+#: include/uimport.php:170
+msgid "User profile creation error"
+msgstr "Ð\9eÑ\88ибка Ñ\81озданиÑ\8f Ð¿Ñ\80оÑ\84илÑ\8f Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
 
-#: include/conversation.php:1255 mod/editpost.php:129
-msgid "Categories (comma-separated list)"
-msgstr "Категории (список через запятую)"
+#: include/uimport.php:219
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d контакт не импортирован"
+msgstr[1] "%d контакты не импортированы"
+msgstr[2] "%d контакты не импортированы"
+msgstr[3] "%d контакты не импортированы"
 
-#: include/conversation.php:1257 mod/editpost.php:115
-msgid "Permission settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\80азÑ\80еÑ\88ений"
+#: include/uimport.php:289
+msgid "Done. You can now login with your username and password"
+msgstr "Ð\97авеÑ\80Ñ\88ено. Ð¢ÐµÐ¿ÐµÑ\80Ñ\8c Ð²Ñ\8b Ð¼Ð¾Ð¶ÐµÑ\82е Ð²Ð¾Ð¹Ñ\82и Ñ\81 Ð²Ð°Ñ\88им Ð»Ð¾Ð³Ð¸Ð½Ð¾Ð¼ Ð¸ Ð¿Ð°Ñ\80олем"
 
-#: include/conversation.php:1258 mod/editpost.php:144
-msgid "permissions"
-msgstr "разрешения"
+#: include/Contact.php:395 include/Contact.php:408 include/Contact.php:453
+#: include/conversation.php:1004 include/conversation.php:1020
+#: mod/allfriends.php:68 mod/directory.php:157 mod/match.php:73
+#: mod/suggest.php:82 mod/dirfind.php:209
+msgid "View Profile"
+msgstr "Просмотреть профиль"
 
-#: include/conversation.php:1266 mod/editpost.php:124
-msgid "Public post"
-msgstr "Публичное сообщение"
+#: include/Contact.php:409 include/contact_widgets.php:32
+#: include/conversation.php:1017 mod/allfriends.php:69 mod/contacts.php:610
+#: mod/match.php:74 mod/suggest.php:83 mod/dirfind.php:210 mod/follow.php:106
+msgid "Connect/Follow"
+msgstr "Подключиться/Следовать"
 
-#: include/conversation.php:1271 mod/content.php:737 mod/editpost.php:135
-#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661
-#: mod/photos.php:1747 object/Item.php:714
-msgid "Preview"
-msgstr "Предварительный просмотр"
+#: include/Contact.php:452 include/conversation.php:1003
+msgid "View Status"
+msgstr "Просмотреть статус"
 
-#: include/conversation.php:1275 include/items.php:1983 mod/contacts.php:455
-#: mod/dfrn_request.php:889 mod/editpost.php:138 mod/fbrowser.php:100
-#: mod/fbrowser.php:135 mod/follow.php:124 mod/message.php:209
-#: mod/photos.php:240 mod/photos.php:331 mod/settings.php:682
-#: mod/settings.php:708 mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
-#: mod/videos.php:132
-msgid "Cancel"
-msgstr "Отмена"
+#: include/Contact.php:454 include/conversation.php:1005
+msgid "View Photos"
+msgstr "Просмотреть фото"
 
-#: include/conversation.php:1281
-msgid "Post to Groups"
-msgstr "Пост для групп"
+#: include/Contact.php:455 include/conversation.php:1006
+msgid "Network Posts"
+msgstr "Посты сети"
 
-#: include/conversation.php:1282
-msgid "Post to Contacts"
-msgstr "Пост для контактов"
+#: include/Contact.php:456 include/conversation.php:1007
+msgid "View Contact"
+msgstr "Просмотреть контакт"
 
-#: include/conversation.php:1283
-msgid "Private post"
-msgstr "Ð\9bиÑ\87ное Ñ\81ообÑ\89ение"
+#: include/Contact.php:457
+msgid "Drop Contact"
+msgstr "УдалиÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
 
-#: include/conversation.php:1288 include/identity.php:259 mod/editpost.php:142
-msgid "Message"
-msgstr "СообÑ\89ение"
+#: include/Contact.php:458 include/conversation.php:1008
+msgid "Send PM"
+msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð\9bС"
 
-#: include/conversation.php:1289 mod/editpost.php:143
-msgid "Browser"
-msgstr "Ð\91Ñ\80аÑ\83зеÑ\80"
+#: include/Contact.php:459 include/conversation.php:1012
+msgid "Poke"
+msgstr "поÑ\82Ñ\8bкаÑ\82Ñ\8c"
 
-#: include/conversation.php:1445
-msgid "View all"
-msgstr "Ð\9fоÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð²Ñ\81е"
+#: include/Contact.php:840
+msgid "Organisation"
+msgstr "Ð\9eÑ\80ганизаÑ\86иÑ\8f"
 
-#: include/conversation.php:1467
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Нравится"
-msgstr[1] "Нравится"
-msgstr[2] "Нравится"
-msgstr[3] "Нравится"
+#: include/Contact.php:843
+msgid "News"
+msgstr "Новости"
 
-#: include/conversation.php:1470
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "Не нравится"
-msgstr[1] "Не нравится"
-msgstr[2] "Не нравится"
-msgstr[3] "Не нравится"
+#: include/Contact.php:846
+msgid "Forum"
+msgstr "Форум"
 
-#: include/conversation.php:1476
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: include/acl_selectors.php:353
+msgid "Post to Email"
+msgstr "Отправить на Email"
 
-#: include/conversation.php:1479 include/profile_selectors.php:6
-msgid "Undecided"
-msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+#: include/acl_selectors.php:358
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Коннекторы отключены так как \"%s\" включен."
 
-#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697
-msgid "Miscellaneous"
-msgstr "Разное"
+#: include/acl_selectors.php:359 mod/settings.php:1188
+msgid "Hide your profile details from unknown viewers?"
+msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ð´Ð°Ð½Ð½Ñ\8bе Ð¿Ñ\80оÑ\84илÑ\8f Ð¸Ð· Ð½ÐµÐ¸Ð·Ð²ÐµÑ\81Ñ\82нÑ\8bÑ\85 Ð·Ñ\80иÑ\82елей?"
 
-#: include/datetime.php:184 include/identity.php:641
-msgid "Birthday:"
-msgstr "Ð\94енÑ\8c Ñ\80ождениÑ\8f:"
+#: include/acl_selectors.php:365
+msgid "Visible to everybody"
+msgstr "Ð\92идимо Ð²Ñ\81ем"
 
-#: include/datetime.php:186 mod/profiles.php:720
-msgid "Age: "
-msgstr "Ð\92озÑ\80аÑ\81Ñ\82"
+#: include/acl_selectors.php:366 view/theme/vier/config.php:108
+msgid "show"
+msgstr "показÑ\8bваÑ\82Ñ\8c"
 
-#: include/datetime.php:188
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD или MM-DD"
+#: include/acl_selectors.php:367 view/theme/vier/config.php:108
+msgid "don't show"
+msgstr "не показывать"
 
-#: include/datetime.php:343
-msgid "never"
-msgstr "никогда"
+#: include/acl_selectors.php:373 mod/editpost.php:123
+msgid "CC: email addresses"
+msgstr "Ð\9aопии Ð½Ð° email Ð°Ð´Ñ\80еÑ\81а"
 
-#: include/datetime.php:349
-msgid "less than a second ago"
-msgstr "менее Ñ\81ек. Ð½Ð°Ð·Ð°Ð´"
+#: include/acl_selectors.php:374 mod/editpost.php:130
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Ð\9fÑ\80имеÑ\80: bob@example.com, mary@example.com"
 
-#: include/datetime.php:352
-msgid "year"
-msgstr "год"
+#: include/acl_selectors.php:376 mod/events.php:508 mod/photos.php:1196
+#: mod/photos.php:1593
+msgid "Permissions"
+msgstr "Разрешения"
 
-#: include/datetime.php:352
-msgid "years"
-msgstr "леÑ\82"
+#: include/acl_selectors.php:377
+msgid "Close"
+msgstr "Ð\97акÑ\80Ñ\8bÑ\82Ñ\8c"
 
-#: include/datetime.php:353 include/event.php:481 mod/cal.php:279
-#: mod/events.php:396
-msgid "month"
-msgstr "меÑ\81."
+#: include/api.php:1089
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Ð\94невной Ð»Ð¸Ð¼Ð¸Ñ\82 Ð² %d Ð¿Ð¾Ñ\81Ñ\82ов Ð´Ð¾Ñ\81Ñ\82игнÑ\83Ñ\82. Ð\9fоÑ\81Ñ\82 Ð¾Ñ\82клонен."
 
-#: include/datetime.php:353
-msgid "months"
-msgstr "мес."
+#: include/api.php:1110
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Недельный лимит в %d постов достигнут. Пост отклонен."
 
-#: include/datetime.php:354 include/event.php:482 mod/cal.php:280
-#: mod/events.php:397
-msgid "week"
-msgstr "неделÑ\8f"
+#: include/api.php:1131
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Ð\9cеÑ\81Ñ\8fÑ\87нÑ\8bй Ð»Ð¸Ð¼Ð¸Ñ\82 Ð² %d Ð¿Ð¾Ñ\81Ñ\82ов Ð´Ð¾Ñ\81Ñ\82игнÑ\83Ñ\82. Ð\9fоÑ\81Ñ\82 Ð¾Ñ\82клонен."
 
-#: include/datetime.php:354
-msgid "weeks"
-msgstr "неделÑ\8c"
+#: include/auth.php:51
+msgid "Logged out."
+msgstr "Ð\92Ñ\8bÑ\85од Ð¸Ð· Ñ\81иÑ\81Ñ\82емÑ\8b."
 
-#: include/datetime.php:355 include/event.php:483 mod/cal.php:281
-#: mod/events.php:398
-msgid "day"
-msgstr "день"
+#: include/auth.php:122 include/auth.php:184 mod/openid.php:110
+msgid "Login failed."
+msgstr "Войти не удалось."
 
-#: include/datetime.php:355
-msgid "days"
-msgstr "дней"
+#: include/auth.php:138 include/user.php:75
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID."
 
-#: include/datetime.php:356
-msgid "hour"
-msgstr "час"
+#: include/auth.php:138 include/user.php:75
+msgid "The error message was:"
+msgstr "Сообщение об ошибке было:"
 
-#: include/datetime.php:356
-msgid "hours"
-msgstr "час."
+#: include/bb2diaspora.php:230 include/event.php:17 mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: include/datetime.php:357
-msgid "minute"
-msgstr "минута"
+#: include/bb2diaspora.php:236 include/event.php:34 include/event.php:54
+#: include/event.php:525
+msgid "Starts:"
+msgstr "Начало:"
 
-#: include/datetime.php:357
-msgid "minutes"
-msgstr "мин."
+#: include/bb2diaspora.php:244 include/event.php:37 include/event.php:60
+#: include/event.php:526
+msgid "Finishes:"
+msgstr "Окончание:"
 
-#: include/datetime.php:358
-msgid "second"
-msgstr "секунда"
+#: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
+#: include/event.php:527 include/identity.php:336 mod/contacts.php:636
+#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
+msgid "Location:"
+msgstr "Откуда:"
 
-#: include/datetime.php:358
-msgid "seconds"
-msgstr "сек."
+#: include/bbcode.php:380 include/bbcode.php:1132 include/bbcode.php:1133
+msgid "Image/photo"
+msgstr "Изображение / Фото"
 
-#: include/datetime.php:367
+#: include/bbcode.php:497
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s назад"
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/datetime.php:585
-#, php-format
-msgid "%s's birthday"
-msgstr "день рождения %s"
+#: include/bbcode.php:1089 include/bbcode.php:1111
+msgid "$1 wrote:"
+msgstr "$1 написал:"
 
-#: include/datetime.php:586 include/dfrn.php:1131
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "С днём рождения %s"
+#: include/bbcode.php:1141 include/bbcode.php:1142
+msgid "Encrypted content"
+msgstr "Зашифрованный контент"
 
-#: include/dba.php:43 include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
+#: include/bbcode.php:1257
+msgid "Invalid source protocol"
+msgstr "Неправильный протокол источника"
 
-#: include/dbstructure.php:36
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr ""
+#: include/bbcode.php:1267
+msgid "Invalid link protocol"
+msgstr "Неправильная протокольная ссылка"
 
-#: include/dbstructure.php:41
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Сообщение об ошибке:\n[pre]%s[/pre]"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Неизвестно | Не определено"
 
-#: include/dbstructure.php:199
-msgid "Errors encountered creating database tables."
-msgstr "Ð\9eбнаÑ\80Ñ\83женÑ\8b Ð¾Ñ\88ибки Ð¿Ñ\80и Ñ\81оздании Ñ\82аблиÑ\86 Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85."
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Ð\91локиÑ\80оваÑ\82Ñ\8c Ð½ÐµÐ¼ÐµÐ´Ð»ÐµÐ½Ð½Ð¾"
 
-#: include/dbstructure.php:333 include/dbstructure.php:341
-#: include/dbstructure.php:349 include/dbstructure.php:354
-#: include/dbstructure.php:359
-msgid "Errors encountered performing database changes."
-msgstr "Обнаружены ошибки при изменении базы данных."
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Тролль, спаммер, рассылает рекламу"
 
-#: include/delivery.php:427
-msgid "(no subject)"
-msgstr "(без темы)"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Известные мне, но нет определенного мнения"
 
-#: include/delivery.php:439 include/enotify.php:43
-msgid "noreply"
-msgstr "без Ð¾Ñ\82веÑ\82а"
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "ХоÑ\80оÑ\88о, Ð½Ð°Ð²ÐµÑ\80ное, Ð±ÐµÐ·Ð²Ñ\80еднÑ\8bе"
 
-#: include/dfrn.php:1130
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "День рождения %s"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Уважаемые, есть мое доверие"
 
-#: include/diaspora.php:2087
-msgid "Sharing notification from Diaspora network"
-msgstr "Уведомление Ð¾ Ñ\88аÑ\80е Ð¸Ð· Ñ\81еÑ\82и Diaspora"
+#: include/contact_selectors.php:56 mod/admin.php:980
+msgid "Frequently"
+msgstr "ЧаÑ\81Ñ\82о"
 
-#: include/diaspora.php:3096
-msgid "Attachments:"
-msgstr "Ð\92ложениÑ\8f:"
+#: include/contact_selectors.php:57 mod/admin.php:981
+msgid "Hourly"
+msgstr "Раз Ð² Ñ\87аÑ\81"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "УведомлениÑ\8f Friendica"
+#: include/contact_selectors.php:58 mod/admin.php:982
+msgid "Twice daily"
+msgstr "Ð\94ва Ñ\80аза Ð² Ð´ÐµÐ½Ñ\8c"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "СпаÑ\81ибо,"
+#: include/contact_selectors.php:59 mod/admin.php:983
+msgid "Daily"
+msgstr "Ð\95жедневно"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "%s администратор"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Еженедельно"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, администратор %2$s"
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Ежемесячно"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:886
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s отправил вам новое личное сообщение на %2$s."
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s послал вам %2$s."
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
+msgid "Email"
+msgstr "Эл. почта"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "личное сообщение"
+#: include/contact_selectors.php:80 mod/dfrn_request.php:888
+#: mod/settings.php:848
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Комментарий к #%1$d от %2$s"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите."
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу."
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s написал на вашей стене на %2$s"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Коннектор Diaspora"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s написал на [url=%2$s]вашей стене[/url]"
+#: include/contact_selectors.php:91
+msgid "GNU Social Connector"
+msgstr ""
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s отметил вас"
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "pnut"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s отметил вас в %2$s"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]поставил тег[/url]."
+#: include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Добавить контакт"
 
-#: include/enotify.php:199
+#: include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Введите адрес или веб-местонахождение"
+
+#: include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Пример: bob@example.com, http://example.com/barbara"
+
+#: include/contact_widgets.php:10 include/identity.php:224
+#: mod/allfriends.php:85 mod/match.php:89 mod/suggest.php:101
+#: mod/dirfind.php:207
+msgid "Connect"
+msgstr "Подключить"
+
+#: include/contact_widgets.php:24
 #, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s поделился новым постом"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d приглашение доступно"
+msgstr[1] "%d приглашений доступно"
+msgstr[2] "%d приглашений доступно"
+msgstr[3] "%d приглашений доступно"
 
-#: include/enotify.php:201
+#: include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Поиск людей"
+
+#: include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Введите имя или интерес"
+
+#: include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Примеры: Роберт Morgenstein, Рыбалка"
+
+#: include/contact_widgets.php:34 mod/contacts.php:806 mod/directory.php:206
+msgid "Find"
+msgstr "Найти"
+
+#: include/contact_widgets.php:35 mod/suggest.php:114
+#: view/theme/vier/theme.php:201
+msgid "Friend Suggestions"
+msgstr "Предложения друзей"
+
+#: include/contact_widgets.php:36 view/theme/vier/theme.php:200
+msgid "Similar Interests"
+msgstr "Похожие интересы"
+
+#: include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Случайный профиль"
+
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:202
+msgid "Invite Friends"
+msgstr "Пригласить друзей"
+
+#: include/contact_widgets.php:125
+msgid "Networks"
+msgstr "Сети"
+
+#: include/contact_widgets.php:128
+msgid "All Networks"
+msgstr "Все сети"
+
+#: include/contact_widgets.php:160 include/features.php:104
+msgid "Saved Folders"
+msgstr "Сохранённые папки"
+
+#: include/contact_widgets.php:163 include/contact_widgets.php:198
+msgid "Everything"
+msgstr "Всё"
+
+#: include/contact_widgets.php:195
+msgid "Categories"
+msgstr "Категории"
+
+#: include/contact_widgets.php:264
 #, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s поделился новым постом на %2$s"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d Контакт"
+msgstr[1] "%d Контактов"
+msgstr[2] "%d Контактов"
+msgstr[3] "%d Контактов"
 
-#: include/enotify.php:202
+#: include/conversation.php:159
 #, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]поделился постом[/url]."
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s уделил внимание %2$s's %3$s"
 
-#: include/enotify.php:213
+#: include/conversation.php:162
 #, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s потыкал вас"
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr ""
 
-#: include/enotify.php:215
+#: include/conversation.php:165
 #, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s потыкал вас на %2$s"
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr ""
 
-#: include/enotify.php:216
+#: include/conversation.php:198 mod/dfrn_confirm.php:478
 #, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]потыкал вас[/url]."
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s и %2$s теперь друзья"
 
-#: include/enotify.php:231
+#: include/conversation.php:239
 #, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s поставил тег вашему посту"
+msgid "%1$s poked %2$s"
+msgstr ""
 
-#: include/enotify.php:233
+#: include/conversation.php:260 mod/mood.php:63
 #, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s поставил тег вашему посту на %2$s"
+msgid "%1$s is currently %2$s"
+msgstr ""
 
-#: include/enotify.php:234
+#: include/conversation.php:307 mod/tagger.php:95
 #, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s поставил тег [url=%2$s]вашему посту[/url]"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s tagged %2$s's %3$s в %4$s"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Сообщение] получен запрос"
+#: include/conversation.php:334
+msgid "post/item"
+msgstr "пост/элемент"
 
-#: include/enotify.php:247
+#: include/conversation.php:335
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Вы получили запрос от '%1$s' на %2$s"
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s пометил %2$s %3$s как Фаворит"
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Ð\92Ñ\8b Ð¿Ð¾Ð»Ñ\83Ñ\87или [url=%1$s]запÑ\80оÑ\81[/url] Ð¾Ñ\82 %2$s."
+#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
+#: mod/profiles.php:340
+msgid "Likes"
+msgstr "Ð\9bайки"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Ð\92Ñ\8b Ð¼Ð¾Ð¶ÐµÑ\82е Ð¿Ð¾Ñ\81моÑ\82Ñ\80еÑ\82Ñ\8c ÐµÐ³Ð¾ Ð¿Ñ\80оÑ\84илÑ\8c Ð·Ð´ÐµÑ\81Ñ\8c %s"
+#: include/conversation.php:614 mod/content.php:372 mod/photos.php:1662
+#: mod/profiles.php:344
+msgid "Dislikes"
+msgstr "Ð\9dе Ð½Ñ\80авиÑ\82Ñ\81Ñ\8f"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Посетите %s для подтверждения или отказа запроса."
+#: include/conversation.php:615 include/conversation.php:1541
+#: mod/content.php:373 mod/photos.php:1663
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notify] Новый человек делится с вами"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
+msgid "Not attending"
+msgstr ""
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s делится с вами на %2$s"
+#: include/conversation.php:615 mod/content.php:373 mod/photos.php:1663
+msgid "Might attend"
+msgstr ""
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notify] У вас новый подписчик"
+#: include/conversation.php:747 mod/content.php:453 mod/content.php:759
+#: mod/photos.php:1728 object/Item.php:137
+msgid "Select"
+msgstr "Выберите"
 
-#: include/enotify.php:273 include/enotify.php:274
+#: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
+#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
+#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
+msgid "Delete"
+msgstr "Удалить"
+
+#: include/conversation.php:791 mod/content.php:487 mod/content.php:915
+#: mod/content.php:916 object/Item.php:356 object/Item.php:357
 #, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "У Ð²Ð°Ñ\81 Ð½Ð¾Ð²Ñ\8bй Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81Ñ\87ик Ð½Ð° %2$s : %1$s"
+msgid "View %s's profile @ %s"
+msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð¿Ñ\80оÑ\84илÑ\8c %s [@ %s]"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica: Оповещение] получено предложение дружбы"
+#: include/conversation.php:803 object/Item.php:344
+msgid "Categories:"
+msgstr "Категории:"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Вы получили предложение дружбы от '%1$s' на %2$s"
+#: include/conversation.php:804 object/Item.php:345
+msgid "Filed under:"
+msgstr "В рубрике:"
 
-#: include/enotify.php:288
+#: include/conversation.php:811 mod/content.php:497 mod/content.php:928
+#: object/Item.php:370
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s."
+msgid "%s from %s"
+msgstr "%s с %s"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Ð\98мÑ\8f:"
+#: include/conversation.php:827 mod/content.php:513
+msgid "View in context"
+msgstr "СмоÑ\82Ñ\80еÑ\82Ñ\8c Ð² ÐºÐ¾Ð½Ñ\82екÑ\81Ñ\82е"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Фото:"
+#: include/conversation.php:829 include/conversation.php:1298
+#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
+#: mod/wallmessage.php:140 mod/message.php:337 mod/message.php:522
+#: mod/photos.php:1627 object/Item.php:395
+msgid "Please wait"
+msgstr "Пожалуйста, подождите"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса."
+#: include/conversation.php:906
+msgid "remove"
+msgstr "удалить"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notify] Соединение принято"
+#: include/conversation.php:910
+msgid "Delete Selected Items"
+msgstr "Удалить выбранные позиции"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' принял соединение с вами на %2$s"
+#: include/conversation.php:1002
+msgid "Follow Thread"
+msgstr "Подписаться на тему"
 
-#: include/enotify.php:308 include/enotify.php:322
+#: include/conversation.php:1139
 #, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]."
-
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений."
+msgid "%s likes this."
+msgstr "%s нравится это."
 
-#: include/enotify.php:314
+#: include/conversation.php:1142
 #, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Посетите %s если вы хотите сделать изменения в этом отношении."
+msgid "%s doesn't like this."
+msgstr "%s не нравится это."
 
-#: include/enotify.php:326
+#: include/conversation.php:1145
 #, 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."
+msgid "%s attends."
 msgstr ""
 
-#: include/enotify.php:328
+#: include/conversation.php:1148
 #, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/enotify.php:330
+#: include/conversation.php:1151
 #, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Посетите %s если вы хотите сделать изменения в этом отношении."
+msgid "%s attends maybe."
+msgstr ""
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Notify] Запрос на регистрацию"
+#: include/conversation.php:1162
+msgid "and"
+msgstr "и"
 
-#: include/enotify.php:342
+#: include/conversation.php:1168
 #, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s"
+msgid ", and %d other people"
+msgstr ", и %d других чел."
 
-#: include/enotify.php:343
+#: include/conversation.php:1177
 #, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s."
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span %1$s>%2$d людям</span> нравится это"
 
-#: include/enotify.php:347
+#: include/conversation.php:1178
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Полное имя:⇥%1$s\\nСайт:⇥%2$s\\nЛогин:⇥%3$s (%4$s)"
+msgid "%s like this."
+msgstr "%s нравится это."
 
-#: include/enotify.php:350
+#: include/conversation.php:1181
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос."
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span %1$s>%2$d людям</span> не нравится это"
 
-#: include/event.php:442
-msgid "Sun"
-msgstr "Вс"
+#: include/conversation.php:1182
+#, php-format
+msgid "%s don't like this."
+msgstr "%s не нравится это"
 
-#: include/event.php:443
-msgid "Mon"
-msgstr "Пн"
+#: include/conversation.php:1185
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr ""
 
-#: include/event.php:444
-msgid "Tue"
-msgstr "Вт"
+#: include/conversation.php:1186
+#, php-format
+msgid "%s attend."
+msgstr ""
 
-#: include/event.php:445
-msgid "Wed"
-msgstr "Ср"
+#: include/conversation.php:1189
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr ""
 
-#: include/event.php:446
-msgid "Thu"
-msgstr "Чт"
+#: include/conversation.php:1190
+#, php-format
+msgid "%s don't attend."
+msgstr ""
 
-#: include/event.php:447
-msgid "Fri"
-msgstr "Пт"
+#: include/conversation.php:1193
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr ""
 
-#: include/event.php:448
-msgid "Sat"
-msgstr "Сб"
+#: include/conversation.php:1194
+#, php-format
+msgid "%s anttend maybe."
+msgstr ""
 
-#: include/event.php:449 include/text.php:1132 mod/settings.php:981
-msgid "Sunday"
-msgstr "Ð\92оÑ\81кÑ\80еÑ\81енÑ\8cе"
+#: include/conversation.php:1223 include/conversation.php:1239
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Ð\92идимое <strong>вÑ\81ем</strong>"
 
-#: include/event.php:450 include/text.php:1132 mod/settings.php:981
-msgid "Monday"
-msgstr "Понедельник"
+#: include/conversation.php:1224 include/conversation.php:1240
+#: mod/wallmessage.php:114 mod/wallmessage.php:121 mod/message.php:271
+#: mod/message.php:278 mod/message.php:418 mod/message.php:425
+msgid "Please enter a link URL:"
+msgstr "Пожалуйста, введите URL ссылки:"
 
-#: include/event.php:451 include/text.php:1132
-msgid "Tuesday"
-msgstr "Вторник"
+#: include/conversation.php:1225 include/conversation.php:1241
+msgid "Please enter a video link/URL:"
+msgstr "Введите  ссылку на видео link/URL:"
 
-#: include/event.php:452 include/text.php:1132
-msgid "Wednesday"
-msgstr "СÑ\80еда"
+#: include/conversation.php:1226 include/conversation.php:1242
+msgid "Please enter an audio link/URL:"
+msgstr "Ð\92ведиÑ\82е Ñ\81Ñ\81Ñ\8bлкÑ\83 Ð½Ð° Ð°Ñ\83дио link/URL:"
 
-#: include/event.php:453 include/text.php:1132
-msgid "Thursday"
-msgstr "ЧеÑ\82веÑ\80г"
+#: include/conversation.php:1227 include/conversation.php:1243
+msgid "Tag term:"
+msgstr "Тег:"
 
-#: include/event.php:454 include/text.php:1132
-msgid "Friday"
-msgstr "Пятница"
+#: include/conversation.php:1228 include/conversation.php:1244
+#: mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Сохранить в папку:"
 
-#: include/event.php:455 include/text.php:1132
-msgid "Saturday"
-msgstr "СÑ\83ббоÑ\82а"
+#: include/conversation.php:1229 include/conversation.php:1245
+msgid "Where are you right now?"
+msgstr "Ð\98 Ð³Ð´Ðµ Ð²Ñ\8b Ñ\81ейÑ\87аÑ\81?"
 
-#: include/event.php:456
-msgid "Jan"
-msgstr "Янв"
+#: include/conversation.php:1230
+msgid "Delete item(s)?"
+msgstr "УдалиÑ\82Ñ\8c ÐµÐ»ÐµÐ¼ÐµÐ½Ñ\82\82Ñ\8b)?"
 
-#: include/event.php:457
-msgid "Feb"
-msgstr "Фев"
+#: include/conversation.php:1279
+msgid "Share"
+msgstr "Ð\9fоделиÑ\82Ñ\8cÑ\81Ñ\8f"
 
-#: include/event.php:458
-msgid "Mar"
-msgstr "Мрт"
+#: include/conversation.php:1280 mod/editpost.php:100 mod/wallmessage.php:138
+#: mod/message.php:335 mod/message.php:519
+msgid "Upload photo"
+msgstr "Загрузить фото"
 
-#: include/event.php:459
-msgid "Apr"
-msgstr "Ð\90пÑ\80"
+#: include/conversation.php:1281 mod/editpost.php:101
+msgid "upload photo"
+msgstr "загÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\84оÑ\82о"
 
-#: include/event.php:460 include/event.php:472 include/text.php:1136
-msgid "May"
-msgstr "Ð\9cай"
+#: include/conversation.php:1282 mod/editpost.php:102
+msgid "Attach file"
+msgstr "Ð\9fÑ\80икÑ\80епиÑ\82Ñ\8c Ñ\84айл"
 
-#: include/event.php:461
-msgid "Jun"
-msgstr "Ð\98Ñ\8eн"
+#: include/conversation.php:1283 mod/editpost.php:103
+msgid "attach file"
+msgstr "пÑ\80иложиÑ\82Ñ\8c Ñ\84айл"
 
-#: include/event.php:462
-msgid "Jul"
-msgstr "Июл"
+#: include/conversation.php:1284 mod/editpost.php:104 mod/wallmessage.php:139
+#: mod/message.php:336 mod/message.php:520
+msgid "Insert web link"
+msgstr "Вставить веб-ссылку"
 
-#: include/event.php:463
-msgid "Aug"
-msgstr "Ð\90вг"
+#: include/conversation.php:1285 mod/editpost.php:105
+msgid "web link"
+msgstr "веб-Ñ\81Ñ\81Ñ\8bлка"
 
-#: include/event.php:464
-msgid "Sept"
-msgstr "Сен"
+#: include/conversation.php:1286 mod/editpost.php:106
+msgid "Insert video link"
+msgstr "Ð\92Ñ\81Ñ\82авиÑ\82Ñ\8c Ñ\81Ñ\81Ñ\8bлкÑ\83 Ð²Ð¸Ð´ÐµÐ¾"
 
-#: include/event.php:465
-msgid "Oct"
-msgstr "Ð\9eкÑ\82"
+#: include/conversation.php:1287 mod/editpost.php:107
+msgid "video link"
+msgstr "видео-Ñ\81Ñ\81Ñ\8bлка"
 
-#: include/event.php:466
-msgid "Nov"
-msgstr "Ð\9dбÑ\80"
+#: include/conversation.php:1288 mod/editpost.php:108
+msgid "Insert audio link"
+msgstr "Ð\92Ñ\81Ñ\82авиÑ\82Ñ\8c Ñ\81Ñ\81Ñ\8bлкÑ\83 Ð°Ñ\83дио"
 
-#: include/event.php:467
-msgid "Dec"
-msgstr "Ð\94ек"
+#: include/conversation.php:1289 mod/editpost.php:109
+msgid "audio link"
+msgstr "аÑ\83дио-Ñ\81Ñ\81Ñ\8bлка"
 
-#: include/event.php:468 include/text.php:1136
-msgid "January"
-msgstr "ЯнваÑ\80Ñ\8c"
+#: include/conversation.php:1290 mod/editpost.php:110
+msgid "Set your location"
+msgstr "Ð\97адаÑ\82Ñ\8c Ð²Ð°Ñ\88е Ð¼ÐµÑ\81Ñ\82оположение"
 
-#: include/event.php:469 include/text.php:1136
-msgid "February"
-msgstr "Февраль"
+#: include/conversation.php:1291 mod/editpost.php:111
+msgid "set location"
+msgstr "установить местонахождение"
 
-#: include/event.php:470 include/text.php:1136
-msgid "March"
-msgstr "Ð\9cаÑ\80Ñ\82"
+#: include/conversation.php:1292 mod/editpost.php:112
+msgid "Clear browser location"
+msgstr "Ð\9eÑ\87иÑ\81Ñ\82иÑ\82Ñ\8c Ð¼ÐµÑ\81Ñ\82онаÑ\85ождение Ð±Ñ\80аÑ\83зеÑ\80а"
 
-#: include/event.php:471 include/text.php:1136
-msgid "April"
-msgstr "Апрель"
+#: include/conversation.php:1293 mod/editpost.php:113
+msgid "clear location"
+msgstr "убрать местонахождение"
 
-#: include/event.php:473 include/text.php:1136
-msgid "June"
-msgstr "Ð\98Ñ\8eнÑ\8c"
+#: include/conversation.php:1295 mod/editpost.php:127
+msgid "Set title"
+msgstr "УÑ\81Ñ\82ановиÑ\82Ñ\8c Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº"
 
-#: include/event.php:474 include/text.php:1136
-msgid "July"
-msgstr "Ð\98Ñ\8eлÑ\8c"
+#: include/conversation.php:1297 mod/editpost.php:129
+msgid "Categories (comma-separated list)"
+msgstr "Ð\9aаÑ\82егоÑ\80ии (Ñ\81пиÑ\81ок Ñ\87еÑ\80ез Ð·Ð°Ð¿Ñ\8fÑ\82Ñ\83Ñ\8e)"
 
-#: include/event.php:475 include/text.php:1136
-msgid "August"
-msgstr "Ð\90вгÑ\83Ñ\81Ñ\82"
+#: include/conversation.php:1299 mod/editpost.php:115
+msgid "Permission settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\80азÑ\80еÑ\88ений"
 
-#: include/event.php:476 include/text.php:1136
-msgid "September"
-msgstr "Сентябрь"
+#: include/conversation.php:1300 mod/editpost.php:144
+msgid "permissions"
+msgstr "разрешения"
 
-#: include/event.php:477 include/text.php:1136
-msgid "October"
-msgstr "Ð\9eкÑ\82Ñ\8fбÑ\80Ñ\8c"
+#: include/conversation.php:1308 mod/editpost.php:124
+msgid "Public post"
+msgstr "Ð\9fÑ\83блиÑ\87ное Ñ\81ообÑ\89ение"
 
-#: include/event.php:478 include/text.php:1136
-msgid "November"
-msgstr "Ноябрь"
+#: include/conversation.php:1313 mod/content.php:737 mod/editpost.php:135
+#: mod/events.php:503 mod/photos.php:1647 mod/photos.php:1689
+#: mod/photos.php:1769 object/Item.php:714
+msgid "Preview"
+msgstr "Предварительный просмотр"
 
-#: include/event.php:479 include/text.php:1136
-msgid "December"
-msgstr "Декабрь"
+#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
+#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
+#: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
+#: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
+#: mod/photos.php:245 mod/photos.php:337 mod/settings.php:682
+#: mod/settings.php:708 mod/videos.php:132
+msgid "Cancel"
+msgstr "Отмена"
 
-#: include/event.php:480 mod/cal.php:278 mod/events.php:395
-msgid "today"
-msgstr "сегодня"
+#: include/conversation.php:1323
+msgid "Post to Groups"
+msgstr "Пост для групп"
 
-#: include/event.php:484
-msgid "all-day"
-msgstr ""
+#: include/conversation.php:1324
+msgid "Post to Contacts"
+msgstr "Пост для контактов"
 
-#: include/event.php:486
-msgid "No events to display"
-msgstr "Ð\9dеÑ\82 Ñ\81обÑ\8bÑ\82ий Ð´Ð»Ñ\8f Ð¿Ð¾ÐºÐ°Ð·Ð°"
+#: include/conversation.php:1325
+msgid "Private post"
+msgstr "Ð\9bиÑ\87ное Ñ\81ообÑ\89ение"
 
-#: include/event.php:596
-msgid "l, F j"
-msgstr "l, j F"
+#: include/conversation.php:1330 include/identity.php:264 mod/editpost.php:142
+msgid "Message"
+msgstr "Сообщение"
 
-#: include/event.php:615
-msgid "Edit event"
-msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82ие"
+#: include/conversation.php:1331 mod/editpost.php:143
+msgid "Browser"
+msgstr "Ð\91Ñ\80аÑ\83зеÑ\80"
 
-#: include/event.php:637 include/text.php:1534 include/text.php:1541
-msgid "link to source"
-msgstr "ссылка на сообщение"
+#: include/conversation.php:1513
+msgid "View all"
+msgstr "Посмотреть все"
 
-#: include/event.php:872
-msgid "Export"
-msgstr "Экспорт"
+#: include/conversation.php:1535
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Нравится"
+msgstr[1] "Нравится"
+msgstr[2] "Нравится"
+msgstr[3] "Нравится"
 
-#: include/event.php:873
-msgid "Export calendar as ical"
-msgstr "Экспортировать календарь в формат ical"
+#: include/conversation.php:1538
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "Не нравится"
+msgstr[1] "Не нравится"
+msgstr[2] "Не нравится"
+msgstr[3] "Не нравится"
 
-#: include/event.php:874
-msgid "Export calendar as csv"
-msgstr "Экспортировать календарь в формат csv"
+#: include/conversation.php:1544
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: include/features.php:65
-msgid "General Features"
-msgstr "Ð\9eÑ\81новнÑ\8bе Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82и"
+#: include/datetime.php:66 include/datetime.php:68 mod/profiles.php:698
+msgid "Miscellaneous"
+msgstr "Разное"
 
-#: include/features.php:67
-msgid "Multiple Profiles"
-msgstr "Ð\9dеÑ\81колÑ\8cко Ð¿Ñ\80оÑ\84илей"
+#: include/datetime.php:196 include/identity.php:644
+msgid "Birthday:"
+msgstr "Ð\94енÑ\8c Ñ\80ождениÑ\8f:"
 
-#: include/features.php:67
-msgid "Ability to create multiple profiles"
-msgstr "Возможность создания нескольких профилей"
+#: include/datetime.php:198 mod/profiles.php:721
+msgid "Age: "
+msgstr "Возраст: "
 
-#: include/features.php:68
-msgid "Photo Location"
-msgstr "Место фотографирования"
+#: include/datetime.php:200
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD или MM-DD"
 
-#: include/features.php:68
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте."
+#: include/datetime.php:370
+msgid "never"
+msgstr "никогда"
 
-#: include/features.php:69
-msgid "Export Public Calendar"
-msgstr "ЭкÑ\81поÑ\80Ñ\82иÑ\80оваÑ\82Ñ\8c Ð¿Ñ\83блиÑ\87нÑ\8bй ÐºÐ°Ð»ÐµÐ½Ð´Ð°Ñ\80Ñ\8c"
+#: include/datetime.php:376
+msgid "less than a second ago"
+msgstr "менее Ñ\81ек. Ð½Ð°Ð·Ð°Ð´"
 
-#: include/features.php:69
-msgid "Ability for visitors to download the public calendar"
-msgstr "Ð\92озможноÑ\81Ñ\82Ñ\8c Ñ\81каÑ\87иваÑ\82Ñ\8c Ð¿Ñ\83блиÑ\87нÑ\8bй ÐºÐ°Ð»ÐµÐ½Ð´Ð°Ñ\80Ñ\8c Ð¿Ð¾Ñ\81еÑ\82иÑ\82елÑ\8fми"
+#: include/datetime.php:379
+msgid "year"
+msgstr "год"
 
-#: include/features.php:74
-msgid "Post Composition Features"
-msgstr "СоÑ\81Ñ\82авление Ñ\81ообÑ\89ений"
+#: include/datetime.php:379
+msgid "years"
+msgstr "леÑ\82"
 
-#: include/features.php:75
-msgid "Post Preview"
-msgstr "Предварительный просмотр"
+#: include/datetime.php:380 include/event.php:519 mod/cal.php:279
+#: mod/events.php:384
+msgid "month"
+msgstr "мес."
 
-#: include/features.php:75
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ð¿Ñ\80едпÑ\80оÑ\81моÑ\82Ñ\80 Ñ\81ообÑ\89ениÑ\8f Ð¸ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ\82аÑ\80иÑ\8f Ð¿ÐµÑ\80ед Ð¸Ñ\85 Ð¿Ñ\83бликаÑ\86ией"
+#: include/datetime.php:380
+msgid "months"
+msgstr "меÑ\81."
 
-#: include/features.php:76
-msgid "Auto-mention Forums"
-msgstr ""
+#: include/datetime.php:381 include/event.php:520 mod/cal.php:280
+#: mod/events.php:385
+msgid "week"
+msgstr "неделя"
 
-#: include/features.php:76
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
+#: include/datetime.php:381
+msgid "weeks"
+msgstr "недель"
 
-#: include/features.php:81
-msgid "Network Sidebar Widgets"
-msgstr "Виджет боковой панели \"Сеть\""
+#: include/datetime.php:382 include/event.php:521 mod/cal.php:281
+#: mod/events.php:386
+msgid "day"
+msgstr "день"
 
-#: include/features.php:82
-msgid "Search by Date"
-msgstr "Ð\9fоиÑ\81к Ð¿Ð¾ Ð´Ð°Ñ\82ам"
+#: include/datetime.php:382
+msgid "days"
+msgstr "дней"
 
-#: include/features.php:82
-msgid "Ability to select posts by date ranges"
-msgstr "Возможность выбора постов по диапазону дат"
+#: include/datetime.php:383
+msgid "hour"
+msgstr "час"
 
-#: include/features.php:83 include/features.php:113
-msgid "List Forums"
-msgstr "Список форумов"
+#: include/datetime.php:383
+msgid "hours"
+msgstr "час."
 
-#: include/features.php:83
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
+#: include/datetime.php:384
+msgid "minute"
+msgstr "минута"
 
-#: include/features.php:84
-msgid "Group Filter"
-msgstr "ФилÑ\8cÑ\82Ñ\80 Ð³Ñ\80Ñ\83пп"
+#: include/datetime.php:384
+msgid "minutes"
+msgstr "мин."
 
-#: include/features.php:84
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Включить виджет для отображения сообщений сети только от выбранной группы"
+#: include/datetime.php:385
+msgid "second"
+msgstr "секунда"
 
-#: include/features.php:85
-msgid "Network Filter"
-msgstr "Фильтр сети"
+#: include/datetime.php:385
+msgid "seconds"
+msgstr "сек."
 
-#: include/features.php:85
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Включить виджет для отображения сообщений сети только от выбранной сети"
+#: include/datetime.php:394
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s назад"
 
-#: include/features.php:86 mod/network.php:199 mod/search.php:34
-msgid "Saved Searches"
-msgstr "запомненные поиски"
+#: include/datetime.php:620
+#, php-format
+msgid "%s's birthday"
+msgstr "день рождения %s"
 
-#: include/features.php:86
-msgid "Save search terms for re-use"
-msgstr "Сохранить условия поиска для повторного использования"
+#: include/datetime.php:621 include/dfrn.php:1252
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "С днём рождения %s"
 
-#: include/features.php:91
-msgid "Network Tabs"
-msgstr "Сетевые вкладки"
+#: include/dba_pdo.php:72 include/dba.php:47
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
 
-#: include/features.php:92
-msgid "Network Personal Tab"
-msgstr "Ð\9fеÑ\80Ñ\81оналÑ\8cнÑ\8bе Ñ\81еÑ\82евÑ\8bе Ð²ÐºÐ»Ð°Ð´ÐºÐ¸"
+#: include/enotify.php:24
+msgid "Friendica Notification"
+msgstr "УведомлениÑ\8f Friendica"
 
-#: include/features.php:92
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²ÐºÐ»Ð°Ð´ÐºÑ\83 Ð´Ð»Ñ\8f Ð¾Ñ\82обÑ\80ажениÑ\8f Ñ\82олÑ\8cко Ñ\81ообÑ\89ений Ñ\81еÑ\82и, Ñ\81 ÐºÐ¾Ñ\82оÑ\80ой Ð²Ñ\8b Ð²Ð·Ð°Ð¸Ð¼Ð¾Ð´ÐµÐ¹Ñ\81Ñ\82вовали"
+#: include/enotify.php:27
+msgid "Thank You,"
+msgstr "СпаÑ\81ибо,"
 
-#: include/features.php:93
-msgid "Network New Tab"
-msgstr "Новая вкладка сеть"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
+msgstr "%s администратор"
 
-#: include/features.php:93
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Включить вкладку для отображения только новых сообщений сети (за последние 12 часов)"
+#: include/enotify.php:32
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, администратор %2$s"
 
-#: include/features.php:94
-msgid "Network Shared Links Tab"
-msgstr "Вкладка shared ссылок сети"
+#: include/enotify.php:70
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/features.php:94
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Включить вкладку для отображения только сообщений сети со ссылками на них"
+#: include/enotify.php:83
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica: Оповещение] Новое сообщение, пришедшее на %s"
 
-#: include/features.php:99
-msgid "Post/Comment Tools"
-msgstr "Инструменты пост/комментарий"
+#: include/enotify.php:85
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s отправил вам новое личное сообщение на %2$s."
 
-#: include/features.php:100
-msgid "Multiple Deletion"
-msgstr "Множественное удаление"
+#: include/enotify.php:86
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s послал вам %2$s."
 
-#: include/features.php:100
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Ð\92Ñ\8bбÑ\80аÑ\82Ñ\8c Ð¸ Ñ\83далиÑ\82Ñ\8c Ð½ÐµÑ\81колÑ\8cко Ð¿Ð¾Ñ\81Ñ\82ов/комменÑ\82аÑ\80иев Ð¾Ð´Ð½Ð¾Ð²Ñ\80еменно."
+#: include/enotify.php:86
+msgid "a private message"
+msgstr "лиÑ\87ное Ñ\81ообÑ\89ение"
 
-#: include/features.php:101
-msgid "Edit Sent Posts"
-msgstr "Редактировать отправленные посты"
+#: include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения."
 
-#: include/features.php:101
-msgid "Edit and correct posts and comments after sending"
-msgstr "Редактировать и править посты и комментарии после отправления"
+#: include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s прокомментировал [url=%2$s]a %3$s[/url]"
 
-#: include/features.php:102
-msgid "Tagging"
-msgstr "Отмеченное"
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s прокомментировал [url=%2$s]%3$s's %4$s[/url]"
 
-#: include/features.php:102
-msgid "Ability to tag existing posts"
-msgstr "Возможность отмечать существующие посты"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s прокомментировал [url=%2$s]your %3$s[/url]"
 
-#: include/features.php:103
-msgid "Post Categories"
-msgstr "Категории постов"
+#: include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Комментарий к #%1$d от %2$s"
 
-#: include/features.php:103
-msgid "Add categories to your posts"
-msgstr "Добавить категории вашего поста"
+#: include/enotify.php:161
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите."
 
-#: include/features.php:104
-msgid "Ability to file posts under folders"
-msgstr ""
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу."
 
-#: include/features.php:105
-msgid "Dislike Posts"
-msgstr "Посты, которые не нравятся"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Оповещение] %s написал на стене вашего профиля"
 
-#: include/features.php:105
-msgid "Ability to dislike posts/comments"
-msgstr "Возможность поставить \"Не нравится\" посту или комментарию"
+#: include/enotify.php:173
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s написал на вашей стене на %2$s"
 
-#: include/features.php:106
-msgid "Star Posts"
-msgstr "Популярные посты"
+#: include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s написал на [url=%2$s]вашей стене[/url]"
 
-#: include/features.php:106
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Возможность отметить специальные сообщения индикатором популярности"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s отметил вас"
 
-#: include/features.php:107
-msgid "Mute Post Notifications"
-msgstr "Отключить уведомления для поста"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s отметил вас в %2$s"
 
-#: include/features.php:107
-msgid "Ability to mute notifications for a thread"
-msgstr "Возможность отключить уведомления для отдельно взятого обсуждения"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]отметил вас[/url]."
 
-#: include/features.php:112
-msgid "Advanced Profile Settings"
-msgstr "Расширенные настройки профиля"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s поделился новым постом"
 
-#: include/features.php:113
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr ""
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s поделился новым постом на %2$s"
 
-#: include/follow.php:81 mod/dfrn_request.php:512
-msgid "Disallowed profile URL."
-msgstr "Запрещенный URL профиля."
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]поделился постом[/url]."
 
-#: include/follow.php:86
-msgid "Connect URL missing."
-msgstr "Connect-URL отсутствует."
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s потыкал вас"
 
-#: include/follow.php:114
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s потыкал вас на %2$s"
 
-#: include/follow.php:115 include/follow.php:129
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Обнаружены несовместимые протоколы связи или каналы."
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]потыкал вас[/url]."
 
-#: include/follow.php:127
-msgid "The profile address specified does not provide adequate information."
-msgstr "Указанный адрес профиля не дает адекватной информации."
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s поставил тег вашему посту"
 
-#: include/follow.php:132
-msgid "An author or name was not found."
-msgstr "Автор или имя не найдены."
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s поставил тег вашему посту на %2$s"
 
-#: include/follow.php:135
-msgid "No browser URL could be matched to this address."
-msgstr "Нет URL браузера, который соответствует этому адресу."
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s поставил тег [url=%2$s]вашему посту[/url]"
 
-#: include/follow.php:138
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Сообщение] получен запрос"
 
-#: include/follow.php:139
-msgid "Use mailto: in front of address to force email check."
-msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."
+#: include/enotify.php:247
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Вы получили запрос от '%1$s' на %2$s"
 
-#: include/follow.php:145
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
+#: include/enotify.php:248
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s."
 
-#: include/follow.php:150
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Вы можете посмотреть его профиль здесь %s"
 
-#: include/follow.php:251
-msgid "Unable to retrieve contact information."
-msgstr "Невозможно получить контактную информацию."
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Посетите %s для подтверждения или отказа запроса."
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notify] Новый человек делится с вами"
 
-#: include/group.php:210
-msgid "Default privacy group for new contacts"
-msgstr "Группа доступа по умолчанию для новых контактов"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s делится с вами на %2$s"
 
-#: include/group.php:243
-msgid "Everybody"
-msgstr "Каждый"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notify] У вас новый подписчик"
 
-#: include/group.php:266
-msgid "edit"
-msgstr "редактировать"
+#: include/enotify.php:273 include/enotify.php:274
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "У вас новый подписчик на %2$s : %1$s"
 
-#: include/group.php:287 mod/newmember.php:61
-msgid "Groups"
-msgstr "Группы"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica: Оповещение] получено предложение дружбы"
 
-#: include/group.php:289
-msgid "Edit groups"
-msgstr "Редактировать группы"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Вы получили предложение дружбы от '%1$s' на %2$s"
 
-#: include/group.php:291
-msgid "Edit group"
-msgstr "Редактировать группу"
+#: include/enotify.php:288
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s."
 
-#: include/group.php:292
-msgid "Create a new group"
-msgstr "СоздаÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\83Ñ\8e Ð³Ñ\80Ñ\83ппÑ\83"
+#: include/enotify.php:293
+msgid "Name:"
+msgstr "Ð\98мÑ\8f:"
 
-#: include/group.php:293 mod/group.php:98 mod/group.php:188
-msgid "Group Name: "
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
+#: include/enotify.php:294
+msgid "Photo:"
+msgstr "ФоÑ\82о:"
 
-#: include/group.php:295
-msgid "Contacts not in any group"
-msgstr "Контакты не состоят в группе"
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса."
 
-#: include/group.php:297 mod/network.php:200
-msgid "add"
-msgstr "добавить"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notify] Соединение принято"
 
-#: include/identity.php:43
-msgid "Requested account is not available."
-msgstr "Запрашиваемый профиль недоступен."
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' принял соединение с вами на %2$s"
 
-#: include/identity.php:52 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Запрашиваемый профиль недоступен."
+#: include/enotify.php:308 include/enotify.php:322
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]."
 
-#: include/identity.php:96 include/identity.php:314 include/identity.php:737
-msgid "Edit profile"
-msgstr "Редактировать профиль"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений."
 
-#: include/identity.php:254
-msgid "Atom feed"
-msgstr "Фид Atom"
+#: include/enotify.php:314
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Посетите %s если вы хотите сделать изменения в этом отношении."
 
-#: include/identity.php:285 include/nav.php:189
-msgid "Profiles"
-msgstr "Профили"
+#: include/enotify.php:326
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr ""
 
-#: include/identity.php:285
-msgid "Manage/edit profiles"
-msgstr "Управление / редактирование профилей"
+#: include/enotify.php:328
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr ""
 
-#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789
-msgid "Change profile photo"
-msgstr "Изменить фото профиля"
+#: include/enotify.php:330
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Посетите %s если вы хотите сделать изменения в этом отношении."
 
-#: include/identity.php:291 mod/profiles.php:790
-msgid "Create New Profile"
-msgstr "Создать новый профиль"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Notify] Запрос на регистрацию"
 
-#: include/identity.php:301 mod/profiles.php:779
-msgid "Profile Image"
-msgstr "Фото профиля"
+#: include/enotify.php:342
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s"
 
-#: include/identity.php:304 mod/profiles.php:781
-msgid "visible to everybody"
-msgstr "видимый всем"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s."
 
-#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782
-msgid "Edit visibility"
-msgstr "Редактировать видимость"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Полное имя:⇥%1$s\\nСайт:⇥%2$s\\nЛогин:⇥%3$s (%4$s)"
 
-#: include/identity.php:333 include/identity.php:628 mod/directory.php:141
-#: mod/notifications.php:244
-msgid "Gender:"
-msgstr "Ð\9fол:"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ð¾Ñ\81еÑ\82иÑ\82е %s Ñ\87Ñ\82обÑ\8b Ð¿Ð¾Ð´Ñ\82веÑ\80диÑ\82Ñ\8c Ð¸Ð»Ð¸ Ð¾Ñ\82веÑ\80гнÑ\83Ñ\82Ñ\8c Ð·Ð°Ð¿Ñ\80оÑ\81."
 
-#: include/identity.php:336 include/identity.php:648 mod/directory.php:143
-msgid "Status:"
-msgstr "Статус:"
+#: include/event.php:474
+msgid "all-day"
+msgstr ""
 
-#: include/identity.php:338 include/identity.php:664 mod/directory.php:145
-msgid "Homepage:"
-msgstr "Ð\94омаÑ\88нÑ\8fÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\87ка:"
+#: include/event.php:476
+msgid "Sun"
+msgstr "Ð\92Ñ\81"
 
-#: include/identity.php:340 include/identity.php:684 mod/contacts.php:640
-#: mod/directory.php:147 mod/notifications.php:240
-msgid "About:"
-msgstr "О себе:"
+#: include/event.php:477
+msgid "Mon"
+msgstr "Пн"
 
-#: include/identity.php:342 mod/contacts.php:638
-msgid "XMPP:"
-msgstr "XMPP:"
+#: include/event.php:478
+msgid "Tue"
+msgstr "Вт"
 
-#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252
-msgid "Network:"
-msgstr "Сеть:"
+#: include/event.php:479
+msgid "Wed"
+msgstr "Ср"
 
-#: include/identity.php:457 include/identity.php:547
-msgid "g A l F d"
-msgstr "g A l F d"
+#: include/event.php:480
+msgid "Thu"
+msgstr "Чт"
 
-#: include/identity.php:458 include/identity.php:548
-msgid "F d"
-msgstr "F d"
+#: include/event.php:481
+msgid "Fri"
+msgstr "Пт"
 
-#: include/identity.php:509 include/identity.php:594
-msgid "[today]"
-msgstr "[сегодня]"
+#: include/event.php:482
+msgid "Sat"
+msgstr "Сб"
 
-#: include/identity.php:521
-msgid "Birthday Reminders"
-msgstr "Ð\9dапоминаниÑ\8f Ð¾ Ð´Ð½Ñ\8fÑ\85 Ñ\80ождениÑ\8f"
+#: include/event.php:484 include/text.php:1198 mod/settings.php:981
+msgid "Sunday"
+msgstr "Ð\92оÑ\81кÑ\80еÑ\81енÑ\8cе"
 
-#: include/identity.php:522
-msgid "Birthdays this week:"
-msgstr "Ð\94ни Ñ\80ождениÑ\8f Ð½Ð° Ñ\8dÑ\82ой Ð½ÐµÐ´ÐµÐ»Ðµ:"
+#: include/event.php:485 include/text.php:1198 mod/settings.php:981
+msgid "Monday"
+msgstr "Ð\9fонеделÑ\8cник"
 
-#: include/identity.php:581
-msgid "[No description]"
-msgstr "[без описания]"
+#: include/event.php:486 include/text.php:1198
+msgid "Tuesday"
+msgstr "Вторник"
 
-#: include/identity.php:605
-msgid "Event Reminders"
-msgstr "Ð\9dапоминаниÑ\8f Ð¾ Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8fÑ\85"
+#: include/event.php:487 include/text.php:1198
+msgid "Wednesday"
+msgstr "СÑ\80еда"
 
-#: include/identity.php:606
-msgid "Events this week:"
-msgstr "Ð\9cеÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f Ð½Ð° Ñ\8dÑ\82ой Ð½ÐµÐ´ÐµÐ»Ðµ:"
+#: include/event.php:488 include/text.php:1198
+msgid "Thursday"
+msgstr "ЧеÑ\82веÑ\80г"
 
-#: include/identity.php:617 include/identity.php:741 include/identity.php:774
-#: include/nav.php:82 mod/contacts.php:647 mod/contacts.php:849
-#: mod/newmember.php:32 mod/profperm.php:105 view/theme/frio/theme.php:247
-msgid "Profile"
-msgstr "Информация"
+#: include/event.php:489 include/text.php:1198
+msgid "Friday"
+msgstr "Пятница"
 
-#: include/identity.php:626 mod/settings.php:1286
-msgid "Full Name:"
-msgstr "Ð\9fолное Ð¸Ð¼Ñ\8f:"
+#: include/event.php:490 include/text.php:1198
+msgid "Saturday"
+msgstr "СÑ\83ббоÑ\82а"
 
-#: include/identity.php:633
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/event.php:492
+msgid "Jan"
+msgstr "Янв"
 
-#: include/identity.php:634
-msgid "j F"
-msgstr "j F"
+#: include/event.php:493
+msgid "Feb"
+msgstr "Фев"
 
-#: include/identity.php:645
-msgid "Age:"
-msgstr "Ð\92озÑ\80аÑ\81Ñ\82:"
+#: include/event.php:494
+msgid "Mar"
+msgstr "Ð\9cÑ\80Ñ\82"
 
-#: include/identity.php:656
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "для %1$d %2$s"
+#: include/event.php:495
+msgid "Apr"
+msgstr "Апр"
 
-#: include/identity.php:660 mod/profiles.php:702
-msgid "Sexual Preference:"
-msgstr "СекÑ\81Ñ\83алÑ\8cнÑ\8bе Ð¿Ñ\80едпоÑ\87Ñ\82ениÑ\8f:"
+#: include/event.php:496 include/event.php:509 include/text.php:1202
+msgid "May"
+msgstr "Ð\9cай"
 
-#: include/identity.php:668 mod/profiles.php:729
-msgid "Hometown:"
-msgstr "Родной Ð³Ð¾Ñ\80од:"
+#: include/event.php:497
+msgid "Jun"
+msgstr "Ð\98Ñ\8eн"
 
-#: include/identity.php:672 mod/contacts.php:642 mod/follow.php:137
-#: mod/notifications.php:242
-msgid "Tags:"
-msgstr "Ключевые слова: "
+#: include/event.php:498
+msgid "Jul"
+msgstr "Июл"
 
-#: include/identity.php:676 mod/profiles.php:730
-msgid "Political Views:"
-msgstr "Ð\9fолиÑ\82иÑ\87еÑ\81кие Ð²Ð·Ð³Ð»Ñ\8fдÑ\8b:"
+#: include/event.php:499
+msgid "Aug"
+msgstr "Ð\90вг"
 
-#: include/identity.php:680
-msgid "Religion:"
-msgstr "РелигиÑ\8f:"
+#: include/event.php:500
+msgid "Sept"
+msgstr "Сен"
 
-#: include/identity.php:688
-msgid "Hobbies/Interests:"
-msgstr "Хобби / Ð\98нÑ\82еÑ\80еÑ\81Ñ\8b:"
+#: include/event.php:501
+msgid "Oct"
+msgstr "Ð\9eкÑ\82"
 
-#: include/identity.php:692 mod/profiles.php:734
-msgid "Likes:"
-msgstr "Нравится:"
+#: include/event.php:502
+msgid "Nov"
+msgstr "Нбр"
 
-#: include/identity.php:696 mod/profiles.php:735
-msgid "Dislikes:"
-msgstr "Ð\9dе Ð½Ñ\80авиÑ\82Ñ\81Ñ\8f:"
+#: include/event.php:503
+msgid "Dec"
+msgstr "Ð\94ек"
 
-#: include/identity.php:700
-msgid "Contact information and Social Networks:"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е Ð¸ Ñ\81оÑ\86иалÑ\8cнÑ\8bÑ\85 Ñ\81еÑ\82Ñ\8fÑ\85:"
+#: include/event.php:505 include/text.php:1202
+msgid "January"
+msgstr "ЯнваÑ\80Ñ\8c"
 
-#: include/identity.php:704
-msgid "Musical interests:"
-msgstr "Ð\9cÑ\83зÑ\8bкалÑ\8cнÑ\8bе Ð¸Ð½Ñ\82еÑ\80еÑ\81Ñ\8b:"
+#: include/event.php:506 include/text.php:1202
+msgid "February"
+msgstr "ФевÑ\80алÑ\8c"
 
-#: include/identity.php:708
-msgid "Books, literature:"
-msgstr "Ð\9aниги, Ð»Ð¸Ñ\82еÑ\80аÑ\82Ñ\83Ñ\80а:"
+#: include/event.php:507 include/text.php:1202
+msgid "March"
+msgstr "Ð\9cаÑ\80Ñ\82"
 
-#: include/identity.php:712
-msgid "Television:"
-msgstr "Телевидение:"
+#: include/event.php:508 include/text.php:1202
+msgid "April"
+msgstr "Ð\90пÑ\80елÑ\8c"
 
-#: include/identity.php:716
-msgid "Film/dance/culture/entertainment:"
-msgstr "Ð\9aино / Ð¢Ð°Ð½Ñ\86Ñ\8b / Ð\9aÑ\83лÑ\8cÑ\82Ñ\83Ñ\80а / Ð Ð°Ð·Ð²Ð»ÐµÑ\87ениÑ\8f:"
+#: include/event.php:510 include/text.php:1202
+msgid "June"
+msgstr "Ð\98Ñ\8eнÑ\8c"
 
-#: include/identity.php:720
-msgid "Love/Romance:"
-msgstr "Ð\9bÑ\8eбовÑ\8c / Ð Ð¾Ð¼Ð°Ð½Ñ\82ика:"
+#: include/event.php:511 include/text.php:1202
+msgid "July"
+msgstr "Ð\98Ñ\8eлÑ\8c"
 
-#: include/identity.php:724
-msgid "Work/employment:"
-msgstr "РабоÑ\82а / Ð\97анÑ\8fÑ\82оÑ\81Ñ\82Ñ\8c:"
+#: include/event.php:512 include/text.php:1202
+msgid "August"
+msgstr "Ð\90вгÑ\83Ñ\81Ñ\82"
 
-#: include/identity.php:728
-msgid "School/education:"
-msgstr "Школа / Ð\9eбÑ\80азование:"
+#: include/event.php:513 include/text.php:1202
+msgid "September"
+msgstr "СенÑ\82Ñ\8fбÑ\80Ñ\8c"
 
-#: include/identity.php:733
-msgid "Forums:"
-msgstr "ФоÑ\80Ñ\83мÑ\8b:"
+#: include/event.php:514 include/text.php:1202
+msgid "October"
+msgstr "Ð\9eкÑ\82Ñ\8fбÑ\80Ñ\8c"
 
-#: include/identity.php:742 mod/events.php:514
-msgid "Basic"
-msgstr "Ð\91азовÑ\8bй"
+#: include/event.php:515 include/text.php:1202
+msgid "November"
+msgstr "Ð\9dоÑ\8fбÑ\80Ñ\8c"
 
-#: include/identity.php:743 mod/admin.php:972 mod/contacts.php:878
-#: mod/events.php:515
-msgid "Advanced"
-msgstr "Расширенный"
+#: include/event.php:516 include/text.php:1202
+msgid "December"
+msgstr "Декабрь"
 
-#: include/identity.php:766 include/nav.php:81 mod/contacts.php:645
-#: mod/contacts.php:841 view/theme/frio/theme.php:246
-msgid "Status"
-msgstr "Посты"
+#: include/event.php:518 mod/cal.php:278 mod/events.php:383
+msgid "today"
+msgstr "сегодня"
 
-#: include/identity.php:769 mod/contacts.php:844 mod/follow.php:145
-msgid "Status Messages and Posts"
-msgstr "Ð\92аÑ\88и Ð¿Ð¾Ñ\81Ñ\82Ñ\8b"
+#: include/event.php:523
+msgid "No events to display"
+msgstr "Ð\9dеÑ\82 Ñ\81обÑ\8bÑ\82ий Ð´Ð»Ñ\8f Ð¿Ð¾ÐºÐ°Ð·Ð°"
 
-#: include/identity.php:777 mod/contacts.php:852
-msgid "Profile Details"
-msgstr "Информация о вас"
+#: include/event.php:636
+msgid "l, F j"
+msgstr "l, j F"
 
-#: include/identity.php:782 include/nav.php:83 mod/fbrowser.php:31
-#: view/theme/frio/theme.php:248
-msgid "Photos"
-msgstr "Фото"
+#: include/event.php:658
+msgid "Edit event"
+msgstr "Редактировать мероприятие"
 
-#: include/identity.php:785 mod/photos.php:89
-msgid "Photo Albums"
-msgstr "Фотоальбомы"
+#: include/event.php:659
+msgid "Delete event"
+msgstr ""
 
-#: include/identity.php:790 include/identity.php:793 include/nav.php:84
-#: view/theme/frio/theme.php:249
-msgid "Videos"
-msgstr "Видео"
+#: include/event.php:685 include/text.php:1600 include/text.php:1607
+msgid "link to source"
+msgstr "ссылка на сообщение"
 
-#: include/identity.php:802 include/identity.php:813 include/nav.php:85
-#: include/nav.php:149 mod/cal.php:270 mod/events.php:386
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-msgid "Events"
-msgstr "Мероприятия"
+#: include/event.php:939
+msgid "Export"
+msgstr "Экспорт"
 
-#: include/identity.php:805 include/identity.php:816 include/nav.php:149
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
-msgstr "Календарь и события"
+#: include/event.php:940
+msgid "Export calendar as ical"
+msgstr "Экспортировать календарь в формат ical"
 
-#: include/identity.php:824 mod/notes.php:47
-msgid "Personal Notes"
-msgstr "Ð\9bиÑ\87нÑ\8bе Ð·Ð°Ð¼ÐµÑ\82ки"
+#: include/event.php:941
+msgid "Export calendar as csv"
+msgstr "ЭкÑ\81поÑ\80Ñ\82иÑ\80оваÑ\82Ñ\8c ÐºÐ°Ð»ÐµÐ½Ð´Ð°Ñ\80Ñ\8c Ð² Ñ\84оÑ\80маÑ\82 csv"
 
-#: include/identity.php:827
-msgid "Only You Can See This"
-msgstr "ТолÑ\8cко Ð²Ñ\8b Ð¼Ð¾Ð¶ÐµÑ\82е Ñ\8dÑ\82о Ð²Ð¸Ð´ÐµÑ\82Ñ\8c"
+#: include/features.php:65
+msgid "General Features"
+msgstr "Ð\9eÑ\81новнÑ\8bе Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82и"
 
-#: include/identity.php:835 include/identity.php:838 include/nav.php:128
-#: include/nav.php:192 include/text.php:1024 mod/contacts.php:800
-#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
-msgid "Contacts"
-msgstr "Контакты"
+#: include/features.php:67
+msgid "Multiple Profiles"
+msgstr "Несколько профилей"
 
-#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754
-msgid "[Name Withheld]"
-msgstr "[Имя не разглашается]"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr "Возможность создания нескольких профилей"
 
-#: include/items.php:1939 mod/admin.php:240 mod/admin.php:1480
-#: mod/admin.php:1731 mod/display.php:103 mod/display.php:279
-#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15
-msgid "Item not found."
-msgstr "Пункт не найден."
+#: include/features.php:68
+msgid "Photo Location"
+msgstr "Место фотографирования"
 
-#: include/items.php:1978
-msgid "Do you really want to delete this item?"
-msgstr "Вы действительно хотите удалить этот элемент?"
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте."
 
-#: include/items.php:1980 mod/api.php:105 mod/contacts.php:452
-#: mod/dfrn_request.php:875 mod/follow.php:113 mod/message.php:206
-#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669
-#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177
-#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
-#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
-#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29
-msgid "Yes"
-msgstr "Да"
+#: include/features.php:69
+msgid "Export Public Calendar"
+msgstr "Экспортировать публичный календарь"
 
-#: include/items.php:2143 index.php:407 mod/allfriends.php:12 mod/api.php:26
-#: mod/api.php:31 mod/attach.php:33 mod/cal.php:299 mod/common.php:18
-#: mod/contacts.php:360 mod/crepair.php:102 mod/delegate.php:12
-#: mod/dfrn_confirm.php:61 mod/dirfind.php:11 mod/display.php:481
-#: mod/editpost.php:10 mod/events.php:195 mod/follow.php:11 mod/follow.php:74
-#: mod/follow.php:158 mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15
-#: mod/invite.php:103 mod/item.php:193 mod/item.php:205 mod/manage.php:98
-#: mod/message.php:46 mod/message.php:171 mod/mood.php:115 mod/network.php:4
-#: mod/nogroup.php:27 mod/notes.php:23 mod/notifications.php:71
-#: mod/ostatus_subscribe.php:9 mod/photos.php:161 mod/photos.php:1092
-#: mod/poke.php:154 mod/profile_photo.php:19 mod/profile_photo.php:180
-#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/profiles.php:166
-#: mod/profiles.php:607 mod/register.php:42 mod/regmod.php:113
-#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130
-#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24
-#: mod/viewcontacts.php:46 mod/wall_attach.php:67 mod/wall_attach.php:70
-#: mod/wall_upload.php:77 mod/wall_upload.php:80 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
-msgid "Permission denied."
-msgstr "Нет разрешения."
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
+msgstr "Возможность скачивать публичный календарь посетителями"
 
-#: include/items.php:2248
-msgid "Archives"
-msgstr "Ð\90Ñ\80Ñ\85ивÑ\8b"
+#: include/features.php:74
+msgid "Post Composition Features"
+msgstr "СоÑ\81Ñ\82авление Ñ\81ообÑ\89ений"
 
-#: include/like.php:41
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr ""
+#: include/features.php:75
+msgid "Post Preview"
+msgstr "Предварительный просмотр"
 
-#: include/like.php:46
-#, php-format
-msgid "%1$s is not attending %2$s's %3$s"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Разрешить предпросмотр сообщения и комментария перед их публикацией"
+
+#: include/features.php:76
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: include/like.php:51
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: include/message.php:15 include/message.php:169
-msgid "[no subject]"
-msgstr "[без темы]"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
+msgstr "Виджет боковой панели \"Сеть\""
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Ð\9dиÑ\87его Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð·Ð´ÐµÑ\81Ñ\8c"
+#: include/features.php:82
+msgid "Search by Date"
+msgstr "Ð\9fоиÑ\81к Ð¿Ð¾ Ð´Ð°Ñ\82ам"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "СÑ\82еÑ\80еÑ\82Ñ\8c Ñ\83ведомлениÑ\8f"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
+msgstr "Ð\92озможноÑ\81Ñ\82Ñ\8c Ð²Ñ\8bбоÑ\80а Ð¿Ð¾Ñ\81Ñ\82ов Ð¿Ð¾ Ð´Ð¸Ð°Ð¿Ð°Ð·Ð¾Ð½Ñ\83 Ð´Ð°Ñ\82"
 
-#: include/nav.php:40 include/text.php:1017
-msgid "@name, !forum, #tags, content"
-msgstr "@имя, !форум, #тег, контент"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
+msgstr "Список форумов"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
-msgstr "Завершить эту сессию"
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-msgid "Your posts and conversations"
-msgstr "Ð\94аннÑ\8bе Ð²Ð°Ñ\88ей Ñ\83Ñ\87Ñ\91Ñ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и"
+#: include/features.php:84
+msgid "Group Filter"
+msgstr "ФилÑ\8cÑ\82Ñ\80 Ð³Ñ\80Ñ\83пп"
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-msgid "Your profile page"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾ Ð²Ð°Ñ\81"
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²Ð¸Ð´Ð¶ÐµÑ\82 Ð´Ð»Ñ\8f Ð¾Ñ\82обÑ\80ажениÑ\8f Ñ\81ообÑ\89ений Ñ\81еÑ\82и Ñ\82олÑ\8cко Ð¾Ñ\82 Ð²Ñ\8bбÑ\80анной Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-msgid "Your photos"
-msgstr "Ð\92аÑ\88и Ñ\84оÑ\82огÑ\80аÑ\84ии"
+#: include/features.php:85
+msgid "Network Filter"
+msgstr "ФилÑ\8cÑ\82Ñ\80 Ñ\81еÑ\82и"
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
-msgstr "Ð\92аÑ\88и Ð²Ð¸Ð´ÐµÐ¾"
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²Ð¸Ð´Ð¶ÐµÑ\82 Ð´Ð»Ñ\8f Ð¾Ñ\82обÑ\80ажениÑ\8f Ñ\81ообÑ\89ений Ñ\81еÑ\82и Ñ\82олÑ\8cко Ð¾Ñ\82 Ð²Ñ\8bбÑ\80анной Ñ\81еÑ\82и"
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-msgid "Your events"
-msgstr "Ð\92аÑ\88и Ñ\81обÑ\8bÑ\82иÑ\8f"
+#: include/features.php:86 mod/network.php:206 mod/search.php:34
+msgid "Saved Searches"
+msgstr "запомненнÑ\8bе Ð¿Ð¾Ð¸Ñ\81ки"
 
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Ð\9bиÑ\87нÑ\8bе Ð·Ð°Ð¼ÐµÑ\82ки"
+#: include/features.php:86
+msgid "Save search terms for re-use"
+msgstr "СоÑ\85Ñ\80аниÑ\82Ñ\8c Ñ\83Ñ\81ловиÑ\8f Ð¿Ð¾Ð¸Ñ\81ка Ð´Ð»Ñ\8f Ð¿Ð¾Ð²Ñ\82оÑ\80ного Ð¸Ñ\81полÑ\8cзованиÑ\8f"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Ð\92аÑ\88и Ð»Ð¸Ñ\87нÑ\8bе Ð·Ð°Ð¼ÐµÑ\82ки"
+#: include/features.php:91
+msgid "Network Tabs"
+msgstr "СеÑ\82евÑ\8bе Ð²ÐºÐ»Ð°Ð´ки"
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Ð\92Ñ\85од"
+#: include/features.php:92
+msgid "Network Personal Tab"
+msgstr "Ð\9fеÑ\80Ñ\81оналÑ\8cнÑ\8bе Ñ\81еÑ\82евÑ\8bе Ð²ÐºÐ»Ð°Ð´ÐºÐ¸"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Ð\93лавнаÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а"
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²ÐºÐ»Ð°Ð´ÐºÑ\83 Ð´Ð»Ñ\8f Ð¾Ñ\82обÑ\80ажениÑ\8f Ñ\82олÑ\8cко Ñ\81ообÑ\89ений Ñ\81еÑ\82и, Ñ\81 ÐºÐ¾Ñ\82оÑ\80ой Ð²Ñ\8b Ð²Ð·Ð°Ð¸Ð¼Ð¾Ð´ÐµÐ¹Ñ\81Ñ\82вовали"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "СоздаÑ\82Ñ\8c Ð°ÐºÐºÐ°Ñ\83нÑ\82"
+#: include/features.php:93
+msgid "Network New Tab"
+msgstr "Ð\9dоваÑ\8f Ð²ÐºÐ»Ð°Ð´ÐºÐ° Ñ\81еÑ\82Ñ\8c"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293
-msgid "Help"
-msgstr "Ð\9fомоÑ\89Ñ\8c"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²ÐºÐ»Ð°Ð´ÐºÑ\83 Ð´Ð»Ñ\8f Ð¾Ñ\82обÑ\80ажениÑ\8f Ñ\82олÑ\8cко Ð½Ð¾Ð²Ñ\8bÑ\85 Ñ\81ообÑ\89ений Ñ\81еÑ\82и (за Ð¿Ð¾Ñ\81ледние 12 Ñ\87аÑ\81ов)"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Ð\9fомоÑ\89Ñ\8c Ð¸ Ð´Ð¾ÐºÑ\83менÑ\82аÑ\86иÑ\8f"
+#: include/features.php:94
+msgid "Network Shared Links Tab"
+msgstr "Ð\92кладка shared Ñ\81Ñ\81Ñ\8bлок Ñ\81еÑ\82и"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Ð\9fÑ\80иложениÑ\8f"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²ÐºÐ»Ð°Ð´ÐºÑ\83 Ð´Ð»Ñ\8f Ð¾Ñ\82обÑ\80ажениÑ\8f Ñ\82олÑ\8cко Ñ\81ообÑ\89ений Ñ\81еÑ\82и Ñ\81о Ñ\81Ñ\81Ñ\8bлками Ð½Ð° Ð½Ð¸Ñ\85"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð¿Ñ\80иложениÑ\8f, Ñ\83Ñ\82илиÑ\82Ñ\8b, Ð¸Ð³Ñ\80Ñ\8b"
+#: include/features.php:99
+msgid "Post/Comment Tools"
+msgstr "Ð\98нÑ\81Ñ\82Ñ\80Ñ\83менÑ\82Ñ\8b Ð¿Ð¾Ñ\81Ñ\82/комменÑ\82аÑ\80ий"
 
-#: include/nav.php:123 include/text.php:1014 mod/search.php:149
-msgid "Search"
-msgstr "Ð\9fоиÑ\81к"
+#: include/features.php:100
+msgid "Multiple Deletion"
+msgstr "Ð\9cножеÑ\81Ñ\82венное Ñ\83даление"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Ð\9fоиÑ\81к Ð¿Ð¾ Ñ\81айÑ\82Ñ\83"
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Ð\92Ñ\8bбÑ\80аÑ\82Ñ\8c Ð¸ Ñ\83далиÑ\82Ñ\8c Ð½ÐµÑ\81колÑ\8cко Ð¿Ð¾Ñ\81Ñ\82ов/комменÑ\82аÑ\80иев Ð¾Ð´Ð½Ð¾Ð²Ñ\80еменно."
 
-#: include/nav.php:126 include/text.php:1022
-msgid "Full Text"
-msgstr "Ð\9aонÑ\82енÑ\82"
+#: include/features.php:101
+msgid "Edit Sent Posts"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð¾Ñ\82пÑ\80авленнÑ\8bе Ð¿Ð¾Ñ\81Ñ\82Ñ\8b"
 
-#: include/nav.php:127 include/text.php:1023
-msgid "Tags"
-msgstr "ТÑ\8dги"
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð¸ Ð¿Ñ\80авиÑ\82Ñ\8c Ð¿Ð¾Ñ\81Ñ\82Ñ\8b Ð¸ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ\82аÑ\80ии Ð¿Ð¾Ñ\81ле Ð¾Ñ\82пÑ\80авлениÑ\8f"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
-msgstr "СообÑ\89еÑ\81Ñ\82во"
+#: include/features.php:102
+msgid "Tagging"
+msgstr "Ð\9eÑ\82меÑ\87енное"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Ð\91еÑ\81едÑ\8b Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
+msgstr "Ð\92озможноÑ\81Ñ\82Ñ\8c Ð¾Ñ\82меÑ\87аÑ\82Ñ\8c Ñ\81Ñ\83Ñ\89еÑ\81Ñ\82вÑ\83Ñ\8eÑ\89ие Ð¿Ð¾Ñ\81Ñ\82Ñ\8b"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Ð\91еÑ\81едÑ\8b Ð² Ñ\81еÑ\82и"
+#: include/features.php:103
+msgid "Post Categories"
+msgstr "Ð\9aаÑ\82егоÑ\80ии Ð¿Ð¾Ñ\81Ñ\82ов"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Ð\9aаÑ\82алог"
+#: include/features.php:103
+msgid "Add categories to your posts"
+msgstr "Ð\94обавиÑ\82Ñ\8c ÐºÐ°Ñ\82егоÑ\80ии Ð²Ð°Ñ\88его Ð¿Ð¾Ñ\81Ñ\82а"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Каталог участников"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
+msgstr ""
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86ия"
+#: include/features.php:105
+msgid "Dislike Posts"
+msgstr "Ð\9fоÑ\81Ñ\82Ñ\8b, ÐºÐ¾Ñ\82оÑ\80Ñ\8bе Ð½Ðµ Ð½Ñ\80авÑ\8fÑ\82Ñ\81я"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾Ð± Ñ\8dÑ\82ом Ñ\8dкземплÑ\8fÑ\80е Friendica"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
+msgstr "Ð\92озможноÑ\81Ñ\82Ñ\8c Ð¿Ð¾Ñ\81Ñ\82авиÑ\82Ñ\8c \"Ð\9dе Ð½Ñ\80авиÑ\82Ñ\81Ñ\8f\" Ð¿Ð¾Ñ\81Ñ\82Ñ\83 Ð¸Ð»Ð¸ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ\82аÑ\80иÑ\8e"
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
-msgstr "Посты ваших друзей"
+#: include/features.php:106
+msgid "Star Posts"
+msgstr "Популярные посты"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зка Ñ\81ети"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Ð\92озможноÑ\81Ñ\82Ñ\8c Ð¾Ñ\82меÑ\82иÑ\82Ñ\8c Ñ\81пеÑ\86иалÑ\8cнÑ\8bе Ñ\81ообÑ\89ениÑ\8f Ð¸Ð½Ð´Ð¸ÐºÐ°Ñ\82оÑ\80ом Ð¿Ð¾Ð¿Ñ\83лÑ\8fÑ\80ноÑ\81ти"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\83 Ñ\81еÑ\82и Ð±ÐµÐ· Ñ\84илÑ\8cÑ\82Ñ\80ов"
+#: include/features.php:107
+msgid "Mute Post Notifications"
+msgstr "Ð\9eÑ\82клÑ\8eÑ\87иÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð´Ð»Ñ\8f Ð¿Ð¾Ñ\81Ñ\82а"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Ð\97апÑ\80оÑ\81Ñ\8b Ð½Ð° Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ Ð² Ñ\81пиÑ\81ок Ð´Ñ\80Ñ\83зей"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
+msgstr "Ð\92озможноÑ\81Ñ\82Ñ\8c Ð¾Ñ\82клÑ\8eÑ\87иÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð´Ð»Ñ\8f Ð¾Ñ\82делÑ\8cно Ð²Ð·Ñ\8fÑ\82ого Ð¾Ð±Ñ\81Ñ\83ждениÑ\8f"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Уведомления"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
+msgstr "РаÑ\81Ñ\88иÑ\80еннÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ð¿Ñ\80оÑ\84иля"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Посмотреть все уведомления"
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
 
-#: include/nav.php:171 mod/settings.php:906
-msgid "Mark as seen"
-msgstr "Ð\9eÑ\82меÑ\82иÑ\82Ñ\8c, ÐºÐ°Ðº Ð¿Ñ\80оÑ\87иÑ\82анное"
+#: include/follow.php:81 mod/dfrn_request.php:512
+msgid "Disallowed profile URL."
+msgstr "Ð\97апÑ\80еÑ\89еннÑ\8bй URL Ð¿Ñ\80оÑ\84илÑ\8f."
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Отметить все системные уведомления, как прочитанные"
+#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
+#: mod/admin.php:279 mod/admin.php:297
+msgid "Blocked domain"
+msgstr ""
 
-#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
-msgid "Messages"
-msgstr "Сообщения"
+#: include/follow.php:91
+msgid "Connect URL missing."
+msgstr "Connect-URL отсутствует."
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
-msgstr "Личная почта"
+#: include/follow.php:119
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Ð\92Ñ\85одÑ\8fÑ\89ие"
+#: include/follow.php:120 include/follow.php:134
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Ð\9eбнаÑ\80Ñ\83женÑ\8b Ð½ÐµÑ\81овмеÑ\81Ñ\82имÑ\8bе Ð¿Ñ\80оÑ\82околÑ\8b Ñ\81вÑ\8fзи Ð¸Ð»Ð¸ ÐºÐ°Ð½Ð°Ð»Ñ\8b."
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Ð\98Ñ\81Ñ\85одÑ\8fÑ\89ие"
+#: include/follow.php:132
+msgid "The profile address specified does not provide adequate information."
+msgstr "УказаннÑ\8bй Ð°Ð´Ñ\80еÑ\81 Ð¿Ñ\80оÑ\84илÑ\8f Ð½Ðµ Ð´Ð°ÐµÑ\82 Ð°Ð´ÐµÐºÐ²Ð°Ñ\82ной Ð¸Ð½Ñ\84оÑ\80маÑ\86ии."
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Ð\9dовое Ñ\81ообÑ\89ение"
+#: include/follow.php:137
+msgid "An author or name was not found."
+msgstr "Ð\90вÑ\82оÑ\80 Ð¸Ð»Ð¸ Ð¸Ð¼Ñ\8f Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ñ\8b."
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "УпÑ\80авлÑ\8fÑ\82Ñ\8c"
+#: include/follow.php:140
+msgid "No browser URL could be matched to this address."
+msgstr "Ð\9dеÑ\82 URL Ð±Ñ\80аÑ\83зеÑ\80а, ÐºÐ¾Ñ\82оÑ\80Ñ\8bй Ñ\81ооÑ\82веÑ\82Ñ\81Ñ\82вÑ\83еÑ\82 Ñ\8dÑ\82омÑ\83 Ð°Ð´Ñ\80еÑ\81Ñ\83."
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Управление другими страницами"
+#: include/follow.php:143
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr ""
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Делегирование"
+#: include/follow.php:144
+msgid "Use mailto: in front of address to force email check."
+msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Делегировать управление страницей"
+#: include/follow.php:150
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
 
-#: include/nav.php:186 mod/admin.php:1533 mod/admin.php:1809
-#: mod/newmember.php:22 mod/settings.php:111 view/theme/frio/theme.php:256
-msgid "Settings"
-msgstr "Настройки"
+#: include/follow.php:155
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
+#: include/follow.php:256
+msgid "Unable to retrieve contact information."
+msgstr "Ð\9dевозможно Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82нÑ\83Ñ\8e Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e."
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Управление/редактирование профилей"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Удаленная группа с таким названием была восстановлена. Существующие права доступа <strong>могут</strong> применяться к этой группе и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте еще ​​одну группу с другим названием."
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
-msgstr "УпÑ\80авление / Ñ\80едакÑ\82иÑ\80ование Ð´Ñ\80Ñ\83зей Ð¸ контактов"
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
+msgstr "Ð\93Ñ\80Ñ\83ппа Ð´Ð¾Ñ\81Ñ\82Ñ\83па Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e Ð´Ð»Ñ\8f Ð½Ð¾Ð²Ñ\8bÑ\85 контактов"
 
-#: include/nav.php:197 mod/admin.php:192
-msgid "Admin"
-msgstr "Ð\90дминиÑ\81Ñ\82Ñ\80аÑ\82оÑ\80"
+#: include/group.php:243
+msgid "Everybody"
+msgstr "Ð\9aаждÑ\8bй"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Конфигурация сайта"
+#: include/group.php:266
+msgid "edit"
+msgstr "редактировать"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Ð\9dавигаÑ\86иÑ\8f"
+#: include/group.php:287 mod/newmember.php:61
+msgid "Groups"
+msgstr "Ð\93Ñ\80Ñ\83ппÑ\8b"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Ð\9aаÑ\80Ñ\82а Ñ\81айÑ\82а"
+#: include/group.php:289
+msgid "Edit groups"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/network.php:622
-msgid "view full size"
-msgstr "поÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð² Ð¿Ð¾Ð»Ð½Ñ\8bй Ñ\80азмеÑ\80"
+#: include/group.php:291
+msgid "Edit group"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83"
 
-#: include/oembed.php:266
-msgid "Embedded content"
-msgstr "Ð\92Ñ\81Ñ\82Ñ\80оенное Ñ\81одеÑ\80жание"
+#: include/group.php:292
+msgid "Create a new group"
+msgstr "СоздаÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\83Ñ\8e Ð³Ñ\80Ñ\83ппÑ\83"
 
-#: include/oembed.php:274
-msgid "Embedding disabled"
-msgstr "Ð\92Ñ\81Ñ\82Ñ\80аивание Ð¾Ñ\82клÑ\8eÑ\87ено"
+#: include/group.php:293 mod/group.php:99 mod/group.php:196
+msgid "Group Name: "
+msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b"
 
-#: include/ostatus.php:1832
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s теперь подписан на %s."
+#: include/group.php:295
+msgid "Contacts not in any group"
+msgstr "Контакты не состоят в группе"
 
-#: include/ostatus.php:1833
-msgid "following"
-msgstr "следует"
+#: include/group.php:297 mod/network.php:207
+msgid "add"
+msgstr "добавить"
 
-#: include/ostatus.php:1836
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s отписался от %s."
+#: include/identity.php:43
+msgid "Requested account is not available."
+msgstr "Запрашиваемый профиль недоступен."
 
-#: include/ostatus.php:1837
-msgid "stopped following"
-msgstr "оÑ\81Ñ\82ановлено Ñ\81ледование"
+#: include/identity.php:52 mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Ð\97апÑ\80аÑ\88иваемÑ\8bй Ð¿Ñ\80оÑ\84илÑ\8c Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пен."
 
-#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40
-#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106
-#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817
-#: mod/photos.php:1829
-msgid "Contact Photos"
-msgstr "Фотографии контакта"
+#: include/identity.php:96 include/identity.php:319 include/identity.php:740
+msgid "Edit profile"
+msgstr "Редактировать профиль"
 
-#: include/plugin.php:530 include/plugin.php:532
-msgid "Click here to upgrade."
-msgstr "Ð\9dажмиÑ\82е Ð´Ð»Ñ\8f Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ\8f."
+#: include/identity.php:259
+msgid "Atom feed"
+msgstr "Фид Atom"
 
-#: include/plugin.php:538
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "ЭÑ\82о Ð´ÐµÐ¹Ñ\81Ñ\82вие Ð¿Ñ\80евÑ\8bÑ\88аеÑ\82 Ð»Ð¸Ð¼Ð¸Ñ\82Ñ\8b, Ñ\83Ñ\81Ñ\82ановленнÑ\8bе Ð²Ð°Ñ\88им Ñ\82аÑ\80иÑ\84нÑ\8bм Ð¿Ð»Ð°Ð½Ð¾Ð¼."
+#: include/identity.php:290
+msgid "Manage/edit profiles"
+msgstr "УпÑ\80авление / Ñ\80едакÑ\82иÑ\80ование Ð¿Ñ\80оÑ\84илей"
 
-#: include/plugin.php:543
-msgid "This action is not available under your subscription plan."
-msgstr "ЭÑ\82о Ð´ÐµÐ¹Ñ\81Ñ\82вие Ð½Ðµ Ð´Ð¾Ñ\81Ñ\82Ñ\83пно Ð² Ñ\81ооÑ\82веÑ\82Ñ\81Ñ\82вии Ñ\81 Ð²Ð°Ñ\88им Ð¿Ð»Ð°Ð½Ð¾Ð¼ Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81ки."
+#: include/identity.php:295 include/identity.php:321 mod/profiles.php:787
+msgid "Change profile photo"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: include/profile_selectors.php:6
-msgid "Male"
-msgstr "Ð\9cÑ\83жÑ\87ина"
+#: include/identity.php:296 mod/profiles.php:788
+msgid "Create New Profile"
+msgstr "СоздаÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bй Ð¿Ñ\80оÑ\84илÑ\8c"
 
-#: include/profile_selectors.php:6
-msgid "Female"
-msgstr "Ð\96енÑ\89ина"
+#: include/identity.php:306 mod/profiles.php:777
+msgid "Profile Image"
+msgstr "ФоÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Ð\92 Ð´Ð°Ð½Ð½Ñ\8bй Ð¼Ð¾Ð¼ÐµÐ½Ñ\82 Ð¼Ñ\83жÑ\87ина"
+#: include/identity.php:309 mod/profiles.php:779
+msgid "visible to everybody"
+msgstr "видимÑ\8bй Ð²Ñ\81ем"
 
-#: include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Ð\92 Ð½Ð°Ñ\81Ñ\82оÑ\8fÑ\89ее Ð²Ñ\80емÑ\8f Ð¶ÐµÐ½Ñ\89ина"
+#: include/identity.php:310 mod/profiles.php:684 mod/profiles.php:780
+msgid "Edit visibility"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð²Ð¸Ð´Ð¸Ð¼Ð¾Ñ\81Ñ\82Ñ\8c"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "В основном мужчина"
+#: include/identity.php:338 include/identity.php:633 mod/directory.php:141
+#: mod/notifications.php:250
+msgid "Gender:"
+msgstr "Пол:"
 
-#: include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Ð\92 Ð¾Ñ\81новном Ð¶ÐµÐ½Ñ\89ина"
+#: include/identity.php:341 include/identity.php:651 mod/directory.php:143
+msgid "Status:"
+msgstr "СÑ\82аÑ\82Ñ\83Ñ\81:"
 
-#: include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "ТÑ\80анÑ\81Ñ\81екÑ\81Ñ\83ал"
+#: include/identity.php:343 include/identity.php:667 mod/directory.php:145
+msgid "Homepage:"
+msgstr "Ð\94омаÑ\88нÑ\8fÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\87ка:"
 
-#: include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Интерсексуал"
+#: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
+#: mod/directory.php:147 mod/notifications.php:246
+msgid "About:"
+msgstr "О себе:"
 
-#: include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Транссексуал"
+#: include/identity.php:347 mod/contacts.php:638
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Ð\93еÑ\80маÑ\84Ñ\80одиÑ\82"
+#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
+msgid "Network:"
+msgstr "СеÑ\82Ñ\8c:"
 
-#: include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Средний род"
+#: include/identity.php:462 include/identity.php:552
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Не определен"
+#: include/identity.php:463 include/identity.php:553
+msgid "F d"
+msgstr "F d"
 
-#: include/profile_selectors.php:6
-msgid "Other"
-msgstr "Другой"
+#: include/identity.php:514 include/identity.php:599
+msgid "[today]"
+msgstr "[сегодня]"
 
-#: include/profile_selectors.php:23
-msgid "Males"
-msgstr "Ð\9cÑ\83жÑ\87инÑ\8b"
+#: include/identity.php:526
+msgid "Birthday Reminders"
+msgstr "Ð\9dапоминаниÑ\8f Ð¾ Ð´Ð½Ñ\8fÑ\85 Ñ\80ождениÑ\8f"
 
-#: include/profile_selectors.php:23
-msgid "Females"
-msgstr "Ð\96енÑ\89инÑ\8b"
+#: include/identity.php:527
+msgid "Birthdays this week:"
+msgstr "Ð\94ни Ñ\80ождениÑ\8f Ð½Ð° Ñ\8dÑ\82ой Ð½ÐµÐ´ÐµÐ»Ðµ:"
 
-#: include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Гей"
+#: include/identity.php:586
+msgid "[No description]"
+msgstr "[без описания]"
 
-#: include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Ð\9bеÑ\81биÑ\8fнка"
+#: include/identity.php:610
+msgid "Event Reminders"
+msgstr "Ð\9dапоминаниÑ\8f Ð¾ Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8fÑ\85"
 
-#: include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Ð\91ез Ð¿Ñ\80едпоÑ\87Ñ\82ений"
+#: include/identity.php:611
+msgid "Events this week:"
+msgstr "Ð\9cеÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f Ð½Ð° Ñ\8dÑ\82ой Ð½ÐµÐ´ÐµÐ»Ðµ:"
 
-#: include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Ð\91иÑ\81екÑ\81Ñ\83ал"
+#: include/identity.php:631 mod/settings.php:1286
+msgid "Full Name:"
+msgstr "Ð\9fолное Ð¸Ð¼Ñ\8f:"
 
-#: include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Автосексуал"
+#: include/identity.php:636
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Воздержанный"
+#: include/identity.php:637
+msgid "j F"
+msgstr "j F"
 
-#: include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Ð\94евÑ\81Ñ\82венниÑ\86а"
+#: include/identity.php:648
+msgid "Age:"
+msgstr "Ð\92озÑ\80аÑ\81Ñ\82:"
 
-#: include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: include/identity.php:659
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "для %1$d %2$s"
 
-#: include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "ФеÑ\82иÑ\88"
+#: include/identity.php:663 mod/profiles.php:703
+msgid "Sexual Preference:"
+msgstr "СекÑ\81Ñ\83алÑ\8cнÑ\8bе Ð¿Ñ\80едпоÑ\87Ñ\82ениÑ\8f:"
 
-#: include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Ð\93Ñ\80Ñ\83пповой"
+#: include/identity.php:671 mod/profiles.php:730
+msgid "Hometown:"
+msgstr "Родной Ð³Ð¾Ñ\80од:"
 
-#: include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Нет интереса к сексу"
+#: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
+#: mod/notifications.php:248
+msgid "Tags:"
+msgstr "Ключевые слова: "
 
-#: include/profile_selectors.php:42
-msgid "Single"
-msgstr "Ð\91ез Ð¿Ð°Ñ\80Ñ\8b"
+#: include/identity.php:679 mod/profiles.php:731
+msgid "Political Views:"
+msgstr "Ð\9fолиÑ\82иÑ\87еÑ\81кие Ð²Ð·Ð³Ð»Ñ\8fдÑ\8b:"
 
-#: include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Ð\9fока Ð½Ð¸ÐºÐ¾Ð³Ð¾ Ð½ÐµÑ\82"
+#: include/identity.php:683
+msgid "Religion:"
+msgstr "РелигиÑ\8f:"
 
-#: include/profile_selectors.php:42
-msgid "Available"
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83пнÑ\8bй"
+#: include/identity.php:691
+msgid "Hobbies/Interests:"
+msgstr "Хобби / Ð\98нÑ\82еÑ\80еÑ\81Ñ\8b:"
 
-#: include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Не ищу никого"
+#: include/identity.php:695 mod/profiles.php:735
+msgid "Likes:"
+msgstr "Нравится:"
 
-#: include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Ð\98мееÑ\82 Ð¾Ñ\88ибкÑ\83"
+#: include/identity.php:699 mod/profiles.php:736
+msgid "Dislikes:"
+msgstr "Ð\9dе Ð½Ñ\80авиÑ\82Ñ\81Ñ\8f:"
 
-#: include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Ð\92лÑ\8eблÑ\91н"
+#: include/identity.php:703
+msgid "Contact information and Social Networks:"
+msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е Ð¸ Ñ\81оÑ\86иалÑ\8cнÑ\8bÑ\85 Ñ\81еÑ\82Ñ\8fÑ\85:"
 
-#: include/profile_selectors.php:42
-msgid "Dating"
-msgstr "СвиданиÑ\8f"
+#: include/identity.php:707
+msgid "Musical interests:"
+msgstr "Ð\9cÑ\83зÑ\8bкалÑ\8cнÑ\8bе Ð¸Ð½Ñ\82еÑ\80еÑ\81Ñ\8b:"
 
-#: include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Ð\98зменÑ\8fÑ\8e Ñ\81Ñ\83пÑ\80Ñ\83гÑ\83"
+#: include/identity.php:711
+msgid "Books, literature:"
+msgstr "Ð\9aниги, Ð»Ð¸Ñ\82еÑ\80аÑ\82Ñ\83Ñ\80а:"
 
-#: include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Ð\9bÑ\8eблÑ\8e Ñ\81екÑ\81"
+#: include/identity.php:715
+msgid "Television:"
+msgstr "Телевидение:"
 
-#: include/profile_selectors.php:42 include/user.php:280 include/user.php:284
-msgid "Friends"
-msgstr "Ð\94Ñ\80Ñ\83зÑ\8cÑ\8f"
+#: include/identity.php:719
+msgid "Film/dance/culture/entertainment:"
+msgstr "Ð\9aино / Ð¢Ð°Ð½Ñ\86Ñ\8b / Ð\9aÑ\83лÑ\8cÑ\82Ñ\83Ñ\80а / Ð Ð°Ð·Ð²Ð»ÐµÑ\87ениÑ\8f:"
 
-#: include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Ð\94Ñ\80Ñ\83зÑ\8cÑ\8f / Ð\9fÑ\80едпоÑ\87Ñ\82ениÑ\8f"
+#: include/identity.php:723
+msgid "Love/Romance:"
+msgstr "Ð\9bÑ\8eбовÑ\8c / Ð Ð¾Ð¼Ð°Ð½Ñ\82ика:"
 
-#: include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ð\9eбÑ\8bÑ\87нÑ\8bй"
+#: include/identity.php:727
+msgid "Work/employment:"
+msgstr "РабоÑ\82а / Ð\97анÑ\8fÑ\82оÑ\81Ñ\82Ñ\8c:"
 
-#: include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Ð\97анÑ\8fÑ\82"
+#: include/identity.php:731
+msgid "School/education:"
+msgstr "Школа / Ð\9eбÑ\80азование:"
 
-#: include/profile_selectors.php:42
-msgid "Married"
-msgstr "Ð\96енаÑ\82 / Ð\97амÑ\83жем"
+#: include/identity.php:736
+msgid "Forums:"
+msgstr "ФоÑ\80Ñ\83мÑ\8b:"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Ð\92ообÑ\80ажаемо Ð¶ÐµÐ½Ð°Ñ\82 (замÑ\83жем)"
+#: include/identity.php:745 mod/events.php:506
+msgid "Basic"
+msgstr "Ð\91азовÑ\8bй"
 
-#: include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Партнеры"
+#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
+#: mod/admin.php:1059
+msgid "Advanced"
+msgstr "Расширенный"
 
-#: include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Ð\9fаÑ\80Ñ\82неÑ\80Ñ\81Ñ\82во"
+#: include/identity.php:772 mod/contacts.php:844 mod/follow.php:145
+msgid "Status Messages and Posts"
+msgstr "Ð\92аÑ\88и Ð¿Ð¾Ñ\81Ñ\82Ñ\8b"
 
-#: include/profile_selectors.php:42
-msgid "Common law"
-msgstr ""
+#: include/identity.php:780 mod/contacts.php:852
+msgid "Profile Details"
+msgstr "Информация о вас"
 
-#: include/profile_selectors.php:42
-msgid "Happy"
-msgstr "СÑ\87аÑ\81Ñ\82лив/а/"
+#: include/identity.php:788 mod/photos.php:93
+msgid "Photo Albums"
+msgstr "ФоÑ\82оалÑ\8cбомÑ\8b"
 
-#: include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Ð\9dе Ð² Ð¿Ð¾Ð¸Ñ\81ке"
+#: include/identity.php:827 mod/notes.php:47
+msgid "Personal Notes"
+msgstr "Ð\9bиÑ\87нÑ\8bе Ð·Ð°Ð¼ÐµÑ\82ки"
 
-#: include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Свинг"
+#: include/identity.php:830
+msgid "Only You Can See This"
+msgstr "ТолÑ\8cко Ð²Ñ\8b Ð¼Ð¾Ð¶ÐµÑ\82е Ñ\8dÑ\82о Ð²Ð¸Ð´ÐµÑ\82Ñ\8c"
 
-#: include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Ð\9fÑ\80еданнÑ\8bй"
+#: include/network.php:687
+msgid "view full size"
+msgstr "поÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð² Ð¿Ð¾Ð»Ð½Ñ\8bй Ñ\80азмеÑ\80"
 
-#: include/profile_selectors.php:42
-msgid "Separated"
-msgstr "РазделеннÑ\8bй"
+#: include/oembed.php:255
+msgid "Embedded content"
+msgstr "Ð\92Ñ\81Ñ\82Ñ\80оенное Ñ\81одеÑ\80жание"
 
-#: include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Ð\9dеÑ\81Ñ\82абилÑ\8cнÑ\8bй"
+#: include/oembed.php:263
+msgid "Embedding disabled"
+msgstr "Ð\92Ñ\81Ñ\82Ñ\80аивание Ð¾Ñ\82клÑ\8eÑ\87ено"
 
-#: include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Разведен(а)"
+#: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
+#: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
+#: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
+#: mod/photos.php:1853
+msgid "Contact Photos"
+msgstr "Фотографии контакта"
 
-#: include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Ð\92ообÑ\80ажаемо Ñ\80азведен(а)"
+#: include/user.php:39 mod/settings.php:375
+msgid "Passwords do not match. Password unchanged."
+msgstr "Ð\9fаÑ\80оли Ð½Ðµ Ñ\81овпадаÑ\8eÑ\82. Ð\9fаÑ\80олÑ\8c Ð½Ðµ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½."
 
-#: include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Ð\9eвдовевÑ\88ий"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "ТÑ\80ебÑ\83еÑ\82Ñ\81Ñ\8f Ð¿Ñ\80иглаÑ\88ение."
 
-#: include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Ð\9dеопÑ\80еделеннÑ\8bй"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Ð\9fÑ\80иглаÑ\88ение Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð¿Ñ\80овеÑ\80ено."
 
-#: include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "влиÑ\88ком Ñ\81ложно"
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Ð\9dевеÑ\80нÑ\8bй URL OpenID"
 
-#: include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ð\9dе Ð±ÐµÑ\81покоиÑ\82Ñ\8c"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ð²ÐµÐ´Ð¸Ñ\82е Ð½ÐµÐ¾Ð±Ñ\85одимÑ\83Ñ\8e Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e."
 
-#: include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "СпÑ\80оÑ\81иÑ\82е Ð¼ÐµÐ½Ñ\8f"
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¸Ñ\81полÑ\8cзÑ\83йÑ\82е Ð±Ð¾Ð»ÐµÐµ ÐºÐ¾Ñ\80оÑ\82кое Ð¸Ð¼Ñ\8f."
 
-#: include/security.php:61
-msgid "Welcome "
-msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c"
+#: include/user.php:98
+msgid "Name too short."
+msgstr "Ð\98мÑ\8f Ñ\81лиÑ\88ком ÐºÐ¾Ñ\80оÑ\82кое."
 
-#: include/security.php:62
-msgid "Please upload a profile photo."
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð·Ð°Ð³Ñ\80Ñ\83зиÑ\82е Ñ\84оÑ\82огÑ\80аÑ\84иÑ\8e Ð¿Ñ\80оÑ\84иля."
+#: include/user.php:106
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Ð\9aажеÑ\82Ñ\81Ñ\8f, Ñ\87Ñ\82о Ñ\8dÑ\82о Ð²Ð°Ñ\88е Ð½ÐµÐ¿Ð¾Ð»Ð½Ð¾Ðµ (Ð\98мÑ\8f Ð¤Ð°Ð¼Ð¸Ð»Ð¸Ñ\8f) Ð¸Ð¼я."
 
-#: include/security.php:65
-msgid "Welcome back "
-msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c Ð¾Ð±Ñ\80аÑ\82но, "
+#: include/user.php:111
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Ð\94омен Ð²Ð°Ñ\88его Ð°Ð´Ñ\80еÑ\81а Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b Ð½Ðµ Ð¾Ñ\82ноÑ\81иÑ\82Ñ\81Ñ\8f Ðº Ñ\87иÑ\81лÑ\83 Ñ\80азÑ\80еÑ\88еннÑ\8bÑ\85 Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е."
 
-#: include/security.php:429
-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 "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки."
+#: include/user.php:114
+msgid "Not a valid email address."
+msgstr "Неверный адрес электронной почты."
 
-#: include/text.php:307
-msgid "newer"
-msgstr "новее"
+#: include/user.php:127
+msgid "Cannot use that email."
+msgstr "Ð\9dелÑ\8cзÑ\8f Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Email."
 
-#: include/text.php:308
-msgid "older"
-msgstr "старее"
+#: include/user.php:133
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr ""
 
-#: include/text.php:313
-msgid "first"
-msgstr "пеÑ\80вÑ\8bй"
+#: include/user.php:140 include/user.php:228
+msgid "Nickname is already registered. Please choose another."
+msgstr "Такой Ð½Ð¸Ðº Ñ\83же Ð·Ð°Ñ\80егиÑ\81Ñ\82Ñ\80иÑ\80ован. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ñ\8bбеÑ\80иÑ\82е Ð´Ñ\80Ñ\83гой."
 
-#: include/text.php:314
-msgid "prev"
-msgstr "пред."
+#: include/user.php:150
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."
 
-#: include/text.php:348
-msgid "next"
-msgstr "след."
+#: include/user.php:166
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
 
-#: include/text.php:349
-msgid "last"
-msgstr "поÑ\81ледний"
+#: include/user.php:214
+msgid "An error occurred during registration. Please try again."
+msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr "Ð\97агÑ\80Ñ\83жаÑ\8e Ð±Ð¾Ð»Ñ\8cÑ\88е Ñ\81ообÑ\89ений..."
+#: include/user.php:239 view/theme/duepuntozero/config.php:43
+msgid "default"
+msgstr "знаÑ\87ение Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
 
-#: include/text.php:404
-msgid "The end"
-msgstr "Ð\9aонеÑ\86"
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Ð\9eÑ\88ибка Ñ\81озданиÑ\8f Ð²Ð°Ñ\88его Ð¿Ñ\80оÑ\84илÑ\8f. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
 
-#: include/text.php:889
-msgid "No contacts"
-msgstr "Нет контактов"
+#: include/user.php:309 include/user.php:317 include/user.php:325
+#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
+#: mod/profile_photo.php:215 mod/profile_photo.php:310
+#: mod/profile_photo.php:320 mod/photos.php:71 mod/photos.php:187
+#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
+#: mod/photos.php:1863
+msgid "Profile Photos"
+msgstr "Фотографии профиля"
 
-#: include/text.php:914
+#: include/user.php:400
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d контакт"
-msgstr[1] "%d контактов"
-msgstr[2] "%d контактов"
-msgstr[3] "%d контактов"
-
-#: include/text.php:927
-msgid "View Contacts"
-msgstr "Просмотр контактов"
-
-#: include/text.php:1015 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
-msgid "Save"
-msgstr "Сохранить"
-
-#: include/text.php:1078
-msgid "poke"
-msgstr "poke"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr ""
 
-#: include/text.php:1078
-msgid "poked"
-msgstr "ткнут"
+#: include/user.php:410
+#, php-format
+msgid "Registration at %s"
+msgstr ""
 
-#: include/text.php:1079
-msgid "ping"
-msgstr "пинг"
+#: include/user.php:420
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr ""
 
-#: include/text.php:1079
-msgid "pinged"
+#: include/user.php:424
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr ""
+
+#: include/user.php:456 mod/admin.php:1308
+#, php-format
+msgid "Registration details for %s"
+msgstr "Подробности регистрации для %s"
+
+#: include/dbstructure.php:20
+msgid "There are no tables on MyISAM."
+msgstr ""
+
+#: include/dbstructure.php:61
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr ""
+
+#: include/dbstructure.php:66
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Сообщение об ошибке:\n[pre]%s[/pre]"
+
+#: include/dbstructure.php:190
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr ""
+
+#: include/dbstructure.php:193
+msgid "Errors encountered performing database changes: "
+msgstr ""
+
+#: include/dbstructure.php:201
+msgid ": Database update"
+msgstr ""
+
+#: include/dbstructure.php:425
+#, php-format
+msgid "%s: updating %s table."
+msgstr ""
+
+#: include/dfrn.php:1251
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "День рождения %s"
+
+#: include/diaspora.php:2137
+msgid "Sharing notification from Diaspora network"
+msgstr "Уведомление о шаре из сети Diaspora"
+
+#: include/diaspora.php:3146
+msgid "Attachments:"
+msgstr "Вложения:"
+
+#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
+msgstr "[Имя не разглашается]"
+
+#: include/items.php:2123 mod/display.php:103 mod/display.php:279
+#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
+#: mod/admin.php:1565 mod/admin.php:1816
+msgid "Item not found."
+msgstr "Пункт не найден."
+
+#: include/items.php:2162
+msgid "Do you really want to delete this item?"
+msgstr "Вы действительно хотите удалить этот элемент?"
+
+#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
+#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
+#: mod/profiles.php:670 mod/register.php:245 mod/settings.php:1171
+#: mod/settings.php:1177 mod/settings.php:1184 mod/settings.php:1188
+#: mod/settings.php:1193 mod/settings.php:1198 mod/settings.php:1203
+#: mod/settings.php:1208 mod/settings.php:1234 mod/settings.php:1235
+#: mod/settings.php:1236 mod/settings.php:1237 mod/settings.php:1238
+msgid "Yes"
+msgstr "Да"
+
+#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
+#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
+#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
+#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
+#: mod/invite.php:103 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
+#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
+#: mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/regmod.php:113 mod/repair_ostatus.php:9
+#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
+#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
+#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
+#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
+#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
+#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
+#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
+#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
+#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
+#: mod/item.php:208 mod/notifications.php:71 index.php:407
+msgid "Permission denied."
+msgstr "Нет разрешения."
+
+#: include/items.php:2444
+msgid "Archives"
+msgstr "Архивы"
+
+#: include/ostatus.php:1947
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s теперь подписан на %s."
+
+#: include/ostatus.php:1948
+msgid "following"
+msgstr "следует"
+
+#: include/ostatus.php:1951
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s отписался от %s."
+
+#: include/ostatus.php:1952
+msgid "stopped following"
+msgstr "остановлено следование"
+
+#: include/text.php:307
+msgid "newer"
+msgstr "новее"
+
+#: include/text.php:308
+msgid "older"
+msgstr "старее"
+
+#: include/text.php:313
+msgid "first"
+msgstr "первый"
+
+#: include/text.php:314
+msgid "prev"
+msgstr "пред."
+
+#: include/text.php:348
+msgid "next"
+msgstr "след."
+
+#: include/text.php:349
+msgid "last"
+msgstr "последний"
+
+#: include/text.php:403
+msgid "Loading more entries..."
+msgstr "Загружаю больше сообщений..."
+
+#: include/text.php:404
+msgid "The end"
+msgstr "Конец"
+
+#: include/text.php:955
+msgid "No contacts"
+msgstr "Нет контактов"
+
+#: include/text.php:980
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d контакт"
+msgstr[1] "%d контактов"
+msgstr[2] "%d контактов"
+msgstr[3] "%d контактов"
+
+#: include/text.php:993
+msgid "View Contacts"
+msgstr "Просмотр контактов"
+
+#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
+msgid "Save"
+msgstr "Сохранить"
+
+#: include/text.php:1144
+msgid "poke"
+msgstr "poke"
+
+#: include/text.php:1144
+msgid "poked"
+msgstr "ткнут"
+
+#: include/text.php:1145
+msgid "ping"
+msgstr "пинг"
+
+#: include/text.php:1145
+msgid "pinged"
 msgstr "пингуется"
 
-#: include/text.php:1080
+#: include/text.php:1146
 msgid "prod"
 msgstr "толкать"
 
-#: include/text.php:1080
+#: include/text.php:1146
 msgid "prodded"
 msgstr "толкнут"
 
-#: include/text.php:1081
+#: include/text.php:1147
 msgid "slap"
 msgstr "шлепнуть"
 
-#: include/text.php:1081
+#: include/text.php:1147
 msgid "slapped"
 msgstr "шлепнут"
 
-#: include/text.php:1082
+#: include/text.php:1148
 msgid "finger"
 msgstr ""
 
-#: include/text.php:1082
+#: include/text.php:1148
 msgid "fingered"
 msgstr ""
 
-#: include/text.php:1083
+#: include/text.php:1149
 msgid "rebuff"
 msgstr ""
 
-#: include/text.php:1083
+#: include/text.php:1149
 msgid "rebuffed"
 msgstr ""
 
-#: include/text.php:1097
+#: include/text.php:1163
 msgid "happy"
 msgstr ""
 
-#: include/text.php:1098
+#: include/text.php:1164
 msgid "sad"
 msgstr ""
 
-#: include/text.php:1099
+#: include/text.php:1165
 msgid "mellow"
 msgstr ""
 
-#: include/text.php:1100
+#: include/text.php:1166
 msgid "tired"
 msgstr ""
 
-#: include/text.php:1101
+#: include/text.php:1167
 msgid "perky"
 msgstr ""
 
-#: include/text.php:1102
+#: include/text.php:1168
 msgid "angry"
 msgstr ""
 
-#: include/text.php:1103
+#: include/text.php:1169
 msgid "stupified"
 msgstr ""
 
-#: include/text.php:1104
+#: include/text.php:1170
 msgid "puzzled"
 msgstr ""
 
-#: include/text.php:1105
+#: include/text.php:1171
 msgid "interested"
 msgstr ""
 
-#: include/text.php:1106
+#: include/text.php:1172
 msgid "bitter"
 msgstr ""
 
-#: include/text.php:1107
+#: include/text.php:1173
 msgid "cheerful"
 msgstr ""
 
-#: include/text.php:1108
+#: include/text.php:1174
 msgid "alive"
 msgstr ""
 
-#: include/text.php:1109
+#: include/text.php:1175
 msgid "annoyed"
 msgstr ""
 
-#: include/text.php:1110
+#: include/text.php:1176
 msgid "anxious"
 msgstr ""
 
-#: include/text.php:1111
+#: include/text.php:1177
 msgid "cranky"
 msgstr ""
 
-#: include/text.php:1112
+#: include/text.php:1178
 msgid "disturbed"
 msgstr ""
 
-#: include/text.php:1113
+#: include/text.php:1179
 msgid "frustrated"
 msgstr ""
 
-#: include/text.php:1114
+#: include/text.php:1180
 msgid "motivated"
 msgstr ""
 
-#: include/text.php:1115
+#: include/text.php:1181
 msgid "relaxed"
 msgstr ""
 
-#: include/text.php:1116
+#: include/text.php:1182
 msgid "surprised"
 msgstr ""
 
-#: include/text.php:1326 mod/videos.php:384
+#: include/text.php:1392 mod/videos.php:386
 msgid "View Video"
 msgstr "Просмотреть видео"
 
-#: include/text.php:1358
+#: include/text.php:1424
 msgid "bytes"
 msgstr "байт"
 
-#: include/text.php:1390 include/text.php:1402
+#: include/text.php:1456 include/text.php:1468
 msgid "Click to open/close"
 msgstr "Нажмите, чтобы открыть / закрыть"
 
-#: include/text.php:1528
+#: include/text.php:1594
 msgid "View on separate page"
 msgstr ""
 
-#: include/text.php:1529
+#: include/text.php:1595
 msgid "view on separate page"
 msgstr ""
 
-#: include/text.php:1808
+#: include/text.php:1874
 msgid "activity"
 msgstr "активность"
 
-#: include/text.php:1810 mod/content.php:623 object/Item.php:419
+#: include/text.php:1876 mod/content.php:623 object/Item.php:419
 #: object/Item.php:431
 msgid "comment"
 msgid_plural "comments"
@@ -2983,1693 +3125,1743 @@ msgstr[1] ""
 msgstr[2] "комментарий"
 msgstr[3] "комментарий"
 
-#: include/text.php:1811
+#: include/text.php:1877
 msgid "post"
 msgstr "сообщение"
 
-#: include/text.php:1979
+#: include/text.php:2045
 msgid "Item filed"
 msgstr ""
 
-#: include/uimport.php:91
-msgid "Error decoding account file"
-msgstr "Ð\9eÑ\88ибка Ñ\80аÑ\81Ñ\88иÑ\84Ñ\80овки Ñ\84айла Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
+#: mod/allfriends.php:46
+msgid "No friends to display."
+msgstr "Ð\9dеÑ\82 Ð´Ñ\80Ñ\83зей."
 
-#: include/uimport.php:97
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Ð\9eÑ\88ибка! Ð\9dепÑ\80авилÑ\8cнаÑ\8f Ð²ÐµÑ\80Ñ\81иÑ\8f Ð´Ð°Ð½Ð½Ñ\8bÑ\85 Ð² Ñ\84айле! Ð­Ñ\82о Ð½Ðµ Ñ\84айл Ð°ÐºÐºÐ°Ñ\83нÑ\82а Friendica?"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ñ\81вÑ\8fзÑ\8c Ñ\81 Ð¿Ñ\80иложением"
 
-#: include/uimport.php:113 include/uimport.php:124
-msgid "Error! Cannot check nickname"
-msgstr "Ð\9eÑ\88ибка! Ð\9dевозможно Ð¿Ñ\80овеÑ\80иÑ\82Ñ\8c Ð½Ð¸ÐºÐ½ÐµÐ¹Ð¼"
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Ð\92еÑ\80ниÑ\82еÑ\81Ñ\8c Ð² Ð²Ð°Ñ\88е Ð¿Ñ\80иложение Ð¸ Ð·Ð°Ð´Ð°Ð¹Ñ\82е Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð´:"
 
-#: include/uimport.php:117 include/uimport.php:128
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Пользователь '%s' уже существует на этом сервере!"
+#: mod/api.php:89
+msgid "Please login to continue."
+msgstr "Пожалуйста, войдите для продолжения."
 
-#: include/uimport.php:150
-msgid "User creation error"
-msgstr "Ошибка создания пользователя"
+#: mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"
 
-#: include/uimport.php:170
-msgid "User profile creation error"
-msgstr "Ошибка создания профиля пользователя"
+#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
+#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
+#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
+#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
+#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238
+msgid "No"
+msgstr "Нет"
 
-#: include/uimport.php:219
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d контакт не импортирован"
-msgstr[1] "%d контакты не импортированы"
-msgstr[2] "%d контакты не импортированы"
-msgstr[3] "%d контакты не импортированы"
+#: mod/apps.php:7 index.php:254
+msgid "You must be logged in to use addons. "
+msgstr "Вы должны войти в систему, чтобы использовать аддоны."
 
-#: include/uimport.php:289
-msgid "Done. You can now login with your username and password"
-msgstr "Ð\97авеÑ\80Ñ\88ено. Ð¢ÐµÐ¿ÐµÑ\80Ñ\8c Ð²Ñ\8b Ð¼Ð¾Ð¶ÐµÑ\82е Ð²Ð¾Ð¹Ñ\82и Ñ\81 Ð²Ð°Ñ\88им Ð»Ð¾Ð³Ð¸Ð½Ð¾Ð¼ Ð¸ Ð¿Ð°Ñ\80олем"
+#: mod/apps.php:11
+msgid "Applications"
+msgstr "Ð\9fÑ\80иложениÑ\8f"
 
-#: include/user.php:39 mod/settings.php:375
-msgid "Passwords do not match. Password unchanged."
-msgstr "Ð\9fаÑ\80оли Ð½Ðµ Ñ\81овпадаÑ\8eÑ\82. Ð\9fаÑ\80олÑ\8c Ð½Ðµ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½."
+#: mod/apps.php:14
+msgid "No installed applications."
+msgstr "Ð\9dеÑ\82 Ñ\83Ñ\81Ñ\82ановленнÑ\8bÑ\85 Ð¿Ñ\80иложений."
 
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "ТÑ\80ебÑ\83еÑ\82Ñ\81Ñ\8f Ð¿Ñ\80иглаÑ\88ение."
+#: mod/attach.php:8
+msgid "Item not available."
+msgstr "Ð\9fÑ\83нкÑ\82 Ð½Ðµ Ð´Ð¾Ñ\81Ñ\82Ñ\83пен."
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Ð\9fÑ\80иглаÑ\88ение Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð¿Ñ\80овеÑ\80ено."
+#: mod/attach.php:20
+msgid "Item was not found."
+msgstr "Ð\9fÑ\83нкÑ\82 Ð½Ðµ Ð±Ñ\8bл Ð½Ð°Ð¹Ð´ÐµÐ½."
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ð\9dевеÑ\80нÑ\8bй URL OpenID"
+#: mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Ð\9fоÑ\81Ñ\82 Ð±Ñ\8bл Ñ\81оздан"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ð²ÐµÐ´Ð¸Ñ\82е Ð½ÐµÐ¾Ð±Ñ\85одимÑ\83Ñ\8e Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e."
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Ð\9dеÑ\82 Ð¾Ð±Ñ\89иÑ\85 ÐºÐ¾Ð½Ñ\82акÑ\82ов."
 
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Пожалуйста, используйте более короткое имя."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Имя слишком короткое."
+#: mod/common.php:141 mod/contacts.php:871
+msgid "Common Friends"
+msgstr "Общие друзья"
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
+#: mod/contacts.php:134
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
 
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Ð\94омен Ð²Ð°Ñ\88его Ð°Ð´Ñ\80еÑ\81а Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b Ð½Ðµ Ð¾Ñ\82ноÑ\81иÑ\82Ñ\81Ñ\8f Ðº Ñ\87иÑ\81лÑ\83 Ñ\80азÑ\80еÑ\88еннÑ\8bÑ\85 Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е."
+#: mod/contacts.php:169 mod/contacts.php:378
+msgid "Could not access contact record."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c Ð´Ð¾Ñ\81Ñ\82Ñ\83п Ðº Ð·Ð°Ð¿Ð¸Ñ\81и ÐºÐ¾Ð½Ñ\82акÑ\82а."
 
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Неверный адрес электронной почты."
+#: mod/contacts.php:183
+msgid "Could not locate selected profile."
+msgstr "Не удалось найти выбранный профиль."
 
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Ð\9dелÑ\8cзÑ\8f Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Email."
+#: mod/contacts.php:216
+msgid "Contact updated."
+msgstr "Ð\9aонÑ\82акÑ\82 Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½."
 
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr ""
+#: mod/contacts.php:218 mod/dfrn_request.php:593
+msgid "Failed to update contact record."
+msgstr "Не удалось обновить запись контакта."
 
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Такой Ð½Ð¸Ðº Ñ\83же Ð·Ð°Ñ\80егиÑ\81Ñ\82Ñ\80иÑ\80ован. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ñ\8bбеÑ\80иÑ\82е Ð´Ñ\80Ñ\83гой."
+#: mod/contacts.php:399
+msgid "Contact has been blocked"
+msgstr "Ð\9aонÑ\82акÑ\82 Ð·Ð°Ð±Ð»Ð¾ÐºÐ¸Ñ\80ован"
 
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник."
+#: mod/contacts.php:399
+msgid "Contact has been unblocked"
+msgstr "Контакт разблокирован"
 
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "СÐ\95РЬÐ\95Ð\97Ð\9dÐ\90Я Ð\9eШÐ\98Ð\91Ð\9aÐ\90: Ð³ÐµÐ½ÐµÑ\80аÑ\86иÑ\8f ÐºÐ»Ñ\8eÑ\87ей Ð±ÐµÐ·Ð¾Ð¿Ð°Ñ\81ноÑ\81Ñ\82и Ð½Ðµ Ñ\83далаÑ\81Ñ\8c."
+#: mod/contacts.php:410
+msgid "Contact has been ignored"
+msgstr "Ð\9aонÑ\82акÑ\82 Ð¿Ñ\80оигноÑ\80иÑ\80ован"
 
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80и Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
+#: mod/contacts.php:410
+msgid "Contact has been unignored"
+msgstr "У ÐºÐ¾Ð½Ñ\82акÑ\82а Ð¾Ñ\82менено Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80ование"
 
-#: include/user.php:256 view/theme/duepuntozero/config.php:43
-msgid "default"
-msgstr "знаÑ\87ение Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
+#: mod/contacts.php:422
+msgid "Contact has been archived"
+msgstr "Ð\9aонÑ\82акÑ\82 Ð·Ð°Ð°Ñ\80Ñ\85ивиÑ\80ован"
 
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Ð\9eÑ\88ибка Ñ\81озданиÑ\8f Ð²Ð°Ñ\88его Ð¿Ñ\80оÑ\84илÑ\8f. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
+#: mod/contacts.php:422
+msgid "Contact has been unarchived"
+msgstr "Ð\9aонÑ\82акÑ\82 Ñ\80азаÑ\80Ñ\85ивиÑ\80ован"
 
-#: include/user.php:326 include/user.php:334 include/user.php:342
-#: mod/photos.php:68 mod/photos.php:182 mod/photos.php:768 mod/photos.php:1231
-#: mod/photos.php:1252 mod/photos.php:1839 mod/profile_photo.php:74
-#: mod/profile_photo.php:82 mod/profile_photo.php:90 mod/profile_photo.php:215
-#: mod/profile_photo.php:310 mod/profile_photo.php:320
-msgid "Profile Photos"
-msgstr "Фотографии профиля"
+#: mod/contacts.php:447
+msgid "Drop contact"
+msgstr "Удалить контакт"
 
-#: include/user.php:417
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr ""
+#: mod/contacts.php:450 mod/contacts.php:809
+msgid "Do you really want to delete this contact?"
+msgstr "Вы действительно хотите удалить этот контакт?"
 
-#: include/user.php:427
-#, php-format
-msgid "Registration at %s"
-msgstr ""
+#: mod/contacts.php:469
+msgid "Contact has been removed."
+msgstr "Контакт удален."
 
-#: include/user.php:437
+#: mod/contacts.php:506
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr ""
+msgid "You are mutual friends with %s"
+msgstr "У Вас взаимная дружба с %s"
 
-#: include/user.php:441
+#: mod/contacts.php:510
 #, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr ""
+msgid "You are sharing with %s"
+msgstr "Вы делитесь с %s"
 
-#: include/user.php:473 mod/admin.php:1223
+#: mod/contacts.php:515
 #, php-format
-msgid "Registration details for %s"
-msgstr "Подробности регистрации для %s"
+msgid "%s is sharing with you"
+msgstr "%s делится с Вами"
 
-#: index.php:248 mod/apps.php:7
-msgid "You must be logged in to use addons. "
-msgstr "Ð\92Ñ\8b Ð´Ð¾Ð»Ð¶Ð½Ñ\8b Ð²Ð¾Ð¹Ñ\82и Ð² Ñ\81иÑ\81Ñ\82емÑ\83, Ñ\87Ñ\82обÑ\8b Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ð°Ð´Ð´Ð¾Ð½Ñ\8b."
+#: mod/contacts.php:535
+msgid "Private communications are not available for this contact."
+msgstr "Ð\9fÑ\80иваÑ\82нÑ\8bе ÐºÐ¾Ð¼Ð¼Ñ\83никаÑ\86ии Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пнÑ\8b Ð´Ð»Ñ\8f Ñ\8dÑ\82ого ÐºÐ¾Ð½Ñ\82акÑ\82а."
 
-#: index.php:292 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
-#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52
-msgid "Not Found"
-msgstr "Не найдено"
+#: mod/contacts.php:538 mod/admin.php:978
+msgid "Never"
+msgstr "Никогда"
 
-#: index.php:295 mod/help.php:56
-msgid "Page not found."
-msgstr "Страница не найдена."
+#: mod/contacts.php:542
+msgid "(Update was successful)"
+msgstr "(Обновление было успешно)"
 
-#: index.php:406 mod/group.php:76 mod/profperm.php:20
-msgid "Permission denied"
-msgstr "Доступ запрещен"
+#: mod/contacts.php:542
+msgid "(Update was not successful)"
+msgstr "(Обновление не удалось)"
 
-#: index.php:457
-msgid "toggle mobile"
-msgstr "мобилÑ\8cнаÑ\8f Ð²ÐµÑ\80Ñ\81иÑ\8f"
+#: mod/contacts.php:544 mod/contacts.php:972
+msgid "Suggest friends"
+msgstr "Ð\9fÑ\80едложиÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей"
 
-#: mod/admin.php:96
-msgid "Theme settings updated."
-msgstr "Настройки темы обновлены."
+#: mod/contacts.php:548
+#, php-format
+msgid "Network type: %s"
+msgstr "Сеть: %s"
 
-#: mod/admin.php:162 mod/admin.php:967
-msgid "Site"
-msgstr "СайÑ\82"
+#: mod/contacts.php:561
+msgid "Communications lost with this contact!"
+msgstr "СвÑ\8fзÑ\8c Ñ\81 ÐºÐ¾Ð½Ñ\82акÑ\82ом Ñ\83Ñ\82еÑ\80Ñ\8fна!"
 
-#: mod/admin.php:163 mod/admin.php:901 mod/admin.php:1413 mod/admin.php:1429
-msgid "Users"
-msgstr "Ð\9fолÑ\8cзоваÑ\82ели"
+#: mod/contacts.php:564
+msgid "Fetch further information for feeds"
+msgstr "Ð\9fолÑ\83Ñ\87иÑ\82Ñ\8c Ð¿Ð¾Ð´Ñ\80обнÑ\83Ñ\8e Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ñ\84идаÑ\85"
 
-#: mod/admin.php:164 mod/admin.php:1531 mod/admin.php:1594 mod/settings.php:74
-msgid "Plugins"
-msgstr "Ð\9fлагинÑ\8b"
+#: mod/contacts.php:565 mod/admin.php:987
+msgid "Disabled"
+msgstr "Ð\9eÑ\82клÑ\8eÑ\87еннÑ\8bй"
 
-#: mod/admin.php:165 mod/admin.php:1807 mod/admin.php:1857
-msgid "Themes"
-msgstr "ТемÑ\8b"
+#: mod/contacts.php:565
+msgid "Fetch information"
+msgstr "Ð\9fолÑ\83Ñ\87иÑ\82Ñ\8c Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e"
 
-#: mod/admin.php:166 mod/settings.php:52
-msgid "Additional features"
-msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82и"
+#: mod/contacts.php:565
+msgid "Fetch information and keywords"
+msgstr "Ð\9fолÑ\83Ñ\87иÑ\82Ñ\8c Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¸ ÐºÐ»Ñ\8eÑ\87евÑ\8bе Ñ\81лова"
 
-#: mod/admin.php:167
-msgid "DB updates"
-msgstr "Ð\9eбновление Ð\91Ð\94"
+#: mod/contacts.php:583
+msgid "Contact"
+msgstr "Ð\9aонÑ\82акÑ\82"
 
-#: mod/admin.php:168 mod/admin.php:416
-msgid "Inspect Queue"
-msgstr ""
+#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
+#: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
+#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
+#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
+#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
+#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
+#: mod/install.php:242 mod/install.php:282 object/Item.php:705
+#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
+#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
+msgid "Submit"
+msgstr "Добавить"
 
-#: mod/admin.php:169 mod/admin.php:382
-msgid "Federation Statistics"
-msgstr ""
+#: mod/contacts.php:586
+msgid "Profile Visibility"
+msgstr "Видимость профиля"
 
-#: mod/admin.php:183 mod/admin.php:194 mod/admin.php:1931
-msgid "Logs"
-msgstr "Журналы"
+#: mod/contacts.php:587
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
 
-#: mod/admin.php:184 mod/admin.php:1999
-msgid "View Logs"
-msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80 Ð»Ð¾Ð³Ð¾Ð²"
+#: mod/contacts.php:588
+msgid "Contact Information / Notes"
+msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е / Ð\97амеÑ\82ки"
 
-#: mod/admin.php:185
-msgid "probe address"
-msgstr ""
+#: mod/contacts.php:589
+msgid "Edit contact notes"
+msgstr "Редактировать заметки контакта"
 
-#: mod/admin.php:186
-msgid "check webfinger"
-msgstr ""
+#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
+#: mod/viewcontacts.php:102
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Посетить профиль %s [%s]"
 
-#: mod/admin.php:193
-msgid "Plugin Features"
-msgstr "Ð\92озможноÑ\81Ñ\82и Ð¿Ð»Ð°Ð³Ð¸Ð½Ð°"
+#: mod/contacts.php:595
+msgid "Block/Unblock contact"
+msgstr "Ð\91локиÑ\80оваÑ\82Ñ\8c / Ð Ð°Ð·Ð±Ð»Ð¾ÐºÐ¸Ñ\80оваÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
 
-#: mod/admin.php:195
-msgid "diagnostics"
-msgstr "Ð\94иагноÑ\81Ñ\82ика"
+#: mod/contacts.php:596
+msgid "Ignore contact"
+msgstr "Ð\98гноÑ\80иÑ\80оваÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
 
-#: mod/admin.php:196
-msgid "User registrations waiting for confirmation"
-msgstr "РегиÑ\81Ñ\82Ñ\80аÑ\86ии Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей, Ð¾Ð¶Ð¸Ð´Ð°Ñ\8eÑ\89ие Ð¿Ð¾Ð´Ñ\82веÑ\80ждениÑ\8f"
+#: mod/contacts.php:597
+msgid "Repair URL settings"
+msgstr "Ð\92оÑ\81Ñ\81Ñ\82ановиÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки URL"
 
-#: mod/admin.php:312
-msgid "unknown"
-msgstr ""
+#: mod/contacts.php:598
+msgid "View conversations"
+msgstr "Просмотр бесед"
 
-#: mod/admin.php:375
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr ""
+#: mod/contacts.php:604
+msgid "Last update:"
+msgstr "Последнее обновление: "
 
-#: mod/admin.php:376
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
+#: mod/contacts.php:606
+msgid "Update public posts"
+msgstr "Обновить публичные сообщения"
 
-#: mod/admin.php:381 mod/admin.php:415 mod/admin.php:493 mod/admin.php:966
-#: mod/admin.php:1412 mod/admin.php:1530 mod/admin.php:1593 mod/admin.php:1806
-#: mod/admin.php:1856 mod/admin.php:1930 mod/admin.php:1998
-msgid "Administration"
-msgstr "Администрация"
+#: mod/contacts.php:608 mod/contacts.php:982
+msgid "Update now"
+msgstr "Обновить сейчас"
 
-#: mod/admin.php:388
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr ""
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1510
+msgid "Unblock"
+msgstr "Разблокировать"
 
-#: mod/admin.php:418
-msgid "ID"
-msgstr ""
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1509
+msgid "Block"
+msgstr "Заблокировать"
 
-#: mod/admin.php:419
-msgid "Recipient Name"
-msgstr ""
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+msgid "Unignore"
+msgstr "Не игнорировать"
 
-#: mod/admin.php:420
-msgid "Recipient Profile"
-msgstr ""
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+#: mod/notifications.php:60 mod/notifications.php:179
+#: mod/notifications.php:263
+msgid "Ignore"
+msgstr "Игнорировать"
 
-#: mod/admin.php:422
-msgid "Created"
-msgstr ""
+#: mod/contacts.php:618
+msgid "Currently blocked"
+msgstr "В настоящее время заблокирован"
 
-#: mod/admin.php:423
-msgid "Last Tried"
-msgstr ""
+#: mod/contacts.php:619
+msgid "Currently ignored"
+msgstr "В настоящее время игнорируется"
 
-#: mod/admin.php:424
-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/contacts.php:620
+msgid "Currently archived"
+msgstr "В данный момент архивирован"
 
-#: mod/admin.php:449
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the "
-"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
-"Friendica installation.<br />"
-msgstr ""
+#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
+msgid "Hide this contact from others"
+msgstr "Скрыть этот контакт от других"
 
-#: mod/admin.php:454
+#: mod/contacts.php:621
 msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
-msgstr ""
-
-#: mod/admin.php:458 mod/admin.php:1362
-msgid "Normal Account"
-msgstr "Обычный аккаунт"
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы."
 
-#: mod/admin.php:459 mod/admin.php:1363
-msgid "Soapbox Account"
-msgstr "Ð\90ккаÑ\83нÑ\82 Ð\92иÑ\82Ñ\80ина"
+#: mod/contacts.php:622
+msgid "Notification for new posts"
+msgstr "Уведомление Ð¾ Ð½Ð¾Ð²Ñ\8bÑ\85 Ð¿Ð¾Ñ\81Ñ\82аÑ\85"
 
-#: mod/admin.php:460 mod/admin.php:1364
-msgid "Community/Celebrity Account"
-msgstr "Ð\90ккаÑ\83нÑ\82 Ð¡Ð¾Ð¾Ð±Ñ\89еÑ\81Ñ\82во / Ð\97намениÑ\82оÑ\81Ñ\82Ñ\8c"
+#: mod/contacts.php:622
+msgid "Send a notification of every new post of this contact"
+msgstr "Ð\9eÑ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ñ\83ведомление Ð¾ ÐºÐ°Ð¶Ð´Ð¾Ð¼ Ð½Ð¾Ð²Ð¾Ð¼ Ð¿Ð¾Ñ\81Ñ\82е ÐºÐ¾Ð½Ñ\82акÑ\82а"
 
-#: mod/admin.php:461 mod/admin.php:1365
-msgid "Automatic Friend Account"
-msgstr "\"Автоматический друг\" Аккаунт"
+#: mod/contacts.php:625
+msgid "Blacklisted keywords"
+msgstr "Черный список ключевых слов"
 
-#: mod/admin.php:462
-msgid "Blog Account"
-msgstr "Аккаунт блога"
+#: mod/contacts.php:625
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr ""
 
-#: mod/admin.php:463
-msgid "Private Forum"
-msgstr "Личный форум"
+#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
+msgid "Profile URL"
+msgstr "URL профиля"
 
-#: mod/admin.php:488
-msgid "Message queues"
-msgstr "Ð\9eÑ\87еÑ\80еди Ñ\81ообÑ\89ений"
+#: mod/contacts.php:643
+msgid "Actions"
+msgstr "Ð\94ейÑ\81Ñ\82виÑ\8f"
 
-#: mod/admin.php:494
-msgid "Summary"
-msgstr "РезÑ\8eме"
+#: mod/contacts.php:646
+msgid "Contact Settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки ÐºÐ¾Ð½Ñ\82акÑ\82а"
 
-#: mod/admin.php:496
-msgid "Registered users"
-msgstr "Ð\97аÑ\80егиÑ\81Ñ\82Ñ\80иÑ\80ованнÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели"
+#: mod/contacts.php:692
+msgid "Suggestions"
+msgstr "Ð\9fÑ\80едложениÑ\8f"
 
-#: mod/admin.php:498
-msgid "Pending registrations"
-msgstr "Ð\9eжидаÑ\8eÑ\89ие Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии"
+#: mod/contacts.php:695
+msgid "Suggest potential friends"
+msgstr "Ð\9fÑ\80едложиÑ\82Ñ\8c Ð¿Ð¾Ñ\82енÑ\86иалÑ\8cного Ð·Ð½Ð°ÐºÐ¾Ð¼Ð¾Ð³Ð¾"
 
-#: mod/admin.php:499
-msgid "Version"
-msgstr "Версия"
+#: mod/contacts.php:700 mod/group.php:212
+msgid "All Contacts"
+msgstr "Все контакты"
 
-#: mod/admin.php:504
-msgid "Active plugins"
-msgstr "Ð\90кÑ\82ивнÑ\8bе Ð¿Ð»Ð°Ð³Ð¸Ð½ы"
+#: mod/contacts.php:703
+msgid "Show all contacts"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82ы"
 
-#: mod/admin.php:529
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>"
+#: mod/contacts.php:708
+msgid "Unblocked"
+msgstr "Не блокирован"
 
-#: mod/admin.php:819
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr "Ð\94лÑ\8f Ñ\84Ñ\83нкÑ\86иониÑ\80ованиÑ\8f RINO2 Ð½ÐµÐ¾Ð±Ñ\85одим Ð¿Ð°ÐºÐµÑ\82 php5-mcrypt"
+#: mod/contacts.php:711
+msgid "Only show unblocked contacts"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82олÑ\8cко Ð½Ðµ Ð±Ð»Ð¾ÐºÐ¸Ñ\80ованнÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
 
-#: mod/admin.php:827
-msgid "Site settings updated."
-msgstr "УÑ\81Ñ\82ановки Ñ\81айÑ\82а Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ñ\8b."
+#: mod/contacts.php:717
+msgid "Blocked"
+msgstr "Ð\97аблокиÑ\80ован"
 
-#: mod/admin.php:855 mod/settings.php:943
-msgid "No special theme for mobile devices"
-msgstr "Ð\9dеÑ\82 Ñ\81пеÑ\86иалÑ\8cной Ñ\82емÑ\8b Ð´Ð»Ñ\8f Ð¼Ð¾Ð±Ð¸Ð»Ñ\8cнÑ\8bÑ\85 Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82в"
+#: mod/contacts.php:720
+msgid "Only show blocked contacts"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82олÑ\8cко Ð±Ð»Ð¾ÐºÐ¸Ñ\80ованнÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
 
-#: mod/admin.php:884
-msgid "No community page"
-msgstr ""
+#: mod/contacts.php:726
+msgid "Ignored"
+msgstr "Игнорирован"
 
-#: mod/admin.php:885
-msgid "Public postings from users of this site"
-msgstr ""
+#: mod/contacts.php:729
+msgid "Only show ignored contacts"
+msgstr "Показать только игнорируемые контакты"
 
-#: mod/admin.php:886
-msgid "Global community page"
-msgstr ""
+#: mod/contacts.php:735
+msgid "Archived"
+msgstr "Архивированные"
 
-#: mod/admin.php:891 mod/contacts.php:538
-msgid "Never"
-msgstr "Ð\9dикогда"
+#: mod/contacts.php:738
+msgid "Only show archived contacts"
+msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c Ñ\82олÑ\8cко Ð°Ñ\80Ñ\85ивнÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
 
-#: mod/admin.php:892
-msgid "At post arrival"
-msgstr ""
+#: mod/contacts.php:744
+msgid "Hidden"
+msgstr "Скрытые"
 
-#: mod/admin.php:900 mod/contacts.php:565
-msgid "Disabled"
-msgstr "Ð\9eÑ\82клÑ\8eÑ\87еннÑ\8bй"
+#: mod/contacts.php:747
+msgid "Only show hidden contacts"
+msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c Ñ\82олÑ\8cко Ñ\81кÑ\80Ñ\8bÑ\82Ñ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
 
-#: mod/admin.php:902
-msgid "Users, Global Contacts"
-msgstr ""
+#: mod/contacts.php:804
+msgid "Search your contacts"
+msgstr "Поиск ваших контактов"
 
-#: mod/admin.php:903
-msgid "Users, Global Contacts/fallback"
-msgstr ""
+#: mod/contacts.php:805 mod/network.php:151 mod/search.php:227
+#, php-format
+msgid "Results for: %s"
+msgstr "Результаты для: %s"
 
-#: mod/admin.php:907
-msgid "One month"
-msgstr "Ð\9eдин Ð¼ÐµÑ\81Ñ\8fÑ\86"
+#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
+msgid "Update"
+msgstr "Ð\9eбновление"
 
-#: mod/admin.php:908
-msgid "Three months"
-msgstr "ТÑ\80и Ð¼ÐµÑ\81Ñ\8fÑ\86а"
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Archive"
+msgstr "Ð\90Ñ\80Ñ\85ивиÑ\80оваÑ\82Ñ\8c"
 
-#: mod/admin.php:909
-msgid "Half a year"
-msgstr "Ð\9fол Ð³Ð¾Ð´Ð°"
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Unarchive"
+msgstr "РазаÑ\80Ñ\85ивиÑ\80оваÑ\82Ñ\8c"
 
-#: mod/admin.php:910
-msgid "One year"
-msgstr "Ð\9eдин Ð³Ð¾Ð´"
+#: mod/contacts.php:818
+msgid "Batch Actions"
+msgstr "Ð\9fакеÑ\82нÑ\8bе Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f"
 
-#: mod/admin.php:915
-msgid "Multi user instance"
-msgstr "Ð\9cногополÑ\8cзоваÑ\82елÑ\8cÑ\81кий Ð²Ð¸Ð´"
+#: mod/contacts.php:864
+msgid "View all contacts"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
 
-#: mod/admin.php:938
-msgid "Closed"
-msgstr "Ð\97акÑ\80Ñ\8bÑ\82о"
+#: mod/contacts.php:874
+msgid "View all common friends"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е Ð¾Ð±Ñ\89ие Ð¿Ð¾Ð»Ñ\8f"
 
-#: mod/admin.php:939
-msgid "Requires approval"
-msgstr "ТÑ\80ебÑ\83еÑ\82Ñ\81Ñ\8f Ð¿Ð¾Ð´Ñ\82веÑ\80ждение"
+#: mod/contacts.php:881
+msgid "Advanced Contact Settings"
+msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð\9aонÑ\82акÑ\82а"
 
-#: mod/admin.php:940
-msgid "Open"
-msgstr "Ð\9eÑ\82кÑ\80Ñ\8bÑ\82о"
+#: mod/contacts.php:915
+msgid "Mutual Friendship"
+msgstr "Ð\92заимнаÑ\8f Ð´Ñ\80Ñ\83жба"
 
-#: mod/admin.php:944
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Нет режима SSL, состояние SSL не будет отслеживаться"
+#: mod/contacts.php:919
+msgid "is a fan of yours"
+msgstr "является вашим поклонником"
 
-#: mod/admin.php:945
-msgid "Force all links to use SSL"
-msgstr "Ð\97аÑ\81Ñ\82авиÑ\82Ñ\8c Ð²Ñ\81е Ñ\81Ñ\81Ñ\8bлки Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c SSL"
+#: mod/contacts.php:923
+msgid "you are a fan of"
+msgstr "Ð\92Ñ\8b - Ð¿Ð¾ÐºÐ»Ð¾Ð½Ð½Ð¸Ðº"
 
-#: mod/admin.php:946
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Само-подпиÑ\81аннÑ\8bй Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82, Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c SSL Ñ\82олÑ\8cко Ð»Ð¾ÐºÐ°Ð»Ñ\8cно (не Ñ\80екомендÑ\83еÑ\82Ñ\81Ñ\8f)"
+#: mod/contacts.php:939 mod/nogroup.php:44
+msgid "Edit contact"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
 
-#: mod/admin.php:968 mod/admin.php:1595 mod/admin.php:1858 mod/admin.php:1932
-#: mod/admin.php:2085 mod/settings.php:681 mod/settings.php:792
-#: mod/settings.php:841 mod/settings.php:908 mod/settings.php:1005
-#: mod/settings.php:1271
-msgid "Save Settings"
-msgstr "Сохранить настройки"
+#: mod/contacts.php:993
+msgid "Toggle Blocked status"
+msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
 
-#: mod/admin.php:969 mod/register.php:272
-msgid "Registration"
-msgstr "РегиÑ\81Ñ\82Ñ\80аÑ\86ия"
+#: mod/contacts.php:1001
+msgid "Toggle Ignored status"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81 Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80ования"
 
-#: mod/admin.php:970
-msgid "File upload"
-msgstr "Ð\97агÑ\80Ñ\83зка Ñ\84айлов"
+#: mod/contacts.php:1009
+msgid "Toggle Archive status"
+msgstr "СмениÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81 Ð°Ñ\80Ñ\85иваÑ\86ии (аÑ\80Ñ\85ивиÑ\80ова/не Ð°Ñ\80Ñ\85ивиÑ\80оваÑ\82Ñ\8c)"
 
-#: mod/admin.php:971
-msgid "Policies"
-msgstr "Ð\9fолиÑ\82ики"
+#: mod/contacts.php:1017
+msgid "Delete contact"
+msgstr "УдалиÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
 
-#: mod/admin.php:973
-msgid "Auto Discovered Contact Directory"
-msgstr ""
+#: mod/content.php:119 mod/network.php:475
+msgid "No such group"
+msgstr "Нет такой группы"
 
-#: mod/admin.php:974
-msgid "Performance"
-msgstr "Ð\9fÑ\80оизводиÑ\82елÑ\8cноÑ\81Ñ\82Ñ\8c"
+#: mod/content.php:130 mod/group.php:213 mod/network.php:502
+msgid "Group is empty"
+msgstr "Ð\93Ñ\80Ñ\83ппа Ð¿Ñ\83Ñ\81Ñ\82а"
 
-#: mod/admin.php:975
-msgid "Worker"
-msgstr ""
+#: mod/content.php:135 mod/network.php:506
+#, php-format
+msgid "Group: %s"
+msgstr "Группа: %s"
 
-#: mod/admin.php:976
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."
+#: mod/content.php:325 object/Item.php:96
+msgid "This entry was edited"
+msgstr "Эта запись была отредактирована"
 
-#: mod/admin.php:979
-msgid "Site name"
-msgstr "Название сайта"
+#: mod/content.php:621 object/Item.php:417
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d комментарий"
+msgstr[1] "%d комментариев"
+msgstr[2] "%d комментариев"
+msgstr[3] "%d комментариев"
 
-#: mod/admin.php:980
-msgid "Host name"
-msgstr "Ð\98мÑ\8f Ñ\85оÑ\81Ñ\82а"
+#: mod/content.php:638 mod/photos.php:1429 object/Item.php:117
+msgid "Private Message"
+msgstr "Ð\9bиÑ\87ное Ñ\81ообÑ\89ение"
 
-#: mod/admin.php:981
-msgid "Sender Email"
-msgstr "СиÑ\81Ñ\82емнÑ\8bй Email"
+#: mod/content.php:702 mod/photos.php:1625 object/Item.php:274
+msgid "I like this (toggle)"
+msgstr "Ð\9dÑ\80авиÑ\82Ñ\81Ñ\8f"
 
-#: mod/admin.php:981
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "Адрес с которого будут приходить письма пользователям."
+#: mod/content.php:702 object/Item.php:274
+msgid "like"
+msgstr "нравится"
 
-#: mod/admin.php:982
-msgid "Banner/Logo"
-msgstr "Ð\91аннеÑ\80\9bогоÑ\82ип"
+#: mod/content.php:703 mod/photos.php:1626 object/Item.php:275
+msgid "I don't like this (toggle)"
+msgstr "Ð\9dе Ð½Ñ\80авиÑ\82Ñ\81Ñ\8f"
 
-#: mod/admin.php:983
-msgid "Shortcut icon"
-msgstr ""
+#: mod/content.php:703 object/Item.php:275
+msgid "dislike"
+msgstr "не нравится"
 
-#: mod/admin.php:983
-msgid "Link to an icon that will be used for browsers."
-msgstr ""
+#: mod/content.php:705 object/Item.php:278
+msgid "Share this"
+msgstr "Поделитесь этим"
 
-#: mod/admin.php:984
-msgid "Touch icon"
-msgstr ""
+#: mod/content.php:705 object/Item.php:278
+msgid "share"
+msgstr "поделиться"
 
-#: mod/admin.php:984
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr ""
+#: mod/content.php:725 mod/photos.php:1643 mod/photos.php:1685
+#: mod/photos.php:1765 object/Item.php:702
+msgid "This is you"
+msgstr "Это вы"
 
-#: mod/admin.php:985
-msgid "Additional Info"
-msgstr "Дополнительная информация"
+#: mod/content.php:727 mod/content.php:950 mod/photos.php:1645
+#: mod/photos.php:1687 mod/photos.php:1767 object/Item.php:392
+#: object/Item.php:704
+msgid "Comment"
+msgstr "Оставить комментарий"
 
-#: mod/admin.php:985
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr ""
+#: mod/content.php:729 object/Item.php:706
+msgid "Bold"
+msgstr "Жирный"
 
-#: mod/admin.php:986
-msgid "System language"
-msgstr "Системный язык"
+#: mod/content.php:730 object/Item.php:707
+msgid "Italic"
+msgstr "Kурсивный"
 
-#: mod/admin.php:987
-msgid "System theme"
-msgstr "СиÑ\81Ñ\82емнаÑ\8f Ñ\82ема"
+#: mod/content.php:731 object/Item.php:708
+msgid "Underline"
+msgstr "Ð\9fодÑ\87еÑ\80кнÑ\83Ñ\82Ñ\8bй"
 
-#: mod/admin.php:987
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>"
+#: mod/content.php:732 object/Item.php:709
+msgid "Quote"
+msgstr "Цитата"
 
-#: mod/admin.php:988
-msgid "Mobile system theme"
-msgstr "Ð\9cобилÑ\8cнаÑ\8f Ñ\82ема Ñ\81иÑ\81Ñ\82емÑ\8b"
+#: mod/content.php:733 object/Item.php:710
+msgid "Code"
+msgstr "Ð\9aод"
 
-#: mod/admin.php:988
-msgid "Theme for mobile devices"
-msgstr "Тема Ð´Ð»Ñ\8f Ð¼Ð¾Ð±Ð¸Ð»Ñ\8cнÑ\8bÑ\85 Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82в"
+#: mod/content.php:734 object/Item.php:711
+msgid "Image"
+msgstr "Ð\98зобÑ\80ажение / Ð¤Ð¾Ñ\82о"
 
-#: mod/admin.php:989
-msgid "SSL link policy"
-msgstr "Ð\9fолиÑ\82ика SSL"
+#: mod/content.php:735 object/Item.php:712
+msgid "Link"
+msgstr "СÑ\81Ñ\8bлка"
 
-#: mod/admin.php:989
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "СÑ\81Ñ\8bлки Ð´Ð¾Ð»Ð¶Ð½Ñ\8b Ð±Ñ\8bÑ\82Ñ\8c Ð²Ñ\8bнÑ\83жденÑ\8b Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c SSL"
+#: mod/content.php:736 object/Item.php:713
+msgid "Video"
+msgstr "Ð\92идео"
 
-#: mod/admin.php:990
-msgid "Force SSL"
-msgstr "SSL принудительно"
+#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
+msgstr "Редактировать"
 
-#: mod/admin.php:990
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr ""
+#: mod/content.php:772 object/Item.php:238
+msgid "add star"
+msgstr "пометить"
 
-#: mod/admin.php:991
-msgid "Hide help entry from navigation menu"
-msgstr "Скрыть пункт \"помощь\" в меню навигации"
+#: mod/content.php:773 object/Item.php:239
+msgid "remove star"
+msgstr "убрать метку"
 
-#: mod/admin.php:991
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую."
+#: mod/content.php:774 object/Item.php:240
+msgid "toggle star status"
+msgstr "переключить статус"
 
-#: mod/admin.php:992
-msgid "Single user instance"
-msgstr "Ð\9eднополÑ\8cзоваÑ\82елÑ\8cÑ\81кий Ñ\80ежим"
+#: mod/content.php:777 object/Item.php:243
+msgid "starred"
+msgstr "помеÑ\87ено"
 
-#: mod/admin.php:992
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "СделаÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ñ\8dкземплÑ\8fÑ\80 Ð¼Ð½Ð¾Ð³Ð¾Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8cÑ\81ким, Ð¸Ð»Ð¸ Ð¾Ð´Ð½Ð¾Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8cÑ\81ким Ð´Ð»Ñ\8f Ð½Ð°Ð·Ð²Ð°Ð½Ð½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
+#: mod/content.php:778 mod/content.php:800 object/Item.php:263
+msgid "add tag"
+msgstr "добавиÑ\82Ñ\8c ÐºÐ»Ñ\8eÑ\87евое Ñ\81лово (Ñ\82ег)"
 
-#: mod/admin.php:993
-msgid "Maximum image size"
-msgstr "Ð\9cакÑ\81ималÑ\8cнÑ\8bй Ñ\80азмеÑ\80 Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f"
+#: mod/content.php:789 object/Item.php:251
+msgid "ignore thread"
+msgstr "игноÑ\80иÑ\80оваÑ\82Ñ\8c Ñ\82емÑ\83"
 
-#: mod/admin.php:993
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений."
+#: mod/content.php:790 object/Item.php:252
+msgid "unignore thread"
+msgstr "не игнорировать тему"
 
-#: mod/admin.php:994
-msgid "Maximum image length"
-msgstr "Ð\9cакÑ\81ималÑ\8cнаÑ\8f Ð´Ð»Ð¸Ð½Ð° ÐºÐ°Ñ\80Ñ\82инки"
+#: mod/content.php:791 object/Item.php:253
+msgid "toggle ignore status"
+msgstr "измениÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81 Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80ованиÑ\8f"
 
-#: mod/admin.php:994
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."
+#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
+msgid "ignored"
+msgstr ""
 
-#: mod/admin.php:995
-msgid "JPEG image quality"
-msgstr "Качество JPEG изображения"
+#: mod/content.php:805 object/Item.php:141
+msgid "save to folder"
+msgstr "сохранить в папке"
 
-#: mod/admin.php:995
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."
+#: mod/content.php:853 object/Item.php:212
+msgid "I will attend"
+msgstr ""
 
-#: mod/admin.php:997
-msgid "Register policy"
-msgstr "Политика регистрация"
+#: mod/content.php:853 object/Item.php:212
+msgid "I will not attend"
+msgstr ""
 
-#: mod/admin.php:998
-msgid "Maximum Daily Registrations"
-msgstr "Максимальное число регистраций в день"
+#: mod/content.php:853 object/Item.php:212
+msgid "I might attend"
+msgstr ""
 
-#: mod/admin.php:998
-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/content.php:917 object/Item.php:358
+msgid "to"
+msgstr "к"
 
-#: mod/admin.php:999
-msgid "Register text"
-msgstr "ТекÑ\81Ñ\82 Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии"
+#: mod/content.php:918 object/Item.php:360
+msgid "Wall-to-Wall"
+msgstr "СÑ\82ена-на-СÑ\82енÑ\83"
 
-#: mod/admin.php:999
-msgid "Will be displayed prominently on the registration page."
-msgstr "Будет находиться на видном месте на странице регистрации."
+#: mod/content.php:919 object/Item.php:361
+msgid "via Wall-To-Wall:"
+msgstr "через Стена-на-Стену:"
 
-#: mod/admin.php:1000
-msgid "Accounts abandoned after x days"
-msgstr "Ð\90ккаÑ\83нÑ\82 Ñ\81Ñ\87иÑ\82аеÑ\82Ñ\81Ñ\8f Ð¿Ð¾Ñ\81ле x Ð´Ð½ÐµÐ¹ Ð½Ðµ Ð²Ð¾Ñ\81полÑ\8cзованнÑ\8bм"
+#: mod/credits.php:16
+msgid "Credits"
+msgstr "Ð\9fÑ\80изнаÑ\82елÑ\8cноÑ\81Ñ\82Ñ\8c"
 
-#: mod/admin.php:1000
+#: mod/credits.php:17
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
+"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 это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!"
 
-#: mod/admin.php:1001
-msgid "Allowed friend domains"
-msgstr "РазÑ\80еÑ\88еннÑ\8bе Ð´Ð¾Ð¼ÐµÐ½Ñ\8b Ð´Ñ\80Ñ\83зей"
+#: mod/crepair.php:89
+msgid "Contact settings applied."
+msgstr "УÑ\81Ñ\82ановки ÐºÐ¾Ð½Ñ\82акÑ\82а Ð¿Ñ\80инÑ\8fÑ\82Ñ\8b."
 
-#: mod/admin.php:1001
-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/crepair.php:91
+msgid "Contact update failed."
+msgstr "Обновление контакта неудачное."
 
-#: mod/admin.php:1002
-msgid "Allowed email domains"
-msgstr "Разрешенные почтовые домены"
+#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
+#: mod/dfrn_confirm.php:126
+msgid "Contact not found."
+msgstr "Контакт не найден."
 
-#: mod/admin.php:1002
+#: mod/crepair.php:122
 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/admin.php:1003
-msgid "Block public"
-msgstr "Блокировать общественный доступ"
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
 
-#: mod/admin.php:1003
+#: mod/crepair.php:123
 msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Ð\9eÑ\82меÑ\82Ñ\8cÑ\82е, Ñ\87Ñ\82обÑ\8b Ð·Ð°Ð±Ð»Ð¾ÐºÐ¸Ñ\80оваÑ\82Ñ\8c Ð¿Ñ\83блиÑ\87нÑ\8bй Ð´Ð¾Ñ\81Ñ\82Ñ\83п ÐºÐ¾ Ð²Ñ\81ем Ð¸Ð½Ñ\8bм Ð¿Ñ\83блиÑ\87нÑ\8bм Ð¿ÐµÑ\80Ñ\81оналÑ\8cнÑ\8bм Ñ\81Ñ\82Ñ\80аниÑ\86ам Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е, ÐµÑ\81ли Ð²Ñ\8b Ð½Ðµ Ð²Ð¾Ñ\88ли Ð½Ð° Ñ\81айÑ\82."
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð½Ð°Ð¶Ð¼Ð¸Ñ\82е ÐºÐ»Ð°Ð²Ð¸Ñ\88Ñ\83 Ð²Ð°Ñ\88его Ð±Ñ\80аÑ\83зеÑ\80а 'Back' Ð¸Ð»Ð¸ 'Ð\9dазад' <strong>Ñ\81ейÑ\87аÑ\81</strong>, ÐµÑ\81ли Ð²Ñ\8b Ð½Ðµ Ñ\83веÑ\80енÑ\8b, Ñ\87Ñ\82о Ð´ÐµÐ»Ð°ÐµÑ\82е Ð½Ð° Ñ\8dÑ\82ой Ñ\81Ñ\82Ñ\80аниÑ\86е."
 
-#: mod/admin.php:1004
-msgid "Force publish"
-msgstr "Ð\9fÑ\80инÑ\83диÑ\82елÑ\8cнаÑ\8f Ð¿Ñ\83бликаÑ\86иÑ\8f"
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "No mirroring"
+msgstr "Ð\9dе Ð·ÐµÑ\80калиÑ\80оваÑ\82Ñ\8c"
 
-#: mod/admin.php:1004
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."
+#: mod/crepair.php:136
+msgid "Mirror as forwarded posting"
+msgstr "Зеркалировать как переадресованные сообщения"
 
-#: mod/admin.php:1005
-msgid "Global directory URL"
-msgstr ""
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "Mirror as my own posting"
+msgstr "Зеркалировать как мои сообщения"
 
-#: mod/admin.php:1005
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr ""
+#: mod/crepair.php:152
+msgid "Return to contact editor"
+msgstr "Возврат к редактору контакта"
 
-#: mod/admin.php:1006
-msgid "Allow threaded items"
-msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ñ\82емÑ\8b Ð² Ð¾Ð±Ñ\81Ñ\83ждении"
+#: mod/crepair.php:154
+msgid "Refetch contact data"
+msgstr "Ð\9eбновиÑ\82Ñ\8c Ð´Ð°Ð½Ð½Ñ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82а"
 
-#: mod/admin.php:1006
-msgid "Allow infinite level threading for items on this site."
-msgstr "Разрешить бесконечный уровень для тем на этом сайте."
+#: mod/crepair.php:158
+msgid "Remote Self"
+msgstr "Remote Self"
 
-#: mod/admin.php:1007
-msgid "Private posts by default for new users"
-msgstr "ЧаÑ\81Ñ\82нÑ\8bе Ñ\81ообÑ\89ениÑ\8f Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e Ð´Ð»Ñ\8f Ð½Ð¾Ð²Ñ\8bÑ\85 Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
+#: mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Ð\97екÑ\80алиÑ\80оваÑ\82Ñ\8c Ñ\81ообÑ\89ениÑ\8f Ð¾Ñ\82 Ñ\8dÑ\82ого ÐºÐ¾Ð½Ñ\82акÑ\82а"
 
-#: mod/admin.php:1007
+#: mod/crepair.php:163
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "УÑ\81Ñ\82ановиÑ\82Ñ\8c Ð¿Ñ\80ава Ð½Ð° Ñ\81оздание Ð¿Ð¾Ñ\81Ñ\82ов Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e Ð´Ð»Ñ\8f Ð²Ñ\81еÑ\85 Ñ\83Ñ\87аÑ\81Ñ\82ников Ð² Ð´ÐµÑ\84олÑ\82ной Ð¿Ñ\80иваÑ\82ной Ð³Ñ\80Ñ\83ппе, Ð° Ð½Ðµ Ð´Ð»Ñ\8f Ð¿Ñ\83блиÑ\87нÑ\8bÑ\85 Ñ\83Ñ\87аÑ\81Ñ\82ников."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Ð\9fомеÑ\82иÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82 ÐºÐ°Ðº remote_self, Ñ\87Ñ\82о Ð·Ð°Ñ\81Ñ\82авиÑ\82 Friendica Ð¿Ð¾Ñ\81Ñ\82иÑ\82Ñ\8c Ñ\81ообÑ\89ениÑ\8f Ð¾Ñ\82 Ñ\8dÑ\82ого ÐºÐ¾Ð½Ñ\82акÑ\82а."
 
-#: mod/admin.php:1008
-msgid "Don't include post content in email notifications"
-msgstr "Не включать текст сообщения в email-оповещение."
+#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
+msgid "Name"
+msgstr "Имя"
 
-#: mod/admin.php:1008
-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/crepair.php:168
+msgid "Account Nickname"
+msgstr "Ник аккаунта"
 
-#: mod/admin.php:1009
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений."
+#: mod/crepair.php:169
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - перезаписывает Имя/Ник"
 
-#: mod/admin.php:1009
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."
+#: mod/crepair.php:170
+msgid "Account URL"
+msgstr "URL аккаунта"
 
-#: mod/admin.php:1010
-msgid "Don't embed private images in posts"
-msgstr "Не вставлять личные картинки в постах"
+#: mod/crepair.php:171
+msgid "Friend Request URL"
+msgstr "URL запроса в друзья"
 
-#: mod/admin.php:1010
-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/crepair.php:172
+msgid "Friend Confirm URL"
+msgstr "URL подтверждения друга"
 
-#: mod/admin.php:1011
-msgid "Allow Users to set remote_self"
-msgstr "Разрешить пользователям установить remote_self"
+#: mod/crepair.php:173
+msgid "Notification Endpoint URL"
+msgstr "URL эндпоинта уведомления"
 
-#: mod/admin.php:1011
-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/crepair.php:174
+msgid "Poll/Feed URL"
+msgstr "URL опроса/ленты"
 
-#: mod/admin.php:1012
-msgid "Block multiple registrations"
-msgstr "Ð\91локиÑ\80оваÑ\82Ñ\8c Ð¼Ð½Ð¾Ð¶ÐµÑ\81Ñ\82веннÑ\8bе Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии"
+#: mod/crepair.php:175
+msgid "New photo from this URL"
+msgstr "Ð\9dовое Ñ\84оÑ\82о Ð¸Ð· Ñ\8dÑ\82ой URL"
 
-#: mod/admin.php:1012
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Ð\97апÑ\80еÑ\82иÑ\82Ñ\8c Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8fм Ñ\80егиÑ\81Ñ\82Ñ\80иÑ\80оваÑ\82Ñ\8c Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ\82елÑ\8cнÑ\8bе Ð°ÐºÐºÐ°Ñ\83нÑ\82Ñ\8b Ð´Ð»Ñ\8f Ð¸Ñ\81полÑ\8cзованиÑ\8f Ð² ÐºÐ°Ñ\87еÑ\81Ñ\82ве Ñ\81Ñ\82Ñ\80аниц."
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Ð\9dе Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ñ\8bÑ\85 Ð´Ð¾Ð²ÐµÑ\80еннÑ\8bÑ\85 Ð»иц."
 
-#: mod/admin.php:1013
-msgid "OpenID support"
-msgstr "Поддержка OpenID"
+#: mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."
 
-#: mod/admin.php:1013
-msgid "OpenID support for registration and logins."
-msgstr "OpenID поддержка для регистрации и входа в систему."
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Существующие менеджеры страницы"
 
-#: mod/admin.php:1014
-msgid "Fullname check"
-msgstr "Ð\9fÑ\80овеÑ\80ка Ð¿Ð¾Ð»Ð½Ð¾Ð³Ð¾ Ð¸Ð¼ÐµÐ½Ð¸"
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "СÑ\83Ñ\89еÑ\81Ñ\82вÑ\83Ñ\8eÑ\89ие Ñ\83полномоÑ\87еннÑ\8bе Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\8b"
 
-#: mod/admin.php:1014
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера."
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Возможные доверенные лица"
 
-#: mod/admin.php:1015
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 регулярные выражения"
+#: mod/delegate.php:139 mod/tagrm.php:95
+msgid "Remove"
+msgstr "Удалить"
 
-#: mod/admin.php:1015
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Ð\98Ñ\81полÑ\8cзÑ\83йÑ\82е PHP UTF-8 Ð´Ð»Ñ\8f Ñ\80егÑ\83лÑ\8fÑ\80нÑ\8bÑ\85 Ð²Ñ\8bÑ\80ажений"
+#: mod/delegate.php:140
+msgid "Add"
+msgstr "Ð\94обавиÑ\82Ñ\8c"
 
-#: mod/admin.php:1016
-msgid "Community Page Style"
-msgstr ""
+#: mod/delegate.php:141
+msgid "No entries."
+msgstr "Нет записей."
 
-#: mod/admin.php:1016
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s добро пожаловать %2$s"
 
-#: mod/admin.php:1017
-msgid "Posts per user on community page"
-msgstr ""
+#: mod/directory.php:37 mod/display.php:200 mod/viewcontacts.php:36
+#: mod/community.php:18 mod/dfrn_request.php:804 mod/photos.php:979
+#: mod/probe.php:9 mod/search.php:93 mod/search.php:99 mod/videos.php:198
+#: mod/webfinger.php:8
+msgid "Public access denied."
+msgstr "Свободный доступ закрыт."
 
-#: mod/admin.php:1017
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
+#: mod/directory.php:199 view/theme/vier/theme.php:199
+msgid "Global Directory"
+msgstr "Глобальный каталог"
 
-#: mod/admin.php:1018
-msgid "Enable OStatus support"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð¿Ð¾Ð´Ð´ÐµÑ\80жкÑ\83 OStatus"
+#: mod/directory.php:201
+msgid "Find on this site"
+msgstr "Ð\9dайÑ\82и Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е"
 
-#: mod/admin.php:1018
-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/directory.php:203
+msgid "Results for:"
+msgstr "Результаты для:"
 
-#: mod/admin.php:1019
-msgid "OStatus conversation completion interval"
-msgstr ""
+#: mod/directory.php:205
+msgid "Site Directory"
+msgstr "Каталог сайта"
 
-#: mod/admin.php:1019
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."
+#: mod/directory.php:212
+msgid "No entries (some entries may be hidden)."
+msgstr "Нет записей (некоторые записи могут быть скрыты)."
 
-#: mod/admin.php:1020
-msgid "Only import OStatus threads from our contacts"
-msgstr ""
+#: mod/display.php:328 mod/cal.php:143 mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Доступ к этому профилю ограничен."
 
-#: mod/admin.php:1020
-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/display.php:479
+msgid "Item has been removed."
+msgstr "Пункт был удален."
 
-#: mod/admin.php:1021
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr ""
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
+msgstr "Элемент не найден"
 
-#: mod/admin.php:1023
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr ""
+#: mod/editpost.php:32
+msgid "Edit post"
+msgstr "Редактировать сообщение"
 
-#: mod/admin.php:1024
-msgid "Enable Diaspora support"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð¿Ð¾Ð´Ð´ÐµÑ\80жкÑ\83 Diaspora"
+#: mod/fbrowser.php:132
+msgid "Files"
+msgstr "ФайлÑ\8b"
 
-#: mod/admin.php:1024
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Обеспечить встроенную поддержку сети Diaspora."
+#: mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48 mod/help.php:53
+#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:298
+msgid "Not Found"
+msgstr "Не найдено"
 
-#: mod/admin.php:1025
-msgid "Only allow Friendica contacts"
-msgstr "Позвольть только  Friendica контакты"
+#: mod/filer.php:30
+msgid "- select -"
+msgstr "- выбрать -"
 
-#: mod/admin.php:1025
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
+#: mod/fsuggest.php:64
+msgid "Friend suggestion sent."
+msgstr "Приглашение в друзья отправлено."
 
-#: mod/admin.php:1026
-msgid "Verify SSL"
-msgstr "Ð\9fÑ\80овеÑ\80ка SSL"
+#: mod/fsuggest.php:98
+msgid "Suggest Friends"
+msgstr "Ð\9fÑ\80едложиÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей"
 
-#: mod/admin.php:1026
-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 "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."
+#: mod/fsuggest.php:100
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Предложить друга для %s."
 
-#: mod/admin.php:1027
-msgid "Proxy user"
-msgstr "Ð\9fÑ\80окÑ\81и Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8c"
+#: mod/hcard.php:11
+msgid "No profile"
+msgstr "Ð\9dеÑ\82 Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/admin.php:1028
-msgid "Proxy URL"
-msgstr "Прокси URL"
+#: mod/help.php:41
+msgid "Help:"
+msgstr "Помощь:"
 
-#: mod/admin.php:1029
-msgid "Network timeout"
-msgstr "Тайм-аÑ\83Ñ\82 Ñ\81еÑ\82и"
+#: mod/help.php:56 index.php:301
+msgid "Page not found."
+msgstr "СÑ\82Ñ\80аниÑ\86а Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ð°."
 
-#: mod/admin.php:1029
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Добро пожаловать на %s!"
 
-#: mod/admin.php:1030
-msgid "Maximum Load Average"
-msgstr "СÑ\80еднÑ\8fÑ\8f Ð¼Ð°ÐºÑ\81ималÑ\8cнаÑ\8f Ð½Ð°Ð³Ñ\80Ñ\83зка"
+#: mod/invite.php:28
+msgid "Total invitation limit exceeded."
+msgstr "Ð\9fÑ\80евÑ\8bÑ\88ен Ð¾Ð±Ñ\89ий Ð»Ð¸Ð¼Ð¸Ñ\82 Ð¿Ñ\80иглаÑ\88ений."
 
-#: mod/admin.php:1030
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."
+#: mod/invite.php:51
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Неверный адрес электронной почты."
 
-#: mod/admin.php:1031
-msgid "Maximum Load Average (Frontend)"
-msgstr ""
+#: mod/invite.php:76
+msgid "Please join us on Friendica"
+msgstr "Пожалуйста, присоединяйтесь к нам на Friendica"
 
-#: mod/admin.php:1031
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr ""
+#: mod/invite.php:87
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта."
 
-#: mod/admin.php:1032
-msgid "Maximum table size for optimization"
-msgstr ""
+#: mod/invite.php:91
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Доставка сообщения не удалась."
 
-#: mod/admin.php:1032
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr ""
+#: mod/invite.php:95
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d сообщение отправлено."
+msgstr[1] "%d сообщений отправлено."
+msgstr[2] "%d сообщений отправлено."
+msgstr[3] "%d сообщений отправлено."
 
-#: mod/admin.php:1033
-msgid "Minimum level of fragmentation"
-msgstr ""
+#: mod/invite.php:114
+msgid "You have no more invitations available"
+msgstr "У вас нет больше приглашений"
 
-#: mod/admin.php:1033
+#: mod/invite.php:122
+#, php-format
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr ""
+"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 "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."
 
-#: mod/admin.php:1035
-msgid "Periodical check of global contacts"
-msgstr ""
+#: mod/invite.php:124
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"
 
-#: mod/admin.php:1035
+#: mod/invite.php:125
+#, 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 ""
+"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, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s  со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."
 
-#: mod/admin.php:1036
-msgid "Days between requery"
-msgstr ""
+#: mod/invite.php:128
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."
 
-#: mod/admin.php:1036
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr ""
+#: mod/invite.php:134
+msgid "Send invitations"
+msgstr "Отправить приглашения"
 
-#: mod/admin.php:1037
-msgid "Discover contacts from other servers"
-msgstr ""
+#: mod/invite.php:135
+msgid "Enter email addresses, one per line:"
+msgstr "Введите адреса электронной почты, по одному в строке:"
+
+#: mod/invite.php:136 mod/wallmessage.php:135 mod/message.php:332
+#: mod/message.php:515
+msgid "Your message:"
+msgstr "Ваше сообщение:"
 
-#: mod/admin.php:1037
+#: mod/invite.php:137
 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 ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть."
 
-#: mod/admin.php:1038
-msgid "Timeframe for fetching global contacts"
-msgstr ""
+#: mod/invite.php:139
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
 
-#: mod/admin.php:1038
+#: mod/invite.php:139
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr ""
-
-#: mod/admin.php:1039
-msgid "Search the local directory"
-msgstr ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
 
-#: mod/admin.php:1039
+#: mod/invite.php:141
 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 ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"
 
-#: mod/admin.php:1041
-msgid "Publish server information"
-msgstr ""
+#: mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "История общения"
 
-#: mod/admin.php:1041
+#: mod/localtime.php:26
 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 ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."
 
-#: mod/admin.php:1043
-msgid "Use MySQL full text engine"
-msgstr "Использовать систему полнотексного поиска MySQL"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC время: %s"
 
-#: mod/admin.php:1043
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов."
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Ваш часовой пояс: %s"
 
-#: mod/admin.php:1044
-msgid "Suppress Tags"
-msgstr ""
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Ваше изменённое время: %s"
 
-#: mod/admin.php:1044
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr ""
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Выберите пожалуйста ваш часовой пояс:"
 
-#: mod/admin.php:1045
-msgid "Path to item cache"
-msgstr "Ð\9fÑ\83Ñ\82Ñ\8c Ðº Ñ\8dлеменÑ\82ам ÐºÑ\8dÑ\88а"
+#: mod/lockview.php:32 mod/lockview.php:40
+msgid "Remote privacy information not available."
+msgstr "Ð\9bиÑ\87наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f Ñ\83даленно Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пна."
 
-#: mod/admin.php:1045
-msgid "The item caches buffers generated bbcode and external images."
-msgstr ""
+#: mod/lockview.php:49
+msgid "Visible to:"
+msgstr "Кто может видеть:"
 
-#: mod/admin.php:1046
-msgid "Cache duration in seconds"
-msgstr "Ð\92Ñ\80емÑ\8f Ð¶Ð¸Ð·Ð½Ð¸ ÐºÑ\8dÑ\88а Ð² Ñ\81екÑ\83ндаÑ\85"
+#: mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Ð\9dе Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾ Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cного Ð°ÐºÐºÐ°Ñ\83нÑ\82а."
 
-#: mod/admin.php:1046
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr ""
+#: mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту."
 
-#: mod/admin.php:1047
-msgid "Maximum numbers of comments per post"
+#: mod/lostpass.php:41
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
 msgstr ""
 
-#: mod/admin.php:1047
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/lostpass.php:52
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
 msgstr ""
 
-#: mod/admin.php:1048
-msgid "Temp path"
-msgstr "Временная папка"
+#: mod/lostpass.php:71
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Запрос на сброс пароля получен %s"
 
-#: mod/admin.php:1048
+#: mod/lostpass.php:91
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr ""
-
-#: mod/admin.php:1049
-msgid "Base path to installation"
-msgstr "Путь для установки"
-
-#: mod/admin.php:1049
-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 ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."
 
-#: mod/admin.php:1050
-msgid "Disable picture proxy"
-msgstr "Ð\9eÑ\82клÑ\8eÑ\87иÑ\82Ñ\8c Ð¿Ñ\80окÑ\81иÑ\80ование ÐºÐ°Ñ\80Ñ\82инок"
+#: mod/lostpass.php:110 boot.php:1882
+msgid "Password Reset"
+msgstr "СбÑ\80оÑ\81 Ð¿Ð°Ñ\80олÑ\8f"
 
-#: mod/admin.php:1050
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью."
+#: mod/lostpass.php:111
+msgid "Your password has been reset as requested."
+msgstr "Ваш пароль был сброшен по требованию."
 
-#: mod/admin.php:1051
-msgid "Only search in tags"
-msgstr "Ð\98Ñ\81каÑ\82Ñ\8c Ñ\82олÑ\8cко Ð² Ñ\82егаÑ\85"
+#: mod/lostpass.php:112
+msgid "Your new password is"
+msgstr "Ð\92аÑ\88 Ð½Ð¾Ð²Ñ\8bй Ð¿Ð°Ñ\80олÑ\8c"
 
-#: mod/admin.php:1051
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Ð\9dа Ð±Ð¾Ð»Ñ\8cÑ\88иÑ\85 Ñ\81иÑ\81Ñ\82емаÑ\85 Ñ\82екÑ\81Ñ\82овÑ\8bй Ð¿Ð¾Ð¸Ñ\81к Ð¼Ð¾Ð¶ÐµÑ\82 Ñ\81илÑ\8cно Ð·Ð°Ð¼ÐµÐ´Ð»Ð¸Ñ\82Ñ\8c Ñ\81иÑ\81Ñ\82емÑ\83."
+#: mod/lostpass.php:113
+msgid "Save or copy your new password - and then"
+msgstr "СоÑ\85Ñ\80аниÑ\82е Ð¸Ð»Ð¸ Ñ\81копиÑ\80Ñ\83йÑ\82е Ð½Ð¾Ð²Ñ\8bй Ð¿Ð°Ñ\80олÑ\8c - Ð¸ Ð·Ð°Ñ\82ем"
 
-#: mod/admin.php:1053
-msgid "New base url"
-msgstr "Ð\9dовÑ\8bй Ð±Ð°Ð·Ð¾Ð²Ñ\8bй url"
+#: mod/lostpass.php:114
+msgid "click here to login"
+msgstr "нажмиÑ\82е Ð·Ð´ÐµÑ\81Ñ\8c Ð´Ð»Ñ\8f Ð²Ñ\85ода"
 
-#: mod/admin.php:1053
+#: mod/lostpass.php:115
 msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей."
-
-#: mod/admin.php:1055
-msgid "RINO Encryption"
-msgstr "RINO шифрование"
-
-#: mod/admin.php:1055
-msgid "Encryption layer between nodes."
-msgstr "Слой шифрования между узлами."
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа."
 
-#: mod/admin.php:1056
-msgid "Embedly API key"
-msgstr "Ключ API для Embedly"
+#: mod/lostpass.php:125
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr ""
 
-#: mod/admin.php:1056
+#: mod/lostpass.php:131
+#, php-format
 msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
 msgstr ""
 
-#: mod/admin.php:1058
-msgid "Maximum number of parallel workers"
-msgstr "Максимальное число параллельно работающих worker'ов"
+#: mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Ваш пароль был изменен %s"
 
-#: mod/admin.php:1058
+#: mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Забыли пароль?"
+
+#: mod/lostpass.php:160
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Ð\9eн shared-Ñ\85оÑ\81Ñ\82ингаÑ\85 Ñ\83Ñ\81Ñ\82ановиÑ\82е Ð¿Ð°Ñ\80амеÑ\82Ñ\80 Ð² 2. Ð\9dа Ð±Ð¾Ð»Ñ\8cÑ\88иÑ\85 Ñ\81иÑ\81Ñ\82емаÑ\85 Ð¼Ð¾Ð¶Ð½Ð¾ Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c 10 Ð¸Ð»Ð¸ Ð±Ð¾Ð»ÐµÐµ. Ð\9fо-Ñ\83молÑ\87аниÑ\8e 4."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Ð\92ведиÑ\82е Ð°Ð´Ñ\80еÑ\81 Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b Ð¸ Ð¿Ð¾Ð´Ñ\82веÑ\80диÑ\82е, Ñ\87Ñ\82о Ð²Ñ\8b Ñ\85оÑ\82иÑ\82е Ñ\81бÑ\80оÑ\81иÑ\82Ñ\8c Ð²Ð°Ñ\88 Ð¿Ð°Ñ\80олÑ\8c. Ð\97аÑ\82ем Ð¿Ñ\80овеÑ\80Ñ\8cÑ\82е Ñ\81воÑ\8e Ñ\8dлекÑ\82Ñ\80оннÑ\83Ñ\8e Ð¿Ð¾Ñ\87Ñ\82Ñ\83 Ð´Ð»Ñ\8f Ð¿Ð¾Ð»Ñ\83Ñ\87ениÑ\8f Ð´Ð°Ð»Ñ\8cнейÑ\88иÑ\85 Ð¸Ð½Ñ\81Ñ\82Ñ\80Ñ\83кÑ\86ий."
 
-#: mod/admin.php:1059
-msgid "Don't use 'proc_open' with the worker"
-msgstr "Ð\9dе Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c 'proc_open' Ñ\81 worker'ом"
+#: mod/lostpass.php:161 boot.php:1870
+msgid "Nickname or Email: "
+msgstr "Ð\9dик Ð¸Ð»Ð¸ E-mail: "
 
-#: mod/admin.php:1059
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr ""
+#: mod/lostpass.php:162
+msgid "Reset"
+msgstr "Сброс"
 
-#: mod/admin.php:1060
-msgid "Enable fastlane"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c fastlane"
+#: mod/maintenance.php:20
+msgid "System down for maintenance"
+msgstr "СиÑ\81Ñ\82ема Ð·Ð°ÐºÑ\80Ñ\8bÑ\82а Ð½Ð° Ñ\82еÑ\85ниÑ\87еÑ\81кое Ð¾Ð±Ñ\81лÑ\83живание"
 
-#: mod/admin.php:1060
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr ""
+#: mod/match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."
 
-#: mod/admin.php:1061
-msgid "Enable frontend worker"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c frontend worker"
+#: mod/match.php:88
+msgid "is interested in:"
+msgstr "инÑ\82еÑ\80еÑ\81Ñ\83еÑ\82Ñ\81Ñ\8f:"
 
-#: mod/admin.php:1061
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call yourdomain.tld/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server. The worker background process needs to be activated for "
-"this."
-msgstr ""
+#: mod/match.php:102
+msgid "Profile Match"
+msgstr "Похожие профили"
 
-#: mod/admin.php:1091
-msgid "Update has been marked successful"
-msgstr "Ð\9eбновление Ð±Ñ\8bло Ñ\83Ñ\81пеÑ\88но Ð¾Ñ\82меÑ\87ено"
+#: mod/match.php:109 mod/dirfind.php:245
+msgid "No matches"
+msgstr "Ð\9dеÑ\82 Ñ\81ооÑ\82веÑ\82Ñ\81Ñ\82вий"
 
-#: mod/admin.php:1099
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Обновление базы данных %s успешно применено."
+#: mod/mood.php:134
+msgid "Mood"
+msgstr "Настроение"
 
-#: mod/admin.php:1102
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s"
+#: mod/mood.php:135
+msgid "Set your current mood and tell your friends"
+msgstr "Напишите о вашем настроении и расскажите своим друзьям"
 
-#: mod/admin.php:1116
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Выполнение %s завершено с ошибкой: %s"
+#: mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Добро пожаловать в Friendica"
 
-#: mod/admin.php:1119
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Обновление %s успешно применено."
+#: mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Новый контрольный список участников"
 
-#: mod/admin.php:1122
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."
+#: mod/newmember.php:12
+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 "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на  вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."
 
-#: mod/admin.php:1125
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Начало работы"
 
-#: mod/admin.php:1145
-msgid "No failed updates."
-msgstr "Неудавшихся обновлений нет."
+#: mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica тур"
 
-#: mod/admin.php:1146
-msgid "Check database structure"
-msgstr "Проверить структуру базы данных"
+#: mod/newmember.php:18
+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 "На вашей странице <em>Быстрый старт</em> - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."
 
-#: mod/admin.php:1151
-msgid "Failed Updates"
-msgstr "Ð\9dеÑ\83давÑ\88иеÑ\81Ñ\8f Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ\8f"
+#: mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ð\9fеÑ\80ейÑ\82и Ðº Ð²Ð°Ñ\88им Ð½Ð°Ñ\81Ñ\82Ñ\80ойкам"
 
-#: mod/admin.php:1152
+#: mod/newmember.php:26
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус."
+"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 "На вашей странице <em>Настройки</em> - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."
 
-#: mod/admin.php:1153
-msgid "Mark success (if update was manually applied)"
-msgstr "Отмечено успешно (если обновление было применено вручную)"
+#: mod/newmember.php:28
+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 "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
 
-#: mod/admin.php:1154
-msgid "Attempt to execute this update step automatically"
-msgstr "Ð\9fопÑ\8bÑ\82аÑ\82Ñ\8cÑ\81Ñ\8f Ð²Ñ\8bполниÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ñ\88аг Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ\8f Ð°Ð²Ñ\82омаÑ\82иÑ\87еÑ\81ки"
+#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:700
+msgid "Upload Profile Photo"
+msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/admin.php:1188
-#, php-format
+#: mod/newmember.php:36
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr ""
+"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 "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."
 
-#: mod/admin.php:1191
-#, php-format
+#: mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Редактировать профиль"
+
+#: mod/newmember.php:38
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
-
-#: mod/admin.php:1235
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s пользователь заблокирован/разблокирован"
-msgstr[1] "%s пользователей заблокировано/разблокировано"
-msgstr[2] "%s пользователей заблокировано/разблокировано"
-msgstr[3] "%s пользователей заблокировано/разблокировано"
-
-#: mod/admin.php:1242
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s человек удален"
-msgstr[1] "%s чел. удалено"
-msgstr[2] "%s чел. удалено"
-msgstr[3] "%s чел. удалено"
+"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 "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."
 
-#: mod/admin.php:1289
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Пользователь '%s' удален"
+#: mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Ключевые слова профиля"
 
-#: mod/admin.php:1297
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Пользователь '%s' разблокирован"
+#: mod/newmember.php:40
+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 "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."
 
-#: mod/admin.php:1297
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Пользователь '%s' блокирован"
+#: mod/newmember.php:44
+msgid "Connecting"
+msgstr "Подключение"
 
-#: mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1431 mod/admin.php:1447
-#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
-msgid "Name"
-msgstr "Имя"
+#: mod/newmember.php:51
+msgid "Importing Emails"
+msgstr "Импортирование Email-ов"
 
-#: mod/admin.php:1405 mod/admin.php:1431
-msgid "Register date"
-msgstr "Дата регистрации"
+#: mod/newmember.php:51
+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 "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"
 
-#: mod/admin.php:1405 mod/admin.php:1431
-msgid "Last login"
-msgstr "Ð\9fоÑ\81ледний Ð²Ñ\85од"
+#: mod/newmember.php:53
+msgid "Go to Your Contacts Page"
+msgstr "Ð\9fеÑ\80ейÑ\82и Ð½Ð° Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\83 Ð²Ð°Ñ\88иÑ\85 ÐºÐ¾Ð½Ñ\82акÑ\82ов"
 
-#: mod/admin.php:1405 mod/admin.php:1431
-msgid "Last item"
-msgstr "Последний пункт"
+#: mod/newmember.php:53
+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 "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог <em>Добавить новый контакт</em>."
 
-#: mod/admin.php:1405 mod/settings.php:43
-msgid "Account"
-msgstr "Ð\90ккаÑ\83нÑ\82"
+#: mod/newmember.php:55
+msgid "Go to Your Site's Directory"
+msgstr "Ð\9fеÑ\80ейÑ\82и Ð² ÐºÐ°Ñ\82алог Ð²Ð°Ñ\88его Ñ\81айÑ\82а"
 
-#: mod/admin.php:1414
-msgid "Add User"
-msgstr "Добавить пользователя"
+#: mod/newmember.php:55
+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 "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."
 
-#: mod/admin.php:1415
-msgid "select all"
-msgstr "вÑ\8bбÑ\80аÑ\82Ñ\8c Ð²Ñ\81е"
+#: mod/newmember.php:57
+msgid "Finding New People"
+msgstr "Ð\9fоиÑ\81к Ð»Ñ\8eдей"
 
-#: mod/admin.php:1416
-msgid "User registrations waiting for confirm"
-msgstr "Регистрации пользователей, ожидающие подтверждения"
+#: mod/newmember.php:57
+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 "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем  искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."
 
-#: mod/admin.php:1417
-msgid "User waiting for permanent deletion"
-msgstr "Ð\9fолÑ\8cзоваÑ\82елÑ\8c Ð¾Ð¶Ð¸Ð´Ð°ÐµÑ\82 Ð¾ÐºÐ¾Ð½Ñ\87аÑ\82елÑ\8cного Ñ\83далениÑ\8f"
+#: mod/newmember.php:65
+msgid "Group Your Contacts"
+msgstr "Ð\93Ñ\80Ñ\83ппа \"ваÑ\88и ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b\""
 
-#: mod/admin.php:1418
-msgid "Request date"
-msgstr "Запрос даты"
+#: mod/newmember.php:65
+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 "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."
 
-#: mod/admin.php:1419
-msgid "No registrations."
-msgstr "Ð\9dеÑ\82 Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ий."
+#: mod/newmember.php:68
+msgid "Why Aren't My Posts Public?"
+msgstr "Ð\9fоÑ\87емÑ\83 Ð¼Ð¾Ð¸ Ð¿Ð¾Ñ\81Ñ\82Ñ\8b Ð½Ðµ Ð¿Ñ\83блиÑ\87нÑ\8bе?"
 
-#: mod/admin.php:1420
-msgid "Note from the user"
-msgstr "Сообщение от пользователя"
+#: mod/newmember.php:68
+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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."
 
-#: mod/admin.php:1421 mod/notifications.php:176 mod/notifications.php:255
-msgid "Approve"
-msgstr "Ð\9eдобÑ\80иÑ\82ь"
+#: mod/newmember.php:73
+msgid "Getting Help"
+msgstr "Ð\9fолÑ\83Ñ\87иÑ\82Ñ\8c Ð¿Ð¾Ð¼Ð¾Ñ\89ь"
 
-#: mod/admin.php:1422
-msgid "Deny"
-msgstr "Ð\9eÑ\82клониÑ\82Ñ\8c"
+#: mod/newmember.php:77
+msgid "Go to the Help Section"
+msgstr "Ð\9fеÑ\80ейÑ\82и Ð² Ñ\80аздел Ñ\81пÑ\80авки"
 
-#: mod/admin.php:1424 mod/contacts.php:613 mod/contacts.php:813
-#: mod/contacts.php:991
-msgid "Block"
-msgstr "Заблокировать"
+#: mod/newmember.php:77
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса."
 
-#: mod/admin.php:1425 mod/contacts.php:613 mod/contacts.php:813
-#: mod/contacts.php:991
-msgid "Unblock"
-msgstr "Разблокировать"
+#: mod/nogroup.php:65
+msgid "Contacts who are not members of a group"
+msgstr "Контакты, которые не являются членами группы"
 
-#: mod/admin.php:1426
-msgid "Site admin"
-msgstr "Ð\90дмин Ñ\81айÑ\82а"
+#: mod/notify.php:65
+msgid "No more system notifications."
+msgstr "СиÑ\81Ñ\82емнÑ\8bÑ\85 Ñ\83ведомлений Ð±Ð¾Ð»Ñ\8cÑ\88е Ð½ÐµÑ\82."
 
-#: mod/admin.php:1427
-msgid "Account expired"
-msgstr "Ð\90ккаÑ\83нÑ\82 Ð¿Ñ\80оÑ\81Ñ\80оÑ\87ен"
+#: mod/notify.php:69 mod/notifications.php:111
+msgid "System Notifications"
+msgstr "УведомлениÑ\8f Ñ\81иÑ\81Ñ\82емÑ\8b"
 
-#: mod/admin.php:1430
-msgid "New User"
-msgstr "Ð\9dовÑ\8bй Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8c"
+#: mod/oexchange.php:21
+msgid "Post successful."
+msgstr "УÑ\81пеÑ\88но Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¾."
 
-#: mod/admin.php:1431
-msgid "Deleted since"
-msgstr "УдалÑ\91н Ñ\81"
+#: mod/ostatus_subscribe.php:14
+msgid "Subscribing to OStatus contacts"
+msgstr "Ð\9fодпиÑ\81ка Ð½Ð° OStatus-конÑ\82акÑ\82Ñ\8b"
 
-#: mod/admin.php:1436
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
+#: mod/ostatus_subscribe.php:25
+msgid "No contact provided."
+msgstr "Не указан контакт."
 
-#: mod/admin.php:1437
-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 "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
+#: mod/ostatus_subscribe.php:31
+msgid "Couldn't fetch information for contact."
+msgstr "Невозможно получить информацию о контакте."
 
-#: mod/admin.php:1447
-msgid "Name of the new user."
-msgstr "Ð\98мÑ\8f Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f."
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch friends for contact."
+msgstr "Ð\9dевозможно Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей Ð´Ð»Ñ\8f ÐºÐ¾Ð½Ñ\82акÑ\82а."
 
-#: mod/admin.php:1448
-msgid "Nickname"
-msgstr "Ð\9dик"
+#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
+msgid "Done"
+msgstr "Ð\93оÑ\82ово"
 
-#: mod/admin.php:1448
-msgid "Nickname of the new user."
-msgstr "Ник нового пользователя."
+#: mod/ostatus_subscribe.php:68
+msgid "success"
+msgstr "удачно"
 
-#: mod/admin.php:1449
-msgid "Email address of the new user."
-msgstr "Email адрес нового пользователя."
+#: mod/ostatus_subscribe.php:70
+msgid "failed"
+msgstr "неудача"
 
-#: mod/admin.php:1492
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Плагин %s отключен."
+#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
+msgid "Keep this window open until done."
+msgstr "Держать окно открытым до завершения."
 
-#: mod/admin.php:1496
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Плагин %s включен."
+#: mod/p.php:9
+msgid "Not Extended"
+msgstr "Не расширенный"
 
-#: mod/admin.php:1507 mod/admin.php:1759
-msgid "Disable"
-msgstr "Ð\9eÑ\82клÑ\8eÑ\87ить"
+#: mod/poke.php:196
+msgid "Poke/Prod"
+msgstr "Ð\9fоÑ\82Ñ\8bкаÑ\82Ñ\8c\9fоÑ\82олкать"
 
-#: mod/admin.php:1509 mod/admin.php:1761
-msgid "Enable"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c"
+#: mod/poke.php:197
+msgid "poke, prod or do other things to somebody"
+msgstr "Ð\9fоÑ\82Ñ\8bкаÑ\82Ñ\8c, Ð¿Ð¾Ñ\82олкаÑ\82Ñ\8c Ð¸Ð»Ð¸ Ñ\81делаÑ\82Ñ\8c Ñ\87Ñ\82о-Ñ\82о ÐµÑ\89е Ñ\81 ÐºÐµÐ¼-Ñ\82о"
 
-#: mod/admin.php:1532 mod/admin.php:1808
-msgid "Toggle"
-msgstr "Ð\9fеÑ\80еклÑ\8eÑ\87иÑ\82ь"
+#: mod/poke.php:198
+msgid "Recipient"
+msgstr "Ð\9fолÑ\83Ñ\87аÑ\82ель"
 
-#: mod/admin.php:1540 mod/admin.php:1817
-msgid "Author: "
-msgstr "Ð\90вÑ\82оÑ\80:"
+#: mod/poke.php:199
+msgid "Choose what you wish to do to recipient"
+msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f Ð´Ð»Ñ\8f Ð¿Ð¾Ð»Ñ\83Ñ\87аÑ\82елÑ\8f"
 
-#: mod/admin.php:1541 mod/admin.php:1818
-msgid "Maintainer: "
-msgstr "Ð\9fÑ\80огÑ\80амма Ð¾Ð±Ñ\81лÑ\83живаниÑ\8f"
+#: mod/poke.php:202
+msgid "Make this post private"
+msgstr "СделаÑ\82Ñ\8c Ñ\8dÑ\82Ñ\83 Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ð»Ð¸Ñ\87ной"
 
-#: mod/admin.php:1596
-msgid "Reload active plugins"
-msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82Ñ\8c Ð°ÐºÑ\82ивнÑ\8bе Ð¿Ð»Ð°Ð³Ð¸Ð½Ñ\8b"
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Ð\98зобÑ\80ажение Ð·Ð°Ð³Ñ\80Ñ\83жено, Ð½Ð¾ Ð¾Ð±Ñ\80езка Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f Ð½Ðµ Ñ\83далаÑ\81Ñ\8c."
 
-#: mod/admin.php:1601
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:323
 #, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Уменьшение размера изображения [%s] не удалось."
+
+#: mod/profile_photo.php:127
 msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."
 
-#: mod/admin.php:1720
-msgid "No themes found."
-msgstr "ТемÑ\8b Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ñ\8b."
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ð¾Ð±Ñ\80абоÑ\82аÑ\82Ñ\8c Ð¸Ð·Ð¾Ð±Ñ\80ажение"
 
-#: mod/admin.php:1799
-msgid "Screenshot"
-msgstr "Скриншот"
+#: mod/profile_photo.php:156 mod/photos.php:813 mod/wall_upload.php:181
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Изображение превышает лимит размера в %s"
 
-#: mod/admin.php:1859
-msgid "Reload active themes"
-msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82Ñ\8c Ð°ÐºÑ\82ивнÑ\8bе Ñ\82емÑ\8b"
+#: mod/profile_photo.php:165 mod/photos.php:854 mod/wall_upload.php:218
+msgid "Unable to process image."
+msgstr "Ð\9dевозможно Ð¾Ð±Ñ\80абоÑ\82аÑ\82Ñ\8c Ñ\84оÑ\82о."
 
-#: mod/admin.php:1864
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "Не найдено тем. Они должны быть расположены в %1$s"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Загрузить файл:"
 
-#: mod/admin.php:1865
-msgid "[Experimental]"
-msgstr "[экспериментально]"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Выбрать этот профиль:"
 
-#: mod/admin.php:1866
-msgid "[Unsupported]"
-msgstr "[Неподдерживаемое]"
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Загрузить"
 
-#: mod/admin.php:1890
-msgid "Log settings updated."
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð¶Ñ\83Ñ\80нала Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ñ\8b."
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "или"
 
-#: mod/admin.php:1922
-msgid "PHP log currently enabled."
-msgstr "Ð\9bог PHP Ð²ÐºÐ»Ñ\8eÑ\87ен."
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "пÑ\80опÑ\83Ñ\81Ñ\82иÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ñ\88аг"
 
-#: mod/admin.php:1924
-msgid "PHP log currently disabled."
-msgstr "Ð\9bог PHP Ð²Ñ\8bклÑ\8eÑ\87ен."
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "вÑ\8bбеÑ\80иÑ\82е Ñ\84оÑ\82о Ð¸Ð· Ð²Ð°Ñ\88иÑ\85 Ñ\84оÑ\82оалÑ\8cбомов"
 
-#: mod/admin.php:1933
-msgid "Clear"
-msgstr "Очистить"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Обрезать изображение"
 
-#: mod/admin.php:1938
-msgid "Enable Debugging"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð¾Ñ\82ладкÑ\83"
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð½Ð°Ñ\81Ñ\82Ñ\80ойÑ\82е Ð¾Ð±Ñ\80езкÑ\83 Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f Ð´Ð»Ñ\8f Ð¾Ð¿Ñ\82ималÑ\8cного Ð¿Ñ\80оÑ\81моÑ\82Ñ\80а."
 
-#: mod/admin.php:1939
-msgid "Log file"
-msgstr "Ð\9bог-Ñ\84айл"
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "РедакÑ\82иÑ\80ование Ð²Ñ\8bполнено"
 
-#: mod/admin.php:1939
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "Изображение загружено успешно."
 
-#: mod/admin.php:1940
-msgid "Log level"
-msgstr "УÑ\80овенÑ\8c Ð»Ð¾Ð³Ð°"
+#: mod/profile_photo.php:315 mod/photos.php:883 mod/wall_upload.php:257
+msgid "Image upload failed."
+msgstr "Ð\97агÑ\80Ñ\83зка Ñ\84оÑ\82о Ð½ÐµÑ\83даÑ\87наÑ\8f."
 
-#: mod/admin.php:1943
-msgid "PHP logging"
-msgstr "PHP логирование"
+#: mod/profperm.php:20 mod/group.php:76 index.php:406
+msgid "Permission denied"
+msgstr "Доступ запрещен"
 
-#: mod/admin.php:1944
-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/profperm.php:26 mod/profperm.php:57
+msgid "Invalid profile identifier."
+msgstr "Недопустимый идентификатор профиля."
 
-#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782
-msgid "Off"
-msgstr "Ð\92Ñ\8bкл."
+#: mod/profperm.php:103
+msgid "Profile Visibility Editor"
+msgstr "РедакÑ\82оÑ\80 Ð²Ð¸Ð´Ð¸Ð¼Ð¾Ñ\81Ñ\82и Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/admin.php:2074 mod/admin.php:2075 mod/settings.php:782
-msgid "On"
-msgstr "Ð\92кл."
+#: mod/profperm.php:107 mod/group.php:262
+msgid "Click on a contact to add or remove."
+msgstr "Ð\9dажмиÑ\82е Ð½Ð° ÐºÐ¾Ð½Ñ\82акÑ\82, Ñ\87Ñ\82обÑ\8b Ð´Ð¾Ð±Ð°Ð²Ð¸Ñ\82Ñ\8c Ð¸Ð»Ð¸ Ñ\83далиÑ\82Ñ\8c."
 
-#: mod/admin.php:2075
-#, php-format
-msgid "Lock feature %s"
-msgstr "Заблокировать %s"
+#: mod/profperm.php:116
+msgid "Visible To"
+msgstr "Видимый для"
 
-#: mod/admin.php:2083
-msgid "Manage Additional Features"
-msgstr "УпÑ\80авление Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ\82елÑ\8cнÑ\8bми Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82Ñ\8fми"
+#: mod/profperm.php:132
+msgid "All Contacts (with secure profile access)"
+msgstr "Ð\92Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b (Ñ\81 Ð±ÐµÐ·Ð¾Ð¿Ð°Ñ\81нÑ\8bм Ð´Ð¾Ñ\81Ñ\82Ñ\83пом Ðº Ð¿Ñ\80оÑ\84илÑ\8e)"
 
-#: mod/allfriends.php:46
-msgid "No friends to display."
-msgstr "Ð\9dеÑ\82 Ð´Ñ\80Ñ\83зей."
+#: mod/regmod.php:58
+msgid "Account approved."
+msgstr "Ð\90ккаÑ\83нÑ\82 Ñ\83Ñ\82веÑ\80жден."
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Разрешить связь с приложением"
+#: mod/regmod.php:95
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Регистрация отменена для %s"
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Ð\92еÑ\80ниÑ\82еÑ\81Ñ\8c Ð² Ð²Ð°Ñ\88е Ð¿Ñ\80иложение Ð¸ Ð·Ð°Ð´Ð°Ð¹Ñ\82е Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð´:"
+#: mod/regmod.php:107
+msgid "Please login."
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ð¾Ð¹Ð´Ð¸Ñ\82е Ñ\81 Ð¿Ð°Ñ\80олем."
 
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ð¾Ð¹Ð´Ð¸Ñ\82е Ð´Ð»Ñ\8f Ð¿Ñ\80одолжениÑ\8f."
+#: mod/removeme.php:52 mod/removeme.php:55
+msgid "Remove My Account"
+msgstr "УдалиÑ\82Ñ\8c Ð¼Ð¾Ð¹ Ð°ÐºÐºÐ°Ñ\83нÑ\82"
 
-#: mod/api.php:104
+#: mod/removeme.php:53
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?"
-
-#: mod/api.php:106 mod/dfrn_request.php:875 mod/follow.php:113
-#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:669
-#: mod/register.php:246 mod/settings.php:1171 mod/settings.php:1177
-#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
-#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
-#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
-#: mod/settings.php:1237 mod/settings.php:1238
-msgid "No"
-msgstr "Нет"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Приложения"
+#: mod/removeme.php:54
+msgid "Please enter your password for verification:"
+msgstr "Пожалуйста, введите свой пароль для проверки:"
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Ð\9dеÑ\82 Ñ\83Ñ\81Ñ\82ановленнÑ\8bÑ\85 Ð¿Ñ\80иложений."
+#: mod/repair_ostatus.php:14
+msgid "Resubscribing to OStatus contacts"
+msgstr "Ð\9fеÑ\80еподпиÑ\81аÑ\82Ñ\8cÑ\81Ñ\8f Ð½Ð° OStatus-конÑ\82акÑ\82Ñ\8b."
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Ð\9fÑ\83нкÑ\82 Ð½Ðµ Ð´Ð¾Ñ\81Ñ\82Ñ\83пен."
+#: mod/repair_ostatus.php:30
+msgid "Error"
+msgstr "Ð\9eÑ\88ибка"
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Пункт не был найден."
+#: mod/subthread.php:104
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s подписан %2$s's %3$s"
 
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Ð\9aод (bbcode):"
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ñ\8dÑ\82о Ð¿Ñ\80едложение?"
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Код (Diaspora) для конвертации в BBcode:"
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа."
 
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Ð\92веÑ\81Ñ\82и ÐºÐ¾Ð´:"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ð\9fÑ\80оигноÑ\80иÑ\80оваÑ\82Ñ\8c/СкÑ\80Ñ\8bÑ\82Ñ\8c"
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: mod/tagrm.php:43
+msgid "Tag removed"
+msgstr "Ключевое слово удалено"
 
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/tagrm.php:82
+msgid "Remove Item Tag"
+msgstr "Удалить ключевое слово"
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/tagrm.php:84
+msgid "Select a tag to remove: "
+msgstr "Выберите ключевое слово для удаления: "
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/uimport.php:51 mod/register.php:198
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/uimport.php:66 mod/register.php:295
+msgid "Import"
+msgstr "Импорт"
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/uimport.php:68
+msgid "Move account"
+msgstr "Удалить аккаунт"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/uimport.php:69
+msgid "You can import an account from another Friendica server."
+msgstr "Вы можете импортировать учетную запись с другого сервера Friendica."
 
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Ввод кода (формат Diaspora):"
+#: mod/uimport.php:70
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/uimport.php:71
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora"
 
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Ð\9fоÑ\81Ñ\82 Ð±Ñ\8bл Ñ\81оздан"
+#: mod/uimport.php:72
+msgid "Account file"
+msgstr "Файл Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
 
-#: mod/cal.php:143 mod/display.php:328 mod/profile.php:154
-msgid "Access to this profile has been restricted."
-msgstr "Доступ к этому профилю ограничен."
+#: mod/uimport.php:72
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""
+
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
+msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
+
+#: mod/viewcontacts.php:75
+msgid "No contacts."
+msgstr "Нет контактов."
+
+#: mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Доступ запрещен."
+
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:36 mod/wall_upload.php:52 mod/wall_upload.php:110
+#: mod/wall_upload.php:150 mod/wall_upload.php:153
+msgid "Invalid request."
+msgstr "Неверный запрос."
+
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP"
+
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr "Или вы пытались загрузить пустой файл?"
+
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Файл превышает лимит размера в %s"
+
+#: mod/wall_attach.php:158 mod/wall_attach.php:174
+msgid "File upload failed."
+msgstr "Загрузка файла не удалась."
+
+#: mod/wallmessage.php:42 mod/wallmessage.php:106
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."
+
+#: mod/wallmessage.php:50 mod/message.php:60
+msgid "No recipient selected."
+msgstr "Не выбран получатель."
+
+#: mod/wallmessage.php:53
+msgid "Unable to check your home location."
+msgstr "Невозможно проверить местоположение."
+
+#: mod/wallmessage.php:56 mod/message.php:67
+msgid "Message could not be sent."
+msgstr "Сообщение не может быть отправлено."
+
+#: mod/wallmessage.php:59 mod/message.php:70
+msgid "Message collection failure."
+msgstr "Неудача коллекции сообщения."
+
+#: mod/wallmessage.php:62 mod/message.php:73
+msgid "Message sent."
+msgstr "Сообщение отправлено."
+
+#: mod/wallmessage.php:80 mod/wallmessage.php:89
+msgid "No recipient."
+msgstr "Без адресата."
+
+#: mod/wallmessage.php:126 mod/message.php:322
+msgid "Send Private Message"
+msgstr "Отправить личное сообщение"
+
+#: mod/wallmessage.php:127
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей."
+
+#: mod/wallmessage.php:128 mod/message.php:323 mod/message.php:510
+msgid "To:"
+msgstr "Кому:"
+
+#: mod/wallmessage.php:129 mod/message.php:328 mod/message.php:512
+msgid "Subject:"
+msgstr "Тема:"
+
+#: mod/babel.php:16
+msgid "Source (bbcode) text:"
+msgstr "Код (bbcode):"
+
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Код (Diaspora) для конвертации в BBcode:"
+
+#: mod/babel.php:31
+msgid "Source input: "
+msgstr "Ввести код:"
+
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
+
+#: mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
+
+#: mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
+
+#: mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
+
+#: mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
+
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: mod/cal.php:271 mod/events.php:387
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
+
+#: mod/babel.php:65
+msgid "Source input (Diaspora format): "
+msgstr "Ввод кода (формат Diaspora):"
+
+#: mod/babel.php:69
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
+
+#: mod/cal.php:271 mod/events.php:375
 msgid "View"
 msgstr "Смотреть"
 
-#: mod/cal.php:272 mod/events.php:389
+#: mod/cal.php:272 mod/events.php:377
 msgid "Previous"
 msgstr "Назад"
 
-#: mod/cal.php:273 mod/events.php:390 mod/install.php:235
+#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
 msgid "Next"
 msgstr "Далее"
 
-#: mod/cal.php:282 mod/events.php:399
+#: mod/cal.php:282 mod/events.php:387
 msgid "list"
 msgstr "список"
 
@@ -4689,4026 +4881,3882 @@ msgstr "Нет данных для экспорта"
 msgid "calendar"
 msgstr "календарь"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Нет общих контактов."
-
-#: mod/common.php:141 mod/contacts.php:871
-msgid "Common Friends"
-msgstr "Общие друзья"
-
-#: mod/community.php:22 mod/dfrn_request.php:799 mod/directory.php:37
-#: mod/display.php:200 mod/photos.php:964 mod/search.php:93 mod/search.php:99
-#: mod/videos.php:198 mod/viewcontacts.php:36
-msgid "Public access denied."
-msgstr "Свободный доступ закрыт."
-
-#: mod/community.php:27
+#: mod/community.php:23
 msgid "Not available."
 msgstr "Недоступно."
 
-#: mod/community.php:54 mod/search.php:224
+#: mod/community.php:50 mod/search.php:219
 msgid "No results."
 msgstr "Нет результатов."
 
-#: mod/contacts.php:134
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: mod/contacts.php:169 mod/contacts.php:378
-msgid "Could not access contact record."
-msgstr "Не удалось получить доступ к записи контакта."
+#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
+#: mod/profiles.php:182 mod/profiles.php:619
+msgid "Profile not found."
+msgstr "Профиль не найден."
 
-#: mod/contacts.php:183
-msgid "Could not locate selected profile."
-msgstr "Не удалось найти выбранный профиль."
+#: mod/dfrn_confirm.php:127
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."
 
-#: mod/contacts.php:216
-msgid "Contact updated."
-msgstr "Ð\9aонÑ\82акÑ\82 Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½."
+#: mod/dfrn_confirm.php:244
+msgid "Response from remote site was not understood."
+msgstr "Ð\9eÑ\82веÑ\82 Ð¾Ñ\82 Ñ\83даленного Ñ\81айÑ\82а Ð½Ðµ Ð±Ñ\8bл Ð¿Ð¾Ð½Ñ\8fÑ\82."
 
-#: mod/contacts.php:218 mod/dfrn_request.php:588
-msgid "Failed to update contact record."
-msgstr "Не удалось обновить запись контакта."
+#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
+msgid "Unexpected response from remote site: "
+msgstr "Неожиданный ответ от удаленного сайта: "
 
-#: mod/contacts.php:399
-msgid "Contact has been blocked"
-msgstr "Ð\9aонÑ\82акÑ\82 Ð·Ð°Ð±Ð»Ð¾ÐºÐ¸Ñ\80ован"
+#: mod/dfrn_confirm.php:267
+msgid "Confirmation completed successfully."
+msgstr "Ð\9fодÑ\82веÑ\80ждение Ñ\83Ñ\81пеÑ\88но Ð·Ð°Ð²ÐµÑ\80Ñ\88ено."
 
-#: mod/contacts.php:399
-msgid "Contact has been unblocked"
-msgstr "Ð\9aонÑ\82акÑ\82 Ñ\80азблокиÑ\80ован"
+#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
+msgid "Remote site reported: "
+msgstr "УдаленнÑ\8bй Ñ\81айÑ\82 Ñ\81ообÑ\89ил: "
 
-#: mod/contacts.php:410
-msgid "Contact has been ignored"
-msgstr "Ð\9aонÑ\82акÑ\82 Ð¿Ñ\80оигноÑ\80иÑ\80ован"
+#: mod/dfrn_confirm.php:281
+msgid "Temporary failure. Please wait and try again."
+msgstr "Ð\92Ñ\80еменнÑ\8bе Ð½ÐµÑ\83даÑ\87и. Ð\9fодождиÑ\82е Ð¸ Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
 
-#: mod/contacts.php:410
-msgid "Contact has been unignored"
-msgstr "У ÐºÐ¾Ð½Ñ\82акÑ\82а Ð¾Ñ\82менено Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80ование"
+#: mod/dfrn_confirm.php:288
+msgid "Introduction failed or was revoked."
+msgstr "Ð\97апÑ\80оÑ\81 Ð¾Ñ\88ибоÑ\87ен Ð¸Ð»Ð¸ Ð±Ñ\8bл Ð¾Ñ\82озван."
 
-#: mod/contacts.php:422
-msgid "Contact has been archived"
-msgstr "Ð\9aонÑ\82акÑ\82 Ð·Ð°Ð°Ñ\80Ñ\85ивиÑ\80ован"
+#: mod/dfrn_confirm.php:418
+msgid "Unable to set contact photo."
+msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c Ñ\84оÑ\82о ÐºÐ¾Ð½Ñ\82акÑ\82а."
 
-#: mod/contacts.php:422
-msgid "Contact has been unarchived"
-msgstr "Контакт разархивирован"
+#: mod/dfrn_confirm.php:559
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Не найдено записи пользователя для '%s' "
 
-#: mod/contacts.php:447
-msgid "Drop contact"
-msgstr "УдалиÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
+#: mod/dfrn_confirm.php:569
+msgid "Our site encryption key is apparently messed up."
+msgstr "Ð\9dаÑ\88 ÐºÐ»Ñ\8eÑ\87 Ñ\88иÑ\84Ñ\80ованиÑ\8f Ñ\81айÑ\82а, Ð¿Ð¾-видимомÑ\83, Ð¿ÐµÑ\80епÑ\83Ñ\82алÑ\81Ñ\8f."
 
-#: mod/contacts.php:450 mod/contacts.php:809
-msgid "Do you really want to delete this contact?"
-msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82?"
+#: mod/dfrn_confirm.php:580
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Ð\91Ñ\8bл Ð¿Ñ\80едоÑ\81Ñ\82авлен Ð¿Ñ\83Ñ\81Ñ\82ой URL Ñ\81айÑ\82а â\80\8bâ\80\8bили URL Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ñ\80аÑ\81Ñ\88иÑ\84Ñ\80ован Ð½Ð°Ð¼Ð¸."
 
-#: mod/contacts.php:469
-msgid "Contact has been removed."
-msgstr "Ð\9aонÑ\82акÑ\82 Ñ\83дален."
+#: mod/dfrn_confirm.php:602
+msgid "Contact record was not found for you on our site."
+msgstr "Ð\97апиÑ\81Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82а Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ð° Ð´Ð»Ñ\8f Ð²Ð°Ñ\81 Ð½Ð° Ð½Ð°Ñ\88ем Ñ\81айÑ\82е."
 
-#: mod/contacts.php:506
+#: mod/dfrn_confirm.php:616
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "У Ð\92аÑ\81 Ð²Ð·Ð°Ð¸Ð¼Ð½Ð°Ñ\8f Ð´Ñ\80Ñ\83жба Ñ\81 %s"
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Ð\9fÑ\83блиÑ\87нÑ\8bй ÐºÐ»Ñ\8eÑ\87 Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пен Ð² Ð·Ð°Ð¿Ð¸Ñ\81и Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е Ð¿Ð¾ Ñ\81Ñ\81Ñ\8bлке %s"
 
-#: mod/contacts.php:510
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Вы делитесь с %s"
+#: mod/dfrn_confirm.php:636
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
 
-#: mod/contacts.php:515
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s делитса с Вами"
+#: mod/dfrn_confirm.php:647
+msgid "Unable to set your contact credentials on our system."
+msgstr "Не удалось установить ваши учетные данные контакта в нашей системе."
 
-#: mod/contacts.php:535
-msgid "Private communications are not available for this contact."
-msgstr "Ð\9bиÑ\87нÑ\8bе ÐºÐ¾Ð¼Ð¼Ñ\83никаÑ\86ии Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пнÑ\8b Ð´Ð»Ñ\8f Ñ\8dÑ\82ого ÐºÐ¾Ð½Ñ\82акÑ\82а."
+#: mod/dfrn_confirm.php:709
+msgid "Unable to update your contact profile details on our system"
+msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ\82Ñ\8c Ð²Ð°Ñ\88и ÐºÐ¾Ð½Ñ\82акÑ\82нÑ\8bе Ð´ÐµÑ\82али Ð¿Ñ\80оÑ\84илÑ\8f Ð² Ð½Ð°Ñ\88ей Ñ\81иÑ\81Ñ\82еме"
 
-#: mod/contacts.php:542
-msgid "(Update was successful)"
-msgstr "(Обновление было успешно)"
+#: mod/dfrn_confirm.php:781
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s присоединился %2$s"
 
-#: mod/contacts.php:542
-msgid "(Update was not successful)"
-msgstr "(Обновление не удалось)"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
+msgstr "Этот запрос был уже принят."
 
-#: mod/contacts.php:544 mod/contacts.php:972
-msgid "Suggest friends"
-msgstr "Ð\9fÑ\80едложиÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Ð\9cеÑ\81Ñ\82оположение Ð¿Ñ\80оÑ\84илÑ\8f Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ð½ÐµÐ´Ð¾Ð¿Ñ\83Ñ\81Ñ\82имÑ\8bм Ð¸Ð»Ð¸ Ð½Ðµ Ñ\81одеÑ\80жиÑ\82 Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ð¿Ñ\80оÑ\84иле."
 
-#: mod/contacts.php:548
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
+
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
+msgid "Warning: profile location has no profile photo."
+msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
+
+#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
 #, php-format
-msgid "Network type: %s"
-msgstr "Сеть: %s"
+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 требуемый параметр не был найден в заданном месте"
+msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
+msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
+msgstr[3] "%d требуемых параметров не были найдены в заданном месте"
 
-#: mod/contacts.php:561
-msgid "Communications lost with this contact!"
-msgstr "СвÑ\8fзÑ\8c Ñ\81 ÐºÐ¾Ð½Ñ\82акÑ\82ом Ñ\83Ñ\82еÑ\80Ñ\8fна!"
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
+msgstr "Ð\97апÑ\80оÑ\81 Ñ\81оздан."
 
-#: mod/contacts.php:564
-msgid "Fetch further information for feeds"
-msgstr "Ð\9fолÑ\83Ñ\87иÑ\82Ñ\8c Ð¿Ð¾Ð´Ñ\80обнÑ\83Ñ\8e Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ñ\84идаÑ\85"
+#: mod/dfrn_request.php:225
+msgid "Unrecoverable protocol error."
+msgstr "Ð\9dеиÑ\81пÑ\80авимаÑ\8f Ð¾Ñ\88ибка Ð¿Ñ\80оÑ\82окола."
 
-#: mod/contacts.php:565
-msgid "Fetch information"
-msgstr "Получить информацию"
+#: mod/dfrn_request.php:253
+msgid "Profile unavailable."
+msgstr "Профиль недоступен."
 
-#: mod/contacts.php:565
-msgid "Fetch information and keywords"
-msgstr "Получить информацию и ключевые слова"
+#: mod/dfrn_request.php:280
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "К %s пришло сегодня слишком много запросов на подключение."
 
-#: mod/contacts.php:583
-msgid "Contact"
-msgstr "Ð\9aонÑ\82акÑ\82"
+#: mod/dfrn_request.php:281
+msgid "Spam protection measures have been invoked."
+msgstr "Ð\91Ñ\8bли Ð¿Ñ\80имененÑ\8b Ð¼ÐµÑ\80Ñ\8b Ð·Ð°Ñ\89иÑ\82Ñ\8b Ð¾Ñ\82 Ñ\81пама."
 
-#: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
-#: mod/events.php:513 mod/fsuggest.php:108 mod/install.php:276
-#: mod/install.php:316 mod/invite.php:142 mod/localtime.php:45
-#: mod/manage.php:145 mod/message.php:338 mod/message.php:521 mod/mood.php:138
-#: mod/photos.php:1124 mod/photos.php:1246 mod/photos.php:1562
-#: mod/photos.php:1612 mod/photos.php:1660 mod/photos.php:1746
-#: mod/poke.php:203 mod/profiles.php:680 object/Item.php:705
-#: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
-#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
-msgid "Submit"
-msgstr "Добавить"
+#: mod/dfrn_request.php:282
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
 
-#: mod/contacts.php:586
-msgid "Profile Visibility"
-msgstr "Ð\92идимоÑ\81Ñ\82Ñ\8c Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/dfrn_request.php:344
+msgid "Invalid locator"
+msgstr "Ð\9dедопÑ\83Ñ\81Ñ\82имÑ\8bй Ð»Ð¾ÐºÐ°Ñ\82оÑ\80"
 
-#: mod/contacts.php:587
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
+#: mod/dfrn_request.php:353
+msgid "Invalid email address."
+msgstr "Неверный адрес электронной почты."
 
-#: mod/contacts.php:588
-msgid "Contact Information / Notes"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е / Ð\97амеÑ\82ки"
+#: mod/dfrn_request.php:378
+msgid "This account has not been configured for email. Request failed."
+msgstr "ЭÑ\82оÑ\82 Ð°ÐºÐºÐ°Ñ\83нÑ\82 Ð½Ðµ Ð½Ð°Ñ\81Ñ\82Ñ\80оен Ð´Ð»Ñ\8f Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b. Ð\97апÑ\80оÑ\81 Ð½Ðµ Ñ\83далÑ\81Ñ\8f."
 
-#: mod/contacts.php:589
-msgid "Edit contact notes"
-msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð·Ð°Ð¼ÐµÑ\82ки ÐºÐ¾Ð½Ñ\82акÑ\82а"
+#: mod/dfrn_request.php:481
+msgid "You have already introduced yourself here."
+msgstr "Ð\92Ñ\8b Ñ\83же Ð²Ð²ÐµÐ»Ð¸ Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ñ\81ебе Ð·Ð´ÐµÑ\81Ñ\8c."
 
-#: mod/contacts.php:594 mod/contacts.php:938 mod/nogroup.php:43
-#: mod/viewcontacts.php:102
+#: mod/dfrn_request.php:485
 #, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Посетить профиль %s [%s]"
-
-#: mod/contacts.php:595
-msgid "Block/Unblock contact"
-msgstr "Блокировать / Разблокировать контакт"
+msgid "Apparently you are already friends with %s."
+msgstr "Похоже, что вы уже друзья с %s."
 
-#: mod/contacts.php:596
-msgid "Ignore contact"
-msgstr "Ð\98гноÑ\80иÑ\80оваÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82"
+#: mod/dfrn_request.php:506
+msgid "Invalid profile URL."
+msgstr "Ð\9dевеÑ\80нÑ\8bй URL Ð¿Ñ\80оÑ\84илÑ\8f."
 
-#: mod/contacts.php:597
-msgid "Repair URL settings"
-msgstr "Ð\92оÑ\81Ñ\81Ñ\82ановиÑ\82Ñ\8c Ð½Ð°Ñ\81Ñ\82Ñ\80ойки URL"
+#: mod/dfrn_request.php:614
+msgid "Your introduction has been sent."
+msgstr "Ð\92аÑ\88 Ð·Ð°Ð¿Ñ\80оÑ\81 Ð¾Ñ\82пÑ\80авлен."
 
-#: mod/contacts.php:598
-msgid "View conversations"
-msgstr "Просмотр бесед"
+#: mod/dfrn_request.php:656
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе."
 
-#: mod/contacts.php:604
-msgid "Last update:"
-msgstr "Ð\9fоÑ\81леднее Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ðµ: "
+#: mod/dfrn_request.php:677
+msgid "Please login to confirm introduction."
+msgstr "Ð\94лÑ\8f Ð¿Ð¾Ð´Ñ\82веÑ\80ждениÑ\8f Ð·Ð°Ð¿Ñ\80оÑ\81а Ð²Ð¾Ð¹Ð´Ð¸Ñ\82е Ð¿Ð¾Ð¶Ð°Ð»Ñ\83йÑ\81Ñ\82а Ñ\81 Ð¿Ð°Ñ\80олем."
 
-#: mod/contacts.php:606
-msgid "Update public posts"
-msgstr "Обновить публичные сообщения"
+#: mod/dfrn_request.php:687
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
 
-#: mod/contacts.php:608 mod/contacts.php:982
-msgid "Update now"
-msgstr "Ð\9eбновиÑ\82Ñ\8c Ñ\81ейÑ\87аÑ\81"
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
+msgid "Confirm"
+msgstr "Ð\9fодÑ\82веÑ\80диÑ\82Ñ\8c"
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-msgid "Unignore"
-msgstr "Ð\9dе Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80оваÑ\82Ñ\8c"
+#: mod/dfrn_request.php:713
+msgid "Hide this contact"
+msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82"
 
-#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:257
-msgid "Ignore"
-msgstr "Игнорировать"
+#: mod/dfrn_request.php:716
+#, php-format
+msgid "Welcome home %s."
+msgstr "Добро пожаловать домой, %s!"
 
-#: mod/contacts.php:618
-msgid "Currently blocked"
-msgstr "В настоящее время заблокирован"
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
 
-#: mod/contacts.php:619
-msgid "Currently ignored"
-msgstr "В настоящее время игнорируется"
+#: mod/dfrn_request.php:848
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:"
 
-#: mod/contacts.php:620
-msgid "Currently archived"
-msgstr "В данный момент архивирован"
+#: mod/dfrn_request.php:872
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"%s/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>."
 
-#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
-msgid "Hide this contact from others"
-msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82 Ð¾Ñ\82 Ð´Ñ\80Ñ\83гиÑ\85"
+#: mod/dfrn_request.php:877
+msgid "Friend/Connection Request"
+msgstr "Ð\97апÑ\80оÑ\81 Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f / Ð½Ð° Ð¿Ð¾Ð´ÐºÐ»Ñ\8eÑ\87ение"
 
-#: mod/contacts.php:621
+#: mod/dfrn_request.php:878
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Ответы/лайки ваших публичных сообщений <strong>будут</strong> видимы."
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: mod/contacts.php:622
-msgid "Notification for new posts"
-msgstr "Уведомление Ð¾ Ð½Ð¾Ð²Ñ\8bÑ\85 Ð¿Ð¾Ñ\81Ñ\82аÑ\85"
+#: mod/dfrn_request.php:879 mod/follow.php:112
+msgid "Please answer the following:"
+msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¾Ñ\82веÑ\82Ñ\8cÑ\82е Ñ\81ледÑ\83Ñ\8eÑ\89ее:"
 
-#: mod/contacts.php:622
-msgid "Send a notification of every new post of this contact"
-msgstr "Отправлять уведомление о каждом новом посте контакта"
+#: mod/dfrn_request.php:880 mod/follow.php:113
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s знает вас?"
 
-#: mod/contacts.php:625
-msgid "Blacklisted keywords"
-msgstr "ЧеÑ\80нÑ\8bй Ñ\81пиÑ\81ок ÐºÐ»Ñ\8eÑ\87евÑ\8bÑ\85 Ñ\81лов"
+#: mod/dfrn_request.php:884 mod/follow.php:114
+msgid "Add a personal note:"
+msgstr "Ð\94обавиÑ\82Ñ\8c Ð»Ð¸Ñ\87нÑ\83Ñ\8e Ð·Ð°Ð¼ÐµÑ\82кÑ\83:"
 
-#: mod/contacts.php:625
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet / Federated Social Web"
+
+#: mod/dfrn_request.php:889
+#, php-format
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите  %s в строке поиска Diaspora"
 
-#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:249
-msgid "Profile URL"
-msgstr "URL профиля"
+#: mod/dfrn_request.php:890 mod/follow.php:120
+msgid "Your Identity Address:"
+msgstr "Ваш идентификационный адрес:"
 
-#: mod/contacts.php:643
-msgid "Actions"
-msgstr "Ð\94ейÑ\81Ñ\82виÑ\8f"
+#: mod/dfrn_request.php:893 mod/follow.php:19
+msgid "Submit Request"
+msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð·Ð°Ð¿Ñ\80оÑ\81"
 
-#: mod/contacts.php:646
-msgid "Contact Settings"
-msgstr "Настройки контакта"
+#: mod/dirfind.php:37
+#, php-format
+msgid "People Search - %s"
+msgstr "Поиск по людям - %s"
 
-#: mod/contacts.php:692
-msgid "Suggestions"
-msgstr "Предложения"
+#: mod/dirfind.php:48
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Поиск по форумам - %s"
 
-#: mod/contacts.php:695
-msgid "Suggest potential friends"
-msgstr "Ð\9fÑ\80едложиÑ\82Ñ\8c Ð¿Ð¾Ñ\82енÑ\86иалÑ\8cного Ð·Ð½Ð°ÐºÐ¾Ð¼Ð¾Ð³Ð¾"
+#: mod/events.php:93 mod/events.php:95
+msgid "Event can not end before it has started."
+msgstr "ЭвенÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð·Ð°ÐºÐ¾Ð½Ñ\87иÑ\82Ñ\81Ñ\8f Ð´Ð¾ Ñ\81Ñ\82аÑ\80Ñ\82а."
 
-#: mod/contacts.php:700 mod/group.php:202
-msgid "All Contacts"
-msgstr "Ð\92Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:102 mod/events.php:104
+msgid "Event title and start time are required."
+msgstr "Ð\9dазвание Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f Ð¸ Ð²Ñ\80емÑ\8f Ð½Ð°Ñ\87ала Ð¾Ð±Ñ\8fзаÑ\82елÑ\8cнÑ\8b Ð´Ð»Ñ\8f Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ\8f."
 
-#: mod/contacts.php:703
-msgid "Show all contacts"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:376
+msgid "Create New Event"
+msgstr "СоздаÑ\82Ñ\8c Ð½Ð¾Ð²Ð¾Ðµ Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82ие"
 
-#: mod/contacts.php:708
-msgid "Unblocked"
-msgstr "Ð\9dе Ð±Ð»Ð¾ÐºÐ¸Ñ\80ован"
+#: mod/events.php:481
+msgid "Event details"
+msgstr "СведениÑ\8f Ð¾ Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82ии"
 
-#: mod/contacts.php:711
-msgid "Only show unblocked contacts"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82олÑ\8cко Ð½Ðµ Ð±Ð»Ð¾ÐºÐ¸Ñ\80ованнÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:482
+msgid "Starting date and Title are required."
+msgstr "Ð\9dеобÑ\85одима Ð´Ð°Ñ\82а Ñ\81Ñ\82аÑ\80Ñ\82а Ð¸ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº."
 
-#: mod/contacts.php:717
-msgid "Blocked"
-msgstr "Ð\97аблокиÑ\80ован"
+#: mod/events.php:483 mod/events.php:484
+msgid "Event Starts:"
+msgstr "Ð\9dаÑ\87ало Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f:"
 
-#: mod/contacts.php:720
-msgid "Only show blocked contacts"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82олÑ\8cко Ð±Ð»Ð¾ÐºÐ¸Ñ\80ованнÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
+msgid "Required"
+msgstr "ТÑ\80ебÑ\83еÑ\82Ñ\81Ñ\8f"
 
-#: mod/contacts.php:726
-msgid "Ignored"
-msgstr "Ð\98гноÑ\80иÑ\80ован"
+#: mod/events.php:485 mod/events.php:501
+msgid "Finish date/time is not known or not relevant"
+msgstr "Ð\94аÑ\82а/вÑ\80емÑ\8f Ð¾ÐºÐ¾Ð½Ñ\87аниÑ\8f Ð½Ðµ Ð¸Ð·Ð²ÐµÑ\81Ñ\82нÑ\8b, Ð¸Ð»Ð¸ Ð½Ðµ Ñ\83казанÑ\8b"
 
-#: mod/contacts.php:729
-msgid "Only show ignored contacts"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82олÑ\8cко Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80Ñ\83емÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Finishes:"
+msgstr "Ð\9eконÑ\87ание Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f:"
 
-#: mod/contacts.php:735
-msgid "Archived"
-msgstr "Ð\90Ñ\80Ñ\85ивиÑ\80ованнÑ\8bе"
+#: mod/events.php:489 mod/events.php:502
+msgid "Adjust for viewer timezone"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ñ\87аÑ\81ового Ð¿Ð¾Ñ\8fÑ\81а"
 
-#: mod/contacts.php:738
-msgid "Only show archived contacts"
-msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c Ñ\82олÑ\8cко Ð°Ñ\80Ñ\85ивнÑ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:491
+msgid "Description:"
+msgstr "Ð\9eпиÑ\81ание:"
 
-#: mod/contacts.php:744
-msgid "Hidden"
-msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8bе"
+#: mod/events.php:495 mod/events.php:497
+msgid "Title:"
+msgstr "ТиÑ\82Ñ\83л:"
 
-#: mod/contacts.php:747
-msgid "Only show hidden contacts"
-msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c Ñ\82олÑ\8cко Ñ\81кÑ\80Ñ\8bÑ\82Ñ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/events.php:498 mod/events.php:499
+msgid "Share this event"
+msgstr "Ð\9fоделиÑ\82еÑ\81Ñ\8c Ñ\8dÑ\82им Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82ием"
 
-#: mod/contacts.php:804
-msgid "Search your contacts"
-msgstr "Поиск ваших контактов"
+#: mod/events.php:528
+msgid "Failed to remove event"
+msgstr ""
 
-#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232
-#, php-format
-msgid "Results for: %s"
-msgstr "Результаты для: %s"
+#: mod/events.php:530
+msgid "Event removed"
+msgstr ""
 
-#: mod/contacts.php:812 mod/settings.php:160 mod/settings.php:707
-msgid "Update"
-msgstr "Ð\9eбновление"
+#: mod/follow.php:30
+msgid "You already added this contact."
+msgstr "Ð\92Ñ\8b Ñ\83же Ð´Ð¾Ð±Ð°Ð²Ð¸Ð»Ð¸ Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82."
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Archive"
-msgstr "Ð\90Ñ\80Ñ\85ивиÑ\80оваÑ\82Ñ\8c"
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Ð\9fоддеÑ\80жка Diaspora Ð½Ðµ Ð²ÐºÐ»Ñ\8eÑ\87ена. Ð\9aонÑ\82акÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½."
 
-#: mod/contacts.php:815 mod/contacts.php:1007
-msgid "Unarchive"
-msgstr "РазаÑ\80Ñ\85ивиÑ\80оваÑ\82Ñ\8c"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "Ð\9fоддеÑ\80жка OStatus Ð²Ñ\8bклÑ\8eÑ\87ена. Ð\9aонÑ\82акÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½."
 
-#: mod/contacts.php:818
-msgid "Batch Actions"
-msgstr "Ð\9fакеÑ\82нÑ\8bе Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f"
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Тип Ñ\81еÑ\82и Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð¾Ð¿Ñ\80еделен. Ð\9aонÑ\82акÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½."
 
-#: mod/contacts.php:864
-msgid "View all contacts"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
+#: mod/follow.php:186
+msgid "Contact added"
+msgstr "Ð\9aонÑ\82акÑ\82 Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½"
 
-#: mod/contacts.php:874
-msgid "View all common friends"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е Ð¾Ð±Ñ\89ие Ð¿Ð¾Ð»я"
+#: mod/friendica.php:68
+msgid "This is Friendica, version"
+msgstr "ЭÑ\82о Friendica, Ð²ÐµÑ\80Ñ\81ия"
 
-#: mod/contacts.php:881
-msgid "Advanced Contact Settings"
-msgstr "Дополнительные Настройки Контакта"
+#: mod/friendica.php:69
+msgid "running at web location"
+msgstr "работает на веб-узле"
 
-#: mod/contacts.php:915
-msgid "Mutual Friendship"
-msgstr "Взаимная дружба"
+#: mod/friendica.php:73
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica."
 
-#: mod/contacts.php:919
-msgid "is a fan of yours"
-msgstr "является вашим поклонником"
+#: mod/friendica.php:77
+msgid "Bug reports and issues: please visit"
+msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
 
-#: mod/contacts.php:923
-msgid "you are a fan of"
-msgstr "Ð\92Ñ\8b - Ð¿Ð¾ÐºÐ»Ð¾Ð½Ð½Ð¸Ðº"
+#: mod/friendica.php:77
+msgid "the bugtracker at github"
+msgstr "багÑ\82Ñ\80екеÑ\80 Ð½Ð° github"
 
-#: mod/contacts.php:939 mod/nogroup.php:44
-msgid "Edit contact"
-msgstr "Редактировать контакт"
+#: mod/friendica.php:80
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"
 
-#: mod/contacts.php:993
-msgid "Toggle Blocked status"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81 Ð±Ð»Ð¾ÐºÐ¸Ñ\80ованноÑ\81Ñ\82и (заблокиÑ\80оваÑ\82Ñ\8c\80азблокиÑ\80оваÑ\82Ñ\8c)"
+#: mod/friendica.php:94
+msgid "Installed plugins/addons/apps:"
+msgstr "УÑ\81Ñ\82ановленнÑ\8bе Ð¿Ð»Ð°Ð³Ð¸Ð½Ñ\8b / Ð´Ð¾Ð±Ð°Ð²ÐºÐ¸ / Ð¿Ñ\80иложениÑ\8f:"
 
-#: mod/contacts.php:1001
-msgid "Toggle Ignored status"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81 Ð¸Ð³Ð½Ð¾Ñ\80иÑ\80ованиÑ\8f"
+#: mod/friendica.php:108
+msgid "No installed plugins/addons/apps"
+msgstr "Ð\9dеÑ\82 Ñ\83Ñ\81Ñ\82ановленнÑ\8bÑ\85 Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð² / Ð´Ð¾Ð±Ð°Ð²Ð¾Ðº / Ð¿Ñ\80иложений"
 
-#: mod/contacts.php:1009
-msgid "Toggle Archive status"
-msgstr "Сменить статус архивации (архивирова/не архивировать)"
+#: mod/friendica.php:113
+msgid "On this server the following remote servers are blocked."
+msgstr ""
 
-#: mod/contacts.php:1017
-msgid "Delete contact"
-msgstr "Удалить контакт"
+#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
+msgid "Reason for the block"
+msgstr ""
 
-#: mod/content.php:119 mod/network.php:468
-msgid "No such group"
-msgstr "Ð\9dеÑ\82 Ñ\82акой Ð³Ñ\80Ñ\83ппÑ\8b"
+#: mod/group.php:29
+msgid "Group created."
+msgstr "Ð\93Ñ\80Ñ\83ппа Ñ\81оздана."
 
-#: mod/content.php:130 mod/group.php:203 mod/network.php:495
-msgid "Group is empty"
-msgstr "Ð\93Ñ\80Ñ\83ппа Ð¿Ñ\83Ñ\81Ñ\82а"
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83."
 
-#: mod/content.php:135 mod/network.php:499
-#, php-format
-msgid "Group: %s"
-msgstr "Группа: %s"
+#: mod/group.php:49 mod/group.php:154
+msgid "Group not found."
+msgstr "Группа не найдена."
 
-#: mod/content.php:325 object/Item.php:96
-msgid "This entry was edited"
-msgstr "ЭÑ\82а Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ð±Ñ\8bла Ð¾Ñ\82Ñ\80едакÑ\82иÑ\80ована"
+#: mod/group.php:63
+msgid "Group name changed."
+msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¾."
 
-#: mod/content.php:621 object/Item.php:417
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d комментарий"
-msgstr[1] "%d комментариев"
-msgstr[2] "%d комментариев"
-msgstr[3] "%d комментариев"
+#: mod/group.php:93
+msgid "Save Group"
+msgstr "Сохранить группу"
 
-#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117
-msgid "Private Message"
-msgstr "Ð\9bиÑ\87ное Ñ\81ообÑ\89ение"
+#: mod/group.php:98
+msgid "Create a group of contacts/friends."
+msgstr "СоздаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83 ÐºÐ¾Ð½Ñ\82акÑ\82ов / Ð´Ñ\80Ñ\83зей."
 
-#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274
-msgid "I like this (toggle)"
-msgstr "Ð\9dÑ\80авиÑ\82Ñ\81Ñ\8f"
+#: mod/group.php:123
+msgid "Group removed."
+msgstr "Ð\93Ñ\80Ñ\83ппа Ñ\83далена."
 
-#: mod/content.php:702 object/Item.php:274
-msgid "like"
-msgstr "нÑ\80авиÑ\82Ñ\81Ñ\8f"
+#: mod/group.php:125
+msgid "Unable to remove group."
+msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ñ\83далиÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83."
 
-#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275
-msgid "I don't like this (toggle)"
-msgstr "Не нравится"
+#: mod/group.php:189
+msgid "Delete Group"
+msgstr ""
 
-#: mod/content.php:703 object/Item.php:275
-msgid "dislike"
-msgstr "не Ð½Ñ\80авиÑ\82Ñ\81Ñ\8f"
+#: mod/group.php:195
+msgid "Group Editor"
+msgstr "РедакÑ\82оÑ\80 Ð³Ñ\80Ñ\83пп"
 
-#: mod/content.php:705 object/Item.php:278
-msgid "Share this"
-msgstr "Поделитесь этим"
+#: mod/group.php:200
+msgid "Edit Group Name"
+msgstr ""
 
-#: mod/content.php:705 object/Item.php:278
-msgid "share"
-msgstr "поделиÑ\82Ñ\8cÑ\81Ñ\8f"
+#: mod/group.php:210
+msgid "Members"
+msgstr "УÑ\87аÑ\81Ñ\82ники"
 
-#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657
-#: mod/photos.php:1743 object/Item.php:702
-msgid "This is you"
-msgstr "Это вы"
+#: mod/group.php:226
+msgid "Remove Contact"
+msgstr ""
 
-#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611
-#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:392
-#: object/Item.php:704
-msgid "Comment"
-msgstr "Оставить комментарий"
+#: mod/group.php:250
+msgid "Add Contact"
+msgstr ""
 
-#: mod/content.php:729 object/Item.php:706
-msgid "Bold"
-msgstr "Ð\96иÑ\80нÑ\8bй"
+#: mod/manage.php:151
+msgid "Manage Identities and/or Pages"
+msgstr "УпÑ\80авление Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\86ией Ð¸ / Ð¸Ð»Ð¸ Ñ\81Ñ\82Ñ\80аниÑ\86ами"
 
-#: mod/content.php:730 object/Item.php:707
-msgid "Italic"
-msgstr "Kурсивный"
+#: mod/manage.php:152
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr ""
 
-#: mod/content.php:731 object/Item.php:708
-msgid "Underline"
-msgstr "Ð\9fодÑ\87еÑ\80кнÑ\83Ñ\82Ñ\8bй"
+#: mod/manage.php:153
+msgid "Select an identity to manage: "
+msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\86иÑ\8e Ð´Ð»Ñ\8f Ñ\83пÑ\80авлениÑ\8f"
 
-#: mod/content.php:732 object/Item.php:709
-msgid "Quote"
-msgstr "ЦиÑ\82аÑ\82а"
+#: mod/message.php:64
+msgid "Unable to locate contact information."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð½Ð°Ð¹Ñ\82и ÐºÐ¾Ð½Ñ\82акÑ\82нÑ\83Ñ\8e Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e."
 
-#: mod/content.php:733 object/Item.php:710
-msgid "Code"
-msgstr "Ð\9aод"
+#: mod/message.php:204
+msgid "Do you really want to delete this message?"
+msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ñ\8dÑ\82о Ñ\81ообÑ\89ение?"
 
-#: mod/content.php:734 object/Item.php:711
-msgid "Image"
-msgstr "Ð\98зобÑ\80ажение / Ð¤Ð¾Ñ\82о"
+#: mod/message.php:224
+msgid "Message deleted."
+msgstr "СообÑ\89ение Ñ\83далено."
 
-#: mod/content.php:735 object/Item.php:712
-msgid "Link"
-msgstr "СÑ\81Ñ\8bлка"
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Ð\91еÑ\81еда Ñ\83далена."
 
-#: mod/content.php:736 object/Item.php:713
-msgid "Video"
-msgstr "Ð\92идео"
+#: mod/message.php:364
+msgid "No messages."
+msgstr "Ð\9dеÑ\82 Ñ\81ообÑ\89ений."
 
-#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Редактировать"
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Сообщение не доступно."
 
-#: mod/content.php:772 object/Item.php:238
-msgid "add star"
-msgstr "помеÑ\82иÑ\82Ñ\8c"
+#: mod/message.php:477
+msgid "Delete message"
+msgstr "УдалиÑ\82Ñ\8c Ñ\81ообÑ\89ение"
 
-#: mod/content.php:773 object/Item.php:239
-msgid "remove star"
-msgstr "убрать метку"
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Удалить историю общения"
 
-#: mod/content.php:774 object/Item.php:240
-msgid "toggle star status"
-msgstr "переключить статус"
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя."
 
-#: mod/content.php:777 object/Item.php:243
-msgid "starred"
-msgstr "помеÑ\87ено"
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð¾Ñ\82веÑ\82"
 
-#: mod/content.php:778 mod/content.php:800 object/Item.php:263
-msgid "add tag"
-msgstr "добавить ключевое слово (тег)"
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Неизвестный отправитель - %s"
 
-#: mod/content.php:789 object/Item.php:251
-msgid "ignore thread"
-msgstr "игнорировать тему"
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Вы и %s"
 
-#: mod/content.php:790 object/Item.php:252
-msgid "unignore thread"
-msgstr "не игнорировать тему"
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s и Вы"
 
-#: mod/content.php:791 object/Item.php:253
-msgid "toggle ignore status"
-msgstr "изменить статус игнорирования"
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
-msgid "ignored"
-msgstr ""
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d сообщение"
+msgstr[1] "%d сообщений"
+msgstr[2] "%d сообщений"
+msgstr[3] "%d сообщений"
 
-#: mod/content.php:805 object/Item.php:141
-msgid "save to folder"
-msgstr "сохранить в папке"
+#: mod/network.php:197 mod/search.php:25
+msgid "Remove term"
+msgstr "Удалить элемент"
 
-#: mod/content.php:853 object/Item.php:212
-msgid "I will attend"
-msgstr ""
+#: mod/network.php:404
+#, 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] "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения."
+msgstr[1] "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения."
+msgstr[2] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения."
+msgstr[3] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения."
 
-#: mod/content.php:853 object/Item.php:212
-msgid "I will not attend"
-msgstr ""
+#: mod/network.php:407
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Сообщения в этой группе не будут отправлены следующим получателям."
 
-#: mod/content.php:853 object/Item.php:212
-msgid "I might attend"
-msgstr ""
+#: mod/network.php:535
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
 
-#: mod/content.php:917 object/Item.php:358
-msgid "to"
-msgstr "к"
+#: mod/network.php:540
+msgid "Invalid contact."
+msgstr "Ð\9dедопÑ\83Ñ\81Ñ\82имÑ\8bй ÐºÐ¾Ð½Ñ\82акÑ\82."
 
-#: mod/content.php:918 object/Item.php:360
-msgid "Wall-to-Wall"
-msgstr "СÑ\82ена-на-СÑ\82енÑ\83"
+#: mod/network.php:813
+msgid "Commented Order"
+msgstr "Ð\9fоÑ\81ледние ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ\82аÑ\80ии"
 
-#: mod/content.php:919 object/Item.php:361
-msgid "via Wall-To-Wall:"
-msgstr "через Стена-на-Стену:"
+#: mod/network.php:816
+msgid "Sort by Comment Date"
+msgstr "Сортировать по дате комментария"
 
-#: mod/credits.php:16
-msgid "Credits"
-msgstr "Ð\9fÑ\80изнаÑ\82елÑ\8cноÑ\81Ñ\82Ñ\8c"
+#: mod/network.php:821
+msgid "Posted Order"
+msgstr "Ð\9bенÑ\82а Ð·Ð°Ð¿Ð¸Ñ\81ей"
 
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!"
+#: mod/network.php:824
+msgid "Sort by Post Date"
+msgstr "Сортировать по дате отправки"
 
-#: mod/crepair.php:89
-msgid "Contact settings applied."
-msgstr "УÑ\81Ñ\82ановки ÐºÐ¾Ð½Ñ\82акÑ\82а Ð¿Ñ\80инÑ\8fÑ\82Ñ\8b."
+#: mod/network.php:835
+msgid "Posts that mention or involve you"
+msgstr "Ð\9fоÑ\81Ñ\82Ñ\8b ÐºÐ¾Ñ\82оÑ\80Ñ\8bе Ñ\83поминаÑ\8eÑ\82 Ð²Ð°Ñ\81 Ð¸Ð»Ð¸ Ð² ÐºÐ¾Ñ\82оÑ\80Ñ\8bÑ\85 Ð²Ñ\8b Ñ\83Ñ\87аÑ\81Ñ\82вÑ\83еÑ\82е"
 
-#: mod/crepair.php:91
-msgid "Contact update failed."
-msgstr "Ð\9eбновление ÐºÐ¾Ð½Ñ\82акÑ\82а Ð½ÐµÑ\83даÑ\87ное."
+#: mod/network.php:843
+msgid "New"
+msgstr "Ð\9dовое"
 
-#: mod/crepair.php:116 mod/dfrn_confirm.php:126 mod/fsuggest.php:21
-#: mod/fsuggest.php:93
-msgid "Contact not found."
-msgstr "Контакт не найден."
+#: mod/network.php:846
+msgid "Activity Stream - by date"
+msgstr "Лента активности - по дате"
 
-#: mod/crepair.php:122
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
+#: mod/network.php:854
+msgid "Shared Links"
+msgstr "Ссылки, которыми поделились"
 
-#: mod/crepair.php:123
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
+#: mod/network.php:857
+msgid "Interesting Links"
+msgstr "Интересные ссылки"
 
-#: mod/crepair.php:136 mod/crepair.php:138
-msgid "No mirroring"
-msgstr "Ð\9dе Ð·ÐµÑ\80калиÑ\80оваÑ\82Ñ\8c"
+#: mod/network.php:865
+msgid "Starred"
+msgstr "Ð\98збÑ\80анное"
 
-#: mod/crepair.php:136
-msgid "Mirror as forwarded posting"
-msgstr "Ð\97еÑ\80калиÑ\80оваÑ\82Ñ\8c ÐºÐ°Ðº Ð¿ÐµÑ\80еадÑ\80еÑ\81ованнÑ\8bе Ñ\81ообÑ\89ениÑ\8f"
+#: mod/network.php:868
+msgid "Favourite Posts"
+msgstr "Ð\98збÑ\80аннÑ\8bе Ð¿Ð¾Ñ\81Ñ\82Ñ\8b"
 
-#: mod/crepair.php:136 mod/crepair.php:138
-msgid "Mirror as my own posting"
-msgstr "Ð\97еÑ\80калиÑ\80оваÑ\82Ñ\8c ÐºÐ°Ðº Ð¼Ð¾Ð¸ Ñ\81ообÑ\89ениÑ\8f"
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80оÑ\82окола OpenID. Ð\9dе Ð²Ð¾Ð·Ð²Ñ\80аÑ\89Ñ\91н ID."
 
-#: mod/crepair.php:152
-msgid "Return to contact editor"
-msgstr "Возврат к редактору контакта"
+#: mod/openid.php:60
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
 
-#: mod/crepair.php:154
-msgid "Refetch contact data"
-msgstr "Ð\9eбновиÑ\82Ñ\8c Ð´Ð°Ð½Ð½Ñ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82а"
+#: mod/photos.php:94 mod/photos.php:1900
+msgid "Recent Photos"
+msgstr "Ð\9fоÑ\81ледние Ñ\84оÑ\82о"
 
-#: mod/crepair.php:158
-msgid "Remote Self"
-msgstr "Remote Self"
+#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
+msgid "Upload New Photos"
+msgstr "Загрузить новые фото"
 
-#: mod/crepair.php:161
-msgid "Mirror postings from this contact"
-msgstr "Ð\97екÑ\80алиÑ\80оваÑ\82Ñ\8c Ñ\81ообÑ\89ениÑ\8f Ð¾Ñ\82 Ñ\8dÑ\82ого ÐºÐ¾Ð½Ñ\82акÑ\82а"
+#: mod/photos.php:112 mod/settings.php:36
+msgid "everybody"
+msgstr "каждÑ\8bй"
 
-#: mod/crepair.php:163
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Пометить этот контакт как remote_self, что заставит Friendica постить сообщения от этого контакта."
+#: mod/photos.php:176
+msgid "Contact information unavailable"
+msgstr "Информация о контакте недоступна"
 
-#: mod/crepair.php:168
-msgid "Account Nickname"
-msgstr "Ð\9dик Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
+#: mod/photos.php:197
+msgid "Album not found."
+msgstr "Ð\90лÑ\8cбом Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½."
 
-#: mod/crepair.php:169
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - перезаписывает Имя/Ник"
+#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
+msgid "Delete Album"
+msgstr "Удалить альбом"
 
-#: mod/crepair.php:170
-msgid "Account URL"
-msgstr "URL аккаунта"
+#: mod/photos.php:240
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?"
 
-#: mod/crepair.php:171
-msgid "Friend Request URL"
-msgstr "URL запроса в друзья"
+#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
+msgid "Delete Photo"
+msgstr "Удалить фото"
 
-#: mod/crepair.php:172
-msgid "Friend Confirm URL"
-msgstr "URL подтверждения друга"
+#: mod/photos.php:332
+msgid "Do you really want to delete this photo?"
+msgstr "Вы действительно хотите удалить эту фотографию?"
 
-#: mod/crepair.php:173
-msgid "Notification Endpoint URL"
-msgstr "URL эндпоинта уведомления"
+#: mod/photos.php:713
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s отмечен/а/ в %2$s by %3$s"
 
-#: mod/crepair.php:174
-msgid "Poll/Feed URL"
-msgstr "URL опроса/ленты"
+#: mod/photos.php:713
+msgid "a photo"
+msgstr "фото"
 
-#: mod/crepair.php:175
-msgid "New photo from this URL"
-msgstr "Ð\9dовое Ñ\84оÑ\82о Ð¸Ð· Ñ\8dÑ\82ой URL"
+#: mod/photos.php:821
+msgid "Image file is empty."
+msgstr "Файл Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f Ð¿Ñ\83Ñ\81Ñ\82."
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Ð\9dе Ð½Ð°Ð¹Ð´ÐµÐ½Ð¾ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ñ\8bÑ\85 Ð´Ð¾Ð²ÐµÑ\80еннÑ\8bÑ\85 Ð»Ð¸Ñ\86."
+#: mod/photos.php:988
+msgid "No photos selected"
+msgstr "Ð\9dе Ð²Ñ\8bбÑ\80ано Ñ\84оÑ\82о."
 
-#: mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете."
+#: mod/photos.php:1091 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Доступ к этому пункту ограничен."
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Существующие менеджеры страницы"
+#: mod/photos.php:1151
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "СÑ\83Ñ\89еÑ\81Ñ\82вÑ\83Ñ\8eÑ\89ие Ñ\83полномоÑ\87еннÑ\8bе Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\8b"
+#: mod/photos.php:1188
+msgid "Upload Photos"
+msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\84оÑ\82о"
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Ð\92озможнÑ\8bе Ð´Ð¾Ð²ÐµÑ\80еннÑ\8bе Ð»Ð¸Ñ\86а"
+#: mod/photos.php:1192 mod/photos.php:1267
+msgid "New album name: "
+msgstr "Ð\9dазвание Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð°Ð»Ñ\8cбома: "
 
-#: mod/delegate.php:139 mod/tagrm.php:95
-msgid "Remove"
-msgstr "УдалиÑ\82Ñ\8c"
+#: mod/photos.php:1193
+msgid "or existing album name: "
+msgstr "или Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ðµ Ñ\81Ñ\83Ñ\89еÑ\81Ñ\82вÑ\83Ñ\8eÑ\89его Ð°Ð»Ñ\8cбома: "
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Ð\94обавиÑ\82Ñ\8c"
+#: mod/photos.php:1194
+msgid "Do not show a status post for this upload"
+msgstr "Ð\9dе Ð¿Ð¾ÐºÐ°Ð·Ñ\8bваÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81\81ообÑ\89ение Ð´Ð»Ñ\8f Ñ\8dÑ\82ой Ð·Ð°ÐºÐ°Ñ\87ки"
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Ð\9dеÑ\82 Ð·Ð°Ð¿Ð¸Ñ\81ей."
+#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
+msgid "Show to Groups"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð² Ð³Ñ\80Ñ\83ппаÑ\85"
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
-#: mod/profiles.php:180 mod/profiles.php:619
-msgid "Profile not found."
-msgstr "Профиль не найден."
+#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
+msgid "Show to Contacts"
+msgstr "Показывать контактам"
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Это может иногда происходить, если контакт запрашивали двое людей, и он был уже одобрен."
+#: mod/photos.php:1207
+msgid "Private Photo"
+msgstr "Личное фото"
 
-#: mod/dfrn_confirm.php:244
-msgid "Response from remote site was not understood."
-msgstr "Ð\9eÑ\82веÑ\82 Ð¾Ñ\82 Ñ\83даленного Ñ\81айÑ\82а Ð½Ðµ Ð±Ñ\8bл Ð¿Ð¾Ð½Ñ\8fÑ\82."
+#: mod/photos.php:1208
+msgid "Public Photo"
+msgstr "Ð\9fÑ\83блиÑ\87ное Ñ\84оÑ\82о"
 
-#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
-msgid "Unexpected response from remote site: "
-msgstr "Ð\9dеожиданнÑ\8bй Ð¾Ñ\82веÑ\82 Ð¾Ñ\82 Ñ\83даленного Ñ\81айÑ\82а: "
+#: mod/photos.php:1278
+msgid "Edit Album"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð°Ð»Ñ\8cбом"
 
-#: mod/dfrn_confirm.php:267
-msgid "Confirmation completed successfully."
-msgstr "Ð\9fодÑ\82веÑ\80ждение Ñ\83Ñ\81пеÑ\88но Ð·Ð°Ð²ÐµÑ\80Ñ\88ено."
+#: mod/photos.php:1283
+msgid "Show Newest First"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bе Ð¿ÐµÑ\80вÑ\8bми"
 
-#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
-msgid "Remote site reported: "
-msgstr "УдаленнÑ\8bй Ñ\81айÑ\82 Ñ\81ообÑ\89ил: "
+#: mod/photos.php:1285
+msgid "Show Oldest First"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\81Ñ\82аÑ\80Ñ\8bе Ð¿ÐµÑ\80вÑ\8bми"
 
-#: mod/dfrn_confirm.php:281
-msgid "Temporary failure. Please wait and try again."
-msgstr "Ð\92Ñ\80еменнÑ\8bе Ð½ÐµÑ\83даÑ\87и. Ð\9fодождиÑ\82е Ð¸ Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
+#: mod/photos.php:1314 mod/photos.php:1885
+msgid "View Photo"
+msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80 Ñ\84оÑ\82о"
 
-#: mod/dfrn_confirm.php:288
-msgid "Introduction failed or was revoked."
-msgstr "Ð\97апÑ\80оÑ\81 Ð¾Ñ\88ибоÑ\87ен Ð¸Ð»Ð¸ Ð±Ñ\8bл Ð¾Ñ\82озван."
+#: mod/photos.php:1359
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Ð\9dеÑ\82 Ñ\80азÑ\80еÑ\88ениÑ\8f. Ð\94оÑ\81Ñ\82Ñ\83п Ðº Ñ\8dÑ\82омÑ\83 Ñ\8dлеменÑ\82Ñ\83 Ð¾Ð³Ñ\80аниÑ\87ен."
 
-#: mod/dfrn_confirm.php:418
-msgid "Unable to set contact photo."
-msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c Ñ\84оÑ\82о ÐºÐ¾Ð½Ñ\82акÑ\82а."
+#: mod/photos.php:1361
+msgid "Photo not available"
+msgstr "ФоÑ\82о Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пно"
 
-#: mod/dfrn_confirm.php:559
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Не найдено записи пользователя для '%s' "
+#: mod/photos.php:1422
+msgid "View photo"
+msgstr "Просмотр фото"
 
-#: mod/dfrn_confirm.php:569
-msgid "Our site encryption key is apparently messed up."
-msgstr "Ð\9dаÑ\88 ÐºÐ»Ñ\8eÑ\87 Ñ\88иÑ\84Ñ\80ованиÑ\8f Ñ\81айÑ\82а, Ð¿Ð¾-видимомÑ\83, Ð¿ÐµÑ\80епÑ\83Ñ\82алÑ\81Ñ\8f."
+#: mod/photos.php:1422
+msgid "Edit photo"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ñ\84оÑ\82о"
 
-#: mod/dfrn_confirm.php:580
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Ð\91Ñ\8bл Ð¿Ñ\80едоÑ\81Ñ\82авлен Ð¿Ñ\83Ñ\81Ñ\82ой URL Ñ\81айÑ\82а â\80\8bâ\80\8bили URL Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ñ\80аÑ\81Ñ\88иÑ\84Ñ\80ован Ð½Ð°Ð¼Ð¸."
+#: mod/photos.php:1423
+msgid "Use as profile photo"
+msgstr "Ð\98Ñ\81полÑ\8cзоваÑ\82Ñ\8c ÐºÐ°Ðº Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/dfrn_confirm.php:601
-msgid "Contact record was not found for you on our site."
-msgstr "Ð\97апиÑ\81Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82а Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ð° Ð´Ð»Ñ\8f Ð²Ð°Ñ\81 Ð½Ð° Ð½Ð°Ñ\88ем Ñ\81айÑ\82е."
+#: mod/photos.php:1448
+msgid "View Full Size"
+msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð¿Ð¾Ð»Ð½Ñ\8bй Ñ\80азмеÑ\80"
 
-#: mod/dfrn_confirm.php:615
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Публичный ключ недоступен в записи о контакте по ссылке %s"
+#: mod/photos.php:1538
+msgid "Tags: "
+msgstr "Ключевые слова: "
 
-#: mod/dfrn_confirm.php:635
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
+#: mod/photos.php:1541
+msgid "[Remove any tag]"
+msgstr "[Удалить любое ключевое слово]"
 
-#: mod/dfrn_confirm.php:646
-msgid "Unable to set your contact credentials on our system."
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c Ð²Ð°Ñ\88и Ñ\83Ñ\87еÑ\82нÑ\8bе Ð´Ð°Ð½Ð½Ñ\8bе ÐºÐ¾Ð½Ñ\82акÑ\82а Ð² Ð½Ð°Ñ\88ей Ñ\81иÑ\81Ñ\82еме."
+#: mod/photos.php:1584
+msgid "New album name"
+msgstr "Ð\9dазвание Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð°Ð»Ñ\8cбома"
 
-#: mod/dfrn_confirm.php:708
-msgid "Unable to update your contact profile details on our system"
-msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ\82Ñ\8c Ð²Ð°Ñ\88и ÐºÐ¾Ð½Ñ\82акÑ\82нÑ\8bе Ð´ÐµÑ\82али Ð¿Ñ\80оÑ\84илÑ\8f Ð² Ð½Ð°Ñ\88ей Ñ\81иÑ\81Ñ\82еме"
+#: mod/photos.php:1585
+msgid "Caption"
+msgstr "Ð\9fодпиÑ\81Ñ\8c"
 
-#: mod/dfrn_confirm.php:780
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s присоединился %2$s"
+#: mod/photos.php:1586
+msgid "Add a Tag"
+msgstr "Добавить ключевое слово (тег)"
 
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s добро пожаловать %2$s"
+#: mod/photos.php:1586
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "ЭÑ\82оÑ\82 Ð·Ð°Ð¿Ñ\80оÑ\81 Ð±Ñ\8bл Ñ\83же Ð¿Ñ\80инÑ\8fÑ\82."
+#: mod/photos.php:1587
+msgid "Do not rotate"
+msgstr "Ð\9dе Ð¿Ð¾Ð²Ð¾Ñ\80аÑ\87иваÑ\82Ñ\8c"
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:523
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Ð\9cеÑ\81Ñ\82оположение Ð¿Ñ\80оÑ\84илÑ\8f Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ð½ÐµÐ´Ð¾Ð¿Ñ\83Ñ\81Ñ\82имÑ\8bм Ð¸Ð»Ð¸ Ð½Ðµ Ñ\81одеÑ\80жиÑ\82 Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ð¿Ñ\80оÑ\84иле."
+#: mod/photos.php:1588
+msgid "Rotate CW (right)"
+msgstr "Ð\9fовоÑ\80оÑ\82 Ð¿Ð¾ Ñ\87аÑ\81овой Ñ\81Ñ\82Ñ\80елке (напÑ\80аво)"
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:528
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Ð\92нимание: Ð¼ÐµÑ\81Ñ\82оположение Ð¿Ñ\80оÑ\84илÑ\8f Ð½Ðµ Ð¸Ð¼ÐµÐµÑ\82 Ð¸Ð´ÐµÐ½Ñ\82иÑ\84иÑ\86иÑ\80Ñ\83емого Ð¸Ð¼ÐµÐ½Ð¸ Ð²Ð»Ð°Ð´ÐµÐ»Ñ\8cÑ\86а."
+#: mod/photos.php:1589
+msgid "Rotate CCW (left)"
+msgstr "Ð\9fовоÑ\80оÑ\82 Ð¿Ñ\80оÑ\82ив Ñ\87аÑ\81овой Ñ\81Ñ\82Ñ\80елки (налево)"
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:531
-msgid "Warning: profile location has no profile photo."
-msgstr "Ð\92нимание: Ð¼ÐµÑ\81Ñ\82оположение Ð¿Ñ\80оÑ\84илÑ\8f Ð½Ðµ Ð¸Ð¼ÐµÐµÑ\82 ÐµÑ\89е Ñ\84оÑ\82огÑ\80аÑ\84ии Ð¿Ñ\80оÑ\84илÑ\8f."
+#: mod/photos.php:1604
+msgid "Private photo"
+msgstr "Ð\9bиÑ\87ное Ñ\84оÑ\82о"
 
-#: mod/dfrn_request.php:136 mod/dfrn_request.php:535
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d требуемый параметр не был найден в заданном месте"
-msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
-msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
-msgstr[3] "%d требуемых параметров не были найдены в заданном месте"
+#: mod/photos.php:1605
+msgid "Public photo"
+msgstr "Публичное фото"
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Ð\97апÑ\80оÑ\81 Ñ\81оздан."
+#: mod/photos.php:1814
+msgid "Map"
+msgstr "Ð\9aаÑ\80Ñ\82а"
 
-#: mod/dfrn_request.php:225
-msgid "Unrecoverable protocol error."
-msgstr "Ð\9dеиÑ\81пÑ\80авимаÑ\8f Ð¾Ñ\88ибка Ð¿Ñ\80оÑ\82окола."
+#: mod/photos.php:1891 mod/videos.php:393
+msgid "View Album"
+msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð°Ð»Ñ\8cбом"
 
-#: mod/dfrn_request.php:253
-msgid "Profile unavailable."
-msgstr "Профиль недоступен."
+#: mod/probe.php:10 mod/webfinger.php:9
+msgid "Only logged in users are permitted to perform a probing."
+msgstr ""
 
-#: mod/dfrn_request.php:280
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "К %s пришло сегодня слишком много запросов на подключение."
+#: mod/profile.php:175
+msgid "Tips for New Members"
+msgstr "Советы для новых участников"
 
-#: mod/dfrn_request.php:281
-msgid "Spam protection measures have been invoked."
-msgstr "Ð\91Ñ\8bли Ð¿Ñ\80имененÑ\8b Ð¼ÐµÑ\80Ñ\8b Ð·Ð°Ñ\89иÑ\82Ñ\8b Ð¾Ñ\82 Ñ\81пама."
+#: mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Ð\9fÑ\80оÑ\84илÑ\8c Ñ\83дален."
 
-#: mod/dfrn_request.php:282
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Ð\94Ñ\80Ñ\83зÑ\8cÑ\8f Ñ\81овеÑ\82Ñ\83Ñ\8eÑ\82 Ð¿Ð¾Ð¿Ñ\80обоваÑ\82Ñ\8c ÐµÑ\89е Ñ\80аз Ð² Ð±Ð»Ð¸Ð¶Ð°Ð¹Ñ\88ие 24 Ñ\87аÑ\81а."
+#: mod/profiles.php:54 mod/profiles.php:90
+msgid "Profile-"
+msgstr "Ð\9fÑ\80оÑ\84илÑ\8c-"
 
-#: mod/dfrn_request.php:344
-msgid "Invalid locator"
-msgstr "Ð\9dедопÑ\83Ñ\81Ñ\82имÑ\8bй Ð»Ð¾ÐºÐ°Ñ\82оÑ\80"
+#: mod/profiles.php:73 mod/profiles.php:118
+msgid "New profile created."
+msgstr "Ð\9dовÑ\8bй Ð¿Ñ\80оÑ\84илÑ\8c Ñ\81оздан."
 
-#: mod/dfrn_request.php:353
-msgid "Invalid email address."
-msgstr "Ð\9dевеÑ\80нÑ\8bй Ð°Ð´Ñ\80еÑ\81 Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b."
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
+msgstr "Ð\9fÑ\80оÑ\84илÑ\8c Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пен Ð´Ð»Ñ\8f ÐºÐ»Ð¾Ð½Ð¸Ñ\80ованиÑ\8f."
 
-#: mod/dfrn_request.php:378
-msgid "This account has not been configured for email. Request failed."
-msgstr "ЭÑ\82оÑ\82 Ð°ÐºÐºÐ°Ñ\83нÑ\82 Ð½Ðµ Ð½Ð°Ñ\81Ñ\82Ñ\80оен Ð´Ð»Ñ\8f Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b. Ð\97апÑ\80оÑ\81 Ð½Ðµ Ñ\83далÑ\81я."
+#: mod/profiles.php:192
+msgid "Profile Name is required."
+msgstr "Ð\9dеобÑ\85одимо Ð¸Ð¼Ñ\8f Ð¿Ñ\80оÑ\84иля."
 
-#: mod/dfrn_request.php:481
-msgid "You have already introduced yourself here."
-msgstr "Ð\92Ñ\8b Ñ\83же Ð²Ð²ÐµÐ»Ð¸ Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ Ñ\81ебе Ð·Ð´ÐµÑ\81Ñ\8c."
+#: mod/profiles.php:332
+msgid "Marital Status"
+msgstr "Семейное Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ðµ"
 
-#: mod/dfrn_request.php:485
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Похоже, что вы уже друзья с %s."
+#: mod/profiles.php:336
+msgid "Romantic Partner"
+msgstr "Любимый человек"
 
-#: mod/dfrn_request.php:506
-msgid "Invalid profile URL."
-msgstr "Ð\9dевеÑ\80нÑ\8bй URL Ð¿Ñ\80оÑ\84илÑ\8f."
+#: mod/profiles.php:348
+msgid "Work/Employment"
+msgstr "РабоÑ\82а/Ð\97анÑ\8fÑ\82оÑ\81Ñ\82Ñ\8c"
 
-#: mod/dfrn_request.php:609
-msgid "Your introduction has been sent."
-msgstr "Ð\92аÑ\88 Ð·Ð°Ð¿Ñ\80оÑ\81 Ð¾Ñ\82пÑ\80авлен."
+#: mod/profiles.php:351
+msgid "Religion"
+msgstr "РелигиÑ\8f"
 
-#: mod/dfrn_request.php:651
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе."
+#: mod/profiles.php:355
+msgid "Political Views"
+msgstr "Политические взгляды"
 
-#: mod/dfrn_request.php:672
-msgid "Please login to confirm introduction."
-msgstr "Ð\94лÑ\8f Ð¿Ð¾Ð´Ñ\82веÑ\80ждениÑ\8f Ð·Ð°Ð¿Ñ\80оÑ\81а Ð²Ð¾Ð¹Ð´Ð¸Ñ\82е Ð¿Ð¾Ð¶Ð°Ð»Ñ\83йÑ\81Ñ\82а Ñ\81 Ð¿Ð°Ñ\80олем."
+#: mod/profiles.php:359
+msgid "Gender"
+msgstr "Ð\9fол"
 
-#: mod/dfrn_request.php:682
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
+#: mod/profiles.php:363
+msgid "Sexual Preference"
+msgstr "Сексуальные предпочтения"
 
-#: mod/dfrn_request.php:696 mod/dfrn_request.php:713
-msgid "Confirm"
-msgstr "Подтвердить"
+#: mod/profiles.php:367
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/dfrn_request.php:708
-msgid "Hide this contact"
-msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82"
+#: mod/profiles.php:371
+msgid "Homepage"
+msgstr "Ð\94омаÑ\88нÑ\8fÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а"
 
-#: mod/dfrn_request.php:711
-#, php-format
-msgid "Welcome home %s."
-msgstr "Добро пожаловать домой, %s!"
+#: mod/profiles.php:375 mod/profiles.php:695
+msgid "Interests"
+msgstr "Хобби / Интересы"
 
-#: mod/dfrn_request.php:712
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
+#: mod/profiles.php:379
+msgid "Address"
+msgstr "Адрес"
 
-#: mod/dfrn_request.php:843
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:"
+#: mod/profiles.php:386 mod/profiles.php:691
+msgid "Location"
+msgstr "Местонахождение"
 
-#: mod/dfrn_request.php:867
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"%s/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>."
+#: mod/profiles.php:471
+msgid "Profile updated."
+msgstr "Профиль обновлен."
 
-#: mod/dfrn_request.php:872
-msgid "Friend/Connection Request"
-msgstr "Ð\97апÑ\80оÑ\81 Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f / Ð½Ð° Ð¿Ð¾Ð´ÐºÐ»Ñ\8eÑ\87ение"
+#: mod/profiles.php:564
+msgid " and "
+msgstr "и"
 
-#: mod/dfrn_request.php:873
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "публичный профиль"
 
-#: mod/dfrn_request.php:874 mod/follow.php:112
-msgid "Please answer the following:"
-msgstr "Пожалуйста, ответьте следующее:"
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s изменились с %2$s на &ldquo;%3$s&rdquo;"
 
-#: mod/dfrn_request.php:875 mod/follow.php:113
+#: mod/profiles.php:577
 #, php-format
-msgid "Does %s know you?"
-msgstr "%s знает вас?"
+msgid " - Visit %1$s's %2$s"
+msgstr " - Посетить профиль %1$s [%2$s]"
 
-#: mod/dfrn_request.php:879 mod/follow.php:114
-msgid "Add a personal note:"
-msgstr "Добавить личную заметку:"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s обновил %2$s, изменив %3$s."
 
-#: mod/dfrn_request.php:882
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet / Federated Social Web"
+#: mod/profiles.php:637
+msgid "Hide contacts and friends:"
+msgstr "Скрыть контакты и друзей:"
 
-#: mod/dfrn_request.php:884
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите  %s в строке поиска Diaspora"
+#: mod/profiles.php:642
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
 
-#: mod/dfrn_request.php:885 mod/follow.php:120
-msgid "Your Identity Address:"
-msgstr "Ð\92аÑ\88 Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\86ионнÑ\8bй Ð°Ð´Ñ\80еÑ\81:"
+#: mod/profiles.php:667
+msgid "Show more profile fields:"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð±Ð¾Ð»Ñ\8cÑ\88е Ð¿Ð¾Ð»ÐµÐ¹ Ð² Ð¿Ñ\80оÑ\84иле:"
 
-#: mod/dfrn_request.php:888 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð·Ð°Ð¿Ñ\80оÑ\81"
+#: mod/profiles.php:679
+msgid "Profile Actions"
+msgstr "Ð\94ейÑ\81Ñ\82виÑ\8f Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/directory.php:199 view/theme/vier/theme.php:196
-msgid "Global Directory"
-msgstr "Ð\93лобалÑ\8cнÑ\8bй ÐºÐ°Ñ\82алог"
+#: mod/profiles.php:680
+msgid "Edit Profile Details"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð´ÐµÑ\82али Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/directory.php:201
-msgid "Find on this site"
-msgstr "Ð\9dайÑ\82и Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е"
+#: mod/profiles.php:682
+msgid "Change Profile Photo"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/directory.php:203
-msgid "Results for:"
-msgstr "РезÑ\83лÑ\8cÑ\82аÑ\82Ñ\8b Ð´Ð»Ñ\8f:"
+#: mod/profiles.php:683
+msgid "View this profile"
+msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ð¿Ñ\80оÑ\84илÑ\8c"
 
-#: mod/directory.php:205
-msgid "Site Directory"
-msgstr "Ð\9aаÑ\82алог Ñ\81айÑ\82а"
+#: mod/profiles.php:685
+msgid "Create a new profile using these settings"
+msgstr "СоздаÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bй Ð¿Ñ\80оÑ\84илÑ\8c, Ð¸Ñ\81полÑ\8cзÑ\83Ñ\8f Ñ\8dÑ\82и Ð½Ð°Ñ\81Ñ\82Ñ\80ойки"
 
-#: mod/directory.php:212
-msgid "No entries (some entries may be hidden)."
-msgstr "Ð\9dеÑ\82 Ð·Ð°Ð¿Ð¸Ñ\81ей (некоÑ\82оÑ\80Ñ\8bе Ð·Ð°Ð¿Ð¸Ñ\81и Ð¼Ð¾Ð³Ñ\83Ñ\82 Ð±Ñ\8bÑ\82Ñ\8c Ñ\81кÑ\80Ñ\8bÑ\82Ñ\8b)."
+#: mod/profiles.php:686
+msgid "Clone this profile"
+msgstr "Ð\9aлониÑ\80оваÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ð¿Ñ\80оÑ\84илÑ\8c"
 
-#: mod/dirfind.php:37
-#, php-format
-msgid "People Search - %s"
-msgstr "Поиск по людям - %s"
+#: mod/profiles.php:687
+msgid "Delete this profile"
+msgstr "Удалить этот профиль"
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Поиск по форумам - %s"
+#: mod/profiles.php:689
+msgid "Basic information"
+msgstr "Основная информация"
 
-#: mod/dirfind.php:245 mod/match.php:109
-msgid "No matches"
-msgstr "Ð\9dеÑ\82 Ñ\81ооÑ\82веÑ\82Ñ\81Ñ\82вий"
+#: mod/profiles.php:690
+msgid "Profile picture"
+msgstr "Ð\9aаÑ\80Ñ\82инка Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/display.php:479
-msgid "Item has been removed."
-msgstr "Ð\9fÑ\83нкÑ\82 Ð±Ñ\8bл Ñ\83дален."
+#: mod/profiles.php:692
+msgid "Preferences"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки"
 
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "ЭлеменÑ\82 Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½"
+#: mod/profiles.php:693
+msgid "Status information"
+msgstr "СÑ\82аÑ\82Ñ\83Ñ\81"
 
-#: mod/editpost.php:32
-msgid "Edit post"
-msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ñ\81ообÑ\89ение"
+#: mod/profiles.php:694
+msgid "Additional information"
+msgstr "Ð\94ополниÑ\82елÑ\8cнаÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
 
-#: mod/events.php:100 mod/events.php:102
-msgid "Event can not end before it has started."
-msgstr "ЭвенÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð·Ð°ÐºÐ¾Ð½Ñ\87иÑ\82Ñ\81Ñ\8f Ð´Ð¾ Ñ\81Ñ\82аÑ\80Ñ\82а."
+#: mod/profiles.php:697
+msgid "Relation"
+msgstr "Ð\9eÑ\82ноÑ\88ениÑ\8f"
 
-#: mod/events.php:109 mod/events.php:111
-msgid "Event title and start time are required."
-msgstr "Ð\9dазвание Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f Ð¸ Ð²Ñ\80емÑ\8f Ð½Ð°Ñ\87ала Ð¾Ð±Ñ\8fзаÑ\82елÑ\8cнÑ\8b Ð´Ð»Ñ\8f Ð·Ð°Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ\8f."
+#: mod/profiles.php:701
+msgid "Your Gender:"
+msgstr "Ð\92аÑ\88 Ð¿Ð¾Ð»:"
 
-#: mod/events.php:388
-msgid "Create New Event"
-msgstr "Создать новое мероприятие"
+#: mod/profiles.php:702
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
 
-#: mod/events.php:489
-msgid "Event details"
-msgstr "СведениÑ\8f Ð¾ Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82ии"
+#: mod/profiles.php:704
+msgid "Example: fishing photography software"
+msgstr "Ð\9fÑ\80имеÑ\80: Ñ\80Ñ\8bбалка Ñ\84оÑ\82огÑ\80аÑ\84ии Ð¿Ñ\80огÑ\80аммное Ð¾Ð±ÐµÑ\81пеÑ\87ение"
 
-#: mod/events.php:490
-msgid "Starting date and Title are required."
-msgstr "Ð\9dеобÑ\85одима Ð´Ð°Ñ\82а Ñ\81Ñ\82аÑ\80Ñ\82а Ð¸ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº."
+#: mod/profiles.php:709
+msgid "Profile Name:"
+msgstr "Ð\98мÑ\8f Ð¿Ñ\80оÑ\84илÑ\8f:"
 
-#: mod/events.php:491 mod/events.php:492
-msgid "Event Starts:"
-msgstr "Начало мероприятия:"
+#: mod/profiles.php:711
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому через Интернет."
 
-#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708
-msgid "Required"
-msgstr "ТÑ\80ебÑ\83еÑ\82Ñ\81Ñ\8f"
+#: mod/profiles.php:712
+msgid "Your Full Name:"
+msgstr "Ð\92аÑ\88е Ð¿Ð¾Ð»Ð½Ð¾Ðµ Ð¸Ð¼Ñ\8f:"
 
-#: mod/events.php:493 mod/events.php:509
-msgid "Finish date/time is not known or not relevant"
-msgstr "Ð\94аÑ\82а/вÑ\80емÑ\8f Ð¾ÐºÐ¾Ð½Ñ\87аниÑ\8f Ð½Ðµ Ð¸Ð·Ð²ÐµÑ\81Ñ\82нÑ\8b, Ð¸Ð»Ð¸ Ð½Ðµ Ñ\83казанÑ\8b"
+#: mod/profiles.php:713
+msgid "Title/Description:"
+msgstr "Ð\97аголовок / Ð\9eпиÑ\81ание:"
 
-#: mod/events.php:495 mod/events.php:496
-msgid "Event Finishes:"
-msgstr "Ð\9eконÑ\87ание Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82иÑ\8f:"
+#: mod/profiles.php:716
+msgid "Street Address:"
+msgstr "Ð\90дÑ\80еÑ\81:"
 
-#: mod/events.php:497 mod/events.php:510
-msgid "Adjust for viewer timezone"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ñ\87аÑ\81ового Ð¿Ð¾Ñ\8fÑ\81а"
+#: mod/profiles.php:717
+msgid "Locality/City:"
+msgstr "Ð\93оÑ\80од / Ð\9dаÑ\81еленнÑ\8bй Ð¿Ñ\83нкÑ\82:"
 
-#: mod/events.php:499
-msgid "Description:"
-msgstr "Ð\9eпиÑ\81ание:"
+#: mod/profiles.php:718
+msgid "Region/State:"
+msgstr "Район / Ð\9eблаÑ\81Ñ\82Ñ\8c:"
 
-#: mod/events.php:503 mod/events.php:505
-msgid "Title:"
-msgstr "ТиÑ\82Ñ\83л:"
+#: mod/profiles.php:719
+msgid "Postal/Zip Code:"
+msgstr "Ð\9fоÑ\87Ñ\82овÑ\8bй Ð¸Ð½Ð´ÐµÐºÑ\81:"
 
-#: mod/events.php:506 mod/events.php:507
-msgid "Share this event"
-msgstr "Ð\9fоделиÑ\82еÑ\81Ñ\8c Ñ\8dÑ\82им Ð¼ÐµÑ\80опÑ\80иÑ\8fÑ\82ием"
+#: mod/profiles.php:720
+msgid "Country:"
+msgstr "СÑ\82Ñ\80ана:"
 
-#: mod/fbrowser.php:132
-msgid "Files"
-msgstr "ФайлÑ\8b"
+#: mod/profiles.php:724
+msgid "Who: (if applicable)"
+msgstr "Ð\9aÑ\82о: (еÑ\81ли Ñ\82Ñ\80ебÑ\83еÑ\82Ñ\81Ñ\8f)"
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- выбрать -"
+#: mod/profiles.php:724
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Ð\92Ñ\8b Ñ\83же Ð´Ð¾Ð±Ð°Ð²Ð¸Ð»Ð¸ Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82."
+#: mod/profiles.php:725
+msgid "Since [date]:"
+msgstr "С ÐºÐ°ÐºÐ¾Ð³Ð¾ Ð²Ñ\80емени [даÑ\82а]:"
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Ð\9fоддеÑ\80жка Diaspora Ð½Ðµ Ð²ÐºÐ»Ñ\8eÑ\87ена. Ð\9aонÑ\82акÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½."
+#: mod/profiles.php:727
+msgid "Tell us about yourself..."
+msgstr "РаÑ\81Ñ\81кажиÑ\82е Ð½Ð°Ð¼ Ð¾ Ñ\81ебе ..."
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "Ð\9fоддеÑ\80жка OStatus Ð²Ñ\8bклÑ\8eÑ\87ена. Ð\9aонÑ\82акÑ\82 Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½."
+#: mod/profiles.php:728
+msgid "XMPP (Jabber) address:"
+msgstr "Ð\90дÑ\80еÑ\81 XMPP (Jabber):"
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Тип сети не может быть определен. Контакт не может быть добавлен."
+#: mod/profiles.php:728
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить."
 
-#: mod/follow.php:186
-msgid "Contact added"
-msgstr "Ð\9aонÑ\82акÑ\82 Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½"
+#: mod/profiles.php:729
+msgid "Homepage URL:"
+msgstr "Ð\90дÑ\80еÑ\81 Ð´Ð¾Ð¼Ð°Ñ\88ней Ñ\81Ñ\82Ñ\80аниÑ\87ки:"
 
-#: mod/friendica.php:72
-msgid "This is Friendica, version"
-msgstr "ЭÑ\82о Friendica, Ð²ÐµÑ\80Ñ\81иÑ\8f"
+#: mod/profiles.php:732
+msgid "Religious Views:"
+msgstr "РелигиознÑ\8bе Ð²Ð·Ð³Ð»Ñ\8fдÑ\8b:"
 
-#: mod/friendica.php:73
-msgid "running at web location"
-msgstr "работает на веб-узле"
+#: mod/profiles.php:733
+msgid "Public Keywords:"
+msgstr "Общественные ключевые слова:"
 
-#: mod/friendica.php:75
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica."
+#: mod/profiles.php:733
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
 
-#: mod/friendica.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Ð\9eÑ\82Ñ\87еÑ\82 Ð¾Ð± Ð¾Ñ\88ибкаÑ\85 Ð¸ Ð¿Ñ\80облемаÑ\85: Ð¿Ð¾Ð¶Ð°Ð»Ñ\83йÑ\81Ñ\82а, Ð¿Ð¾Ñ\81еÑ\82иÑ\82е"
+#: mod/profiles.php:734
+msgid "Private Keywords:"
+msgstr "Ð\9bиÑ\87нÑ\8bе ÐºÐ»Ñ\8eÑ\87евÑ\8bе Ñ\81лова:"
 
-#: mod/friendica.php:77
-msgid "the bugtracker at github"
-msgstr "багтрекер на github"
+#: mod/profiles.php:734
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Используется для поиска профилей, никогда не показывается другим)"
 
-#: mod/friendica.php:78
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"
-
-#: mod/friendica.php:92
-msgid "Installed plugins/addons/apps:"
-msgstr "Установленные плагины / добавки / приложения:"
+#: mod/profiles.php:737
+msgid "Musical interests"
+msgstr "Музыкальные интересы"
 
-#: mod/friendica.php:105
-msgid "No installed plugins/addons/apps"
-msgstr "Ð\9dеÑ\82 Ñ\83Ñ\81Ñ\82ановленнÑ\8bÑ\85 Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð² / Ð´Ð¾Ð±Ð°Ð²Ð¾Ðº / Ð¿Ñ\80иложений"
+#: mod/profiles.php:738
+msgid "Books, literature"
+msgstr "Ð\9aниги, Ð»Ð¸Ñ\82еÑ\80аÑ\82Ñ\83Ñ\80а"
 
-#: mod/fsuggest.php:64
-msgid "Friend suggestion sent."
-msgstr "Ð\9fÑ\80иглаÑ\88ение Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f Ð¾Ñ\82пÑ\80авлено."
+#: mod/profiles.php:739
+msgid "Television"
+msgstr "Телевидение"
 
-#: mod/fsuggest.php:98
-msgid "Suggest Friends"
-msgstr "Ð\9fÑ\80едложиÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей"
+#: mod/profiles.php:740
+msgid "Film/dance/culture/entertainment"
+msgstr "Ð\9aино / Ñ\82анÑ\86Ñ\8b / ÐºÑ\83лÑ\8cÑ\82Ñ\83Ñ\80а / Ñ\80азвлеÑ\87ениÑ\8f"
 
-#: mod/fsuggest.php:100
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Предложить друга для %s."
+#: mod/profiles.php:741
+msgid "Hobbies/Interests"
+msgstr "Хобби / Интересы"
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Ð\93Ñ\80Ñ\83ппа Ñ\81оздана."
+#: mod/profiles.php:742
+msgid "Love/romance"
+msgstr "Ð\9bÑ\8eбовÑ\8c / Ñ\80оманÑ\82ика"
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83."
+#: mod/profiles.php:743
+msgid "Work/employment"
+msgstr "РабоÑ\82а / Ð·Ð°Ð½Ñ\8fÑ\82оÑ\81Ñ\82Ñ\8c"
 
-#: mod/group.php:49 mod/group.php:150
-msgid "Group not found."
-msgstr "Ð\93Ñ\80Ñ\83ппа Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½Ð°."
+#: mod/profiles.php:744
+msgid "School/education"
+msgstr "Школа / Ð¾Ð±Ñ\80азование"
 
-#: mod/group.php:63
-msgid "Group name changed."
-msgstr "Ð\9dазвание Ð³Ñ\80Ñ\83ппÑ\8b Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¾."
+#: mod/profiles.php:745
+msgid "Contact information and Social Networks"
+msgstr "Ð\9aонÑ\82акÑ\82наÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f Ð¸ Ñ\81оÑ\86иалÑ\8cнÑ\8bе Ñ\81еÑ\82и"
 
-#: mod/group.php:91
-msgid "Save Group"
-msgstr "СоÑ\85Ñ\80аниÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83"
+#: mod/profiles.php:786
+msgid "Edit/Manage Profiles"
+msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð¿Ñ\80оÑ\84илÑ\8c"
 
-#: mod/group.php:97
-msgid "Create a group of contacts/friends."
-msgstr "Создать группу контактов / друзей."
+#: mod/register.php:93
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
 
-#: mod/group.php:122
-msgid "Group removed."
-msgstr "Группа удалена."
+#: mod/register.php:98
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Ошибка отправки письма. Вот ваши учетные данные: <br> логин: %s<br> пароль: %s<br><br>Вы сможете изменить пароль после входа."
 
-#: mod/group.php:124
-msgid "Unable to remove group."
-msgstr "Ð\9dе Ñ\83даеÑ\82Ñ\81Ñ\8f Ñ\83далиÑ\82Ñ\8c Ð³Ñ\80Ñ\83ппÑ\83."
+#: mod/register.php:105
+msgid "Registration successful."
+msgstr "РегиÑ\81Ñ\82Ñ\80аÑ\86иÑ\8f Ñ\83Ñ\81пеÑ\88на."
 
-#: mod/group.php:187
-msgid "Group Editor"
-msgstr "РедакÑ\82оÑ\80 Ð³Ñ\80Ñ\83пп"
+#: mod/register.php:111
+msgid "Your registration can not be processed."
+msgstr "Ð\92аÑ\88а Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86иÑ\8f Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ð¾Ð±Ñ\80абоÑ\82ана."
 
-#: mod/group.php:200
-msgid "Members"
-msgstr "УÑ\87аÑ\81Ñ\82ники"
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
+msgstr "Ð\92аÑ\88а Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86иÑ\8f Ð² Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ð¸ Ð¾Ð´Ð¾Ð±Ñ\80ениÑ\8f Ð²Ð»Ð°Ð´ÐµÐ»Ñ\8cÑ\86ем Ñ\81айÑ\82а."
 
-#: mod/group.php:233 mod/profperm.php:107
-msgid "Click on a contact to add or remove."
-msgstr "Нажмите на контакт, чтобы добавить или удалить."
+#: mod/register.php:226
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."
 
-#: mod/hcard.php:11
-msgid "No profile"
-msgstr "Нет профиля"
+#: mod/register.php:227
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
 
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Ð\9fомоÑ\89Ñ\8c:"
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
+msgstr "Ð\92аÑ\88 OpenID (необÑ\8fзаÑ\82елÑ\8cно):"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Добро пожаловать на %s!"
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
+msgstr "Включить ваш профиль в каталог участников?"
 
-#: mod/install.php:140
-msgid "Friendica Communications Server - Setup"
-msgstr "Ð\9aоммÑ\83никаÑ\86ионнÑ\8bй Ñ\81еÑ\80веÑ\80 Friendica - Ð\94оÑ\81Ñ\82Ñ\83п"
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr "СообÑ\89ение Ð´Ð»Ñ\8f Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ\81Ñ\82Ñ\80аÑ\82оÑ\80а"
 
-#: mod/install.php:146
-msgid "Could not connect to database."
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð¿Ð¾Ð´ÐºÐ»Ñ\8eÑ\87иÑ\82Ñ\8cÑ\81Ñ\8f Ðº Ð±Ð°Ð·Ðµ Ð´Ð°Ð½Ð½Ñ\8bÑ\85."
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "СообÑ\89ениÑ\8f Ð´Ð»Ñ\8f Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ\81Ñ\82Ñ\80аÑ\82оÑ\80а Ñ\81айÑ\82а Ð½Ð° Ñ\82емÑ\83 \"поÑ\87емÑ\83 Ñ\8f Ñ\85оÑ\87Ñ\83 Ð¿Ñ\80иÑ\81оединиÑ\82Ñ\8cÑ\81Ñ\8f Ðº Ð²Ð°Ð¼\""
 
-#: mod/install.php:150
-msgid "Could not create table."
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c Ñ\82аблиÑ\86Ñ\83."
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
+msgstr "ЧленÑ\81Ñ\82во Ð½Ð° Ñ\81айÑ\82е Ñ\82олÑ\8cко Ð¿Ð¾ Ð¿Ñ\80иглаÑ\88ениÑ\8e."
 
-#: mod/install.php:156
-msgid "Your Friendica site database has been installed."
-msgstr "База данных сайта установлена."
+#: mod/register.php:269
+msgid "Your invitation ID: "
+msgstr "ID вашего приглашения:"
 
-#: mod/install.php:161
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
+#: mod/register.php:272 mod/admin.php:1056
+msgid "Registration"
+msgstr "Регистрация"
 
-#: mod/install.php:162 mod/install.php:234 mod/install.php:609
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ñ\81моÑ\82Ñ\80иÑ\82е Ñ\84айл \"INSTALL.txt\"."
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Ð\92аÑ\88е Ð¿Ð¾Ð»Ð½Ð¾Ðµ Ð¸Ð¼Ñ\8f (напÑ\80имеÑ\80, Ð\98ван Ð\98ванов):"
 
-#: mod/install.php:174
-msgid "Database already in use."
-msgstr "Ð\91аза Ð´Ð°Ð½Ð½Ñ\8bÑ\85 Ñ\83же Ð¸Ñ\81полÑ\8cзÑ\83еÑ\82Ñ\81Ñ\8f."
+#: mod/register.php:281
+msgid "Your Email Address: "
+msgstr "Ð\92аÑ\88 Ð°Ð´Ñ\80еÑ\81 Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
 
-#: mod/install.php:231
-msgid "System check"
-msgstr "Ð\9fÑ\80овеÑ\80иÑ\82Ñ\8c Ñ\81иÑ\81Ñ\82емÑ\83"
+#: mod/register.php:283 mod/settings.php:1278
+msgid "New Password:"
+msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c:"
 
-#: mod/install.php:236
-msgid "Check again"
-msgstr "Ð\9fÑ\80овеÑ\80иÑ\82Ñ\8c ÐµÑ\89е Ñ\80аз"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
+msgstr "Ð\9eÑ\81Ñ\82авÑ\8cÑ\82е Ð¿Ñ\83Ñ\81Ñ\82Ñ\8bм Ð´Ð»Ñ\8f Ð°Ð²Ñ\82омаÑ\82иÑ\87еÑ\81кой Ð³ÐµÐ½ÐµÑ\80аÑ\86ии Ð¿Ð°Ñ\80олÑ\8f."
 
-#: mod/install.php:255
-msgid "Database connection"
-msgstr "Подключение к базе данных"
+#: mod/register.php:284 mod/settings.php:1279
+msgid "Confirm:"
+msgstr "Подтвердите:"
 
-#: mod/install.php:256
+#: mod/register.php:285
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
 
-#: mod/install.php:257
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
+#: mod/register.php:286
+msgid "Choose a nickname: "
+msgstr "Выберите псевдоним: "
 
-#: mod/install.php:258
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
+msgstr "Импорт своего профиля в этот экземпляр friendica"
 
-#: mod/install.php:262
-msgid "Database Server Name"
-msgstr "Ð\98мÑ\8f Ñ\81еÑ\80веÑ\80а Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
+msgstr "ТолÑ\8cко Ð·Ð°Ñ\80егиÑ\81Ñ\82Ñ\80иÑ\80ованнÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели Ð¼Ð¾Ð³Ñ\83Ñ\82 Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ð¿Ð¾Ð¸Ñ\81к."
 
-#: mod/install.php:263
-msgid "Database Login Name"
-msgstr "Ð\9bогин Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+#: mod/search.php:124
+msgid "Too Many Requests"
+msgstr "СлиÑ\88ком Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð¿Ñ\80оÑ\81ов"
 
-#: mod/install.php:264
-msgid "Database Login Password"
-msgstr "Ð\9fаÑ\80олÑ\8c Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+#: mod/search.php:125
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Ð\9dезаÑ\80егиÑ\81Ñ\82Ñ\80иÑ\80ованнÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели Ð¼Ð¾Ð³Ñ\83Ñ\82 Ð²Ñ\8bполнÑ\8fÑ\82Ñ\8c Ð¿Ð¾Ð¸Ñ\81к Ñ\80аз Ð² Ð¼Ð¸Ð½Ñ\83Ñ\82Ñ\83."
 
-#: mod/install.php:264
-msgid "For security reasons the password must not be empty"
-msgstr "Для безопасности пароль не должен быть пустым"
+#: mod/search.php:225
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Элементы с тегами: %s"
 
-#: mod/install.php:265
-msgid "Database Name"
-msgstr "Ð\98мÑ\8f Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+#: mod/settings.php:43 mod/admin.php:1490
+msgid "Account"
+msgstr "Ð\90ккаÑ\83нÑ\82"
 
-#: mod/install.php:266 mod/install.php:307
-msgid "Site administrator email address"
-msgstr "Ð\90дÑ\80еÑ\81 Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ\81Ñ\82Ñ\80аÑ\82оÑ\80а Ñ\81айÑ\82а"
+#: mod/settings.php:52 mod/admin.php:169
+msgid "Additional features"
+msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82и"
 
-#: mod/install.php:266 mod/install.php:307
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."
+#: mod/settings.php:60
+msgid "Display"
+msgstr "Внешний вид"
 
-#: mod/install.php:270 mod/install.php:310
-msgid "Please select a default timezone for your website"
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ñ\8bбеÑ\80иÑ\82е Ñ\87аÑ\81овой Ð¿Ð¾Ñ\8fÑ\81 Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e Ð´Ð»Ñ\8f Ð²Ð°Ñ\88его Ñ\81айÑ\82а"
+#: mod/settings.php:67 mod/settings.php:890
+msgid "Social Networks"
+msgstr "СоÑ\86иалÑ\8cнÑ\8bе Ñ\81еÑ\82и"
 
-#: mod/install.php:297
-msgid "Site settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\81айÑ\82а"
+#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
+msgid "Plugins"
+msgstr "Ð\9fлагинÑ\8b"
 
-#: mod/install.php:311
-msgid "System Language:"
-msgstr "ЯзÑ\8bк Ñ\81иÑ\81Ñ\82емÑ\8b:"
+#: mod/settings.php:88
+msgid "Connected apps"
+msgstr "Ð\9fодклÑ\8eÑ\87еннÑ\8bе Ð¿Ñ\80иложениÑ\8f"
 
-#: mod/install.php:311
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем."
+#: mod/settings.php:95 mod/uexport.php:45
+msgid "Export personal data"
+msgstr "Экспорт личных данных"
 
-#: mod/install.php:351
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð½Ð°Ð¹Ñ\82и PATH Ð²ÐµÐ±-Ñ\81еÑ\80веÑ\80а Ð² Ñ\83Ñ\81Ñ\82ановкаÑ\85 PHP."
+#: mod/settings.php:102
+msgid "Remove account"
+msgstr "УдалиÑ\82Ñ\8c Ð°ÐºÐºÐ°Ñ\83нÑ\82"
 
-#: mod/install.php:352
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "У вас не установлена CLI версия PHP, вы не сможете выполнять cron-задания на сервере. Смотрите раздел <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a> в документации."
+#: mod/settings.php:157
+msgid "Missing some important data!"
+msgstr "Не хватает важных данных!"
 
-#: mod/install.php:356
-msgid "PHP executable path"
-msgstr "PHP executable path"
+#: mod/settings.php:271
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
 
-#: mod/install.php:356
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."
+#: mod/settings.php:276
+msgid "Email settings updated."
+msgstr "Настройки эл. почты обновлены."
 
-#: mod/install.php:361
-msgid "Command line PHP"
-msgstr "Command line PHP"
+#: mod/settings.php:291
+msgid "Features updated"
+msgstr "Настройки обновлены"
 
-#: mod/install.php:370
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Ð\91инаÑ\80ник PHP Ð½Ðµ Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f CLI Ð²ÐµÑ\80Ñ\81ией (можеÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ñ\8dÑ\82о cgi-fcgi Ð²ÐµÑ\80Ñ\81иÑ\8f)"
+#: mod/settings.php:361
+msgid "Relocate message has been send to your contacts"
+msgstr "Ð\9fеÑ\80емеÑ\89Ñ\91нное Ñ\81ообÑ\89ение Ð±Ñ\8bло Ð¾Ñ\82пÑ\80авлено Ñ\81пиÑ\81кÑ\83 ÐºÐ¾Ð½Ñ\82акÑ\82ов"
 
-#: mod/install.php:371
-msgid "Found PHP version: "
-msgstr "Ð\9dайденнаÑ\8f PHP Ð²ÐµÑ\80Ñ\81иÑ\8f"
+#: mod/settings.php:380
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Ð\9fÑ\83Ñ\81Ñ\82Ñ\8bе Ð¿Ð°Ñ\80оли Ð½Ðµ Ð´Ð¾Ð¿Ñ\83Ñ\81каÑ\8eÑ\82Ñ\81Ñ\8f. Ð\9fаÑ\80олÑ\8c Ð½Ðµ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½."
 
-#: mod/install.php:373
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: mod/settings.php:388
+msgid "Wrong password."
+msgstr "Неверный пароль."
 
-#: mod/install.php:384
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Не включено \"register_argc_argv\" в установках PHP."
+#: mod/settings.php:399
+msgid "Password changed."
+msgstr "Пароль изменен."
 
-#: mod/install.php:385
-msgid "This is required for message delivery to work."
-msgstr "ЭÑ\82о Ð½ÐµÐ¾Ð±Ñ\85одимо Ð´Ð»Ñ\8f Ñ\80абоÑ\82Ñ\8b Ð´Ð¾Ñ\81Ñ\82авки Ñ\81ообÑ\89ений."
+#: mod/settings.php:401
+msgid "Password update failed. Please try again."
+msgstr "Ð\9eбновление Ð¿Ð°Ñ\80олÑ\8f Ð½Ðµ Ñ\83далоÑ\81Ñ\8c. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е ÐµÑ\89е Ñ\80аз."
 
-#: mod/install.php:387
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/settings.php:481
+msgid " Please use a shorter name."
+msgstr " Пожалуйста, используйте более короткое имя."
 
-#: mod/install.php:410
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
+#: mod/settings.php:483
+msgid " Name too short."
+msgstr " Имя слишком короткое."
 
-#: mod/install.php:411
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: mod/settings.php:492
+msgid "Wrong Password"
+msgstr "Неверный пароль."
 
-#: mod/install.php:413
-msgid "Generate encryption keys"
-msgstr "Генерация шифрованых ключей"
+#: mod/settings.php:497
+msgid " Not valid email."
+msgstr " Неверный e-mail."
 
-#: mod/install.php:420
-msgid "libCurl PHP module"
-msgstr "libCurl PHP модуль"
+#: mod/settings.php:503
+msgid " Cannot change to that email."
+msgstr " Невозможно изменить на этот e-mail."
 
-#: mod/install.php:421
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP модуль"
+#: mod/settings.php:559
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Частный форум не имеет настроек приватности. Используется группа конфиденциальности по умолчанию."
 
-#: mod/install.php:422
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP модуль"
+#: mod/settings.php:563
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию."
 
-#: mod/install.php:423
-msgid "mysqli PHP module"
-msgstr "mysqli PHP модуль"
+#: mod/settings.php:603
+msgid "Settings updated."
+msgstr "Настройки обновлены."
 
-#: mod/install.php:424
-msgid "mb_string PHP module"
-msgstr "mb_string PHP модуль"
+#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
+msgid "Add application"
+msgstr "Добавить приложения"
 
-#: mod/install.php:425
-msgid "mcrypt PHP module"
-msgstr "mcrypt PHP модуль"
+#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
+#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
+#: mod/admin.php:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
+#: mod/admin.php:2170
+msgid "Save Settings"
+msgstr "Сохранить настройки"
 
-#: mod/install.php:426
-msgid "XML PHP module"
-msgstr "XML PHP модуль"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/install.php:427
-msgid "iconv module"
-msgstr "Модуль iconv"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/install.php:431 mod/install.php:433
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Redirect"
+msgstr "Перенаправление"
 
-#: mod/install.php:431
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Icon url"
+msgstr "URL символа"
 
-#: mod/install.php:439
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим libCURL PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
+#: mod/settings.php:698
+msgid "You can't edit this application."
+msgstr "Ð\92Ñ\8b Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ\82е Ð¸Ð·Ð¼ÐµÐ½Ð¸Ñ\82Ñ\8c Ñ\8dÑ\82о Ð¿Ñ\80иложение."
 
-#: mod/install.php:443
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
+#: mod/settings.php:741
+msgid "Connected Apps"
+msgstr "Подключенные приложения"
 
-#: mod/install.php:447
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c OpenSSL, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
+#: mod/settings.php:745
+msgid "Client key starts with"
+msgstr "Ð\9aлÑ\8eÑ\87 ÐºÐ»Ð¸ÐµÐ½Ñ\82а Ð½Ð°Ñ\87инаеÑ\82Ñ\81Ñ\8f Ñ\81"
 
-#: mod/install.php:451
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c MySQLi, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
+#: mod/settings.php:746
+msgid "No name"
+msgstr "Ð\9dеÑ\82 Ð¸Ð¼ÐµÐ½Ð¸"
 
-#: mod/install.php:455
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c mb_string, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
+#: mod/settings.php:747
+msgid "Remove authorization"
+msgstr "УдалиÑ\82Ñ\8c Ð°Ð²Ñ\82оÑ\80изаÑ\86иÑ\8e"
 
-#: mod/install.php:459
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c mcrypt, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
+#: mod/settings.php:759
+msgid "No Plugin settings configured"
+msgstr "Ð\9dеÑ\82 Ñ\81конÑ\84игÑ\83Ñ\80иÑ\80ованнÑ\8bÑ\85 Ð½Ð°Ñ\81Ñ\82Ñ\80оек Ð¿Ð»Ð°Ð³Ð¸Ð½Ð°"
 
-#: mod/install.php:463
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c iconv, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
+#: mod/settings.php:768
+msgid "Plugin Settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð¿Ð»Ð°Ð³Ð¸Ð½Ð°"
 
-#: mod/install.php:472
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr "Если вы используете php_cli, то убедитесь, что модуль mcrypt подключен в файле конфигурации"
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "Off"
+msgstr "Выкл."
 
-#: mod/install.php:475
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr "Функция mcrypt_create_iv() не объявлена. Она необходима для шифрования RINO2."
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "On"
+msgstr "Вкл."
 
-#: mod/install.php:477
-msgid "mcrypt_create_iv() function"
-msgstr "ФÑ\83нкÑ\86иÑ\8f mcrypt_create_iv()"
+#: mod/settings.php:790
+msgid "Additional Features"
+msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82и"
 
-#: mod/install.php:485
-msgid "Error, XML PHP module required but not installed."
-msgstr "Ошибка, необходим PHP модуль XML, но он не установлен"
+#: mod/settings.php:800 mod/settings.php:804
+msgid "General Social Media Settings"
+msgstr "Общие настройки социальных медиа"
 
-#: mod/install.php:500
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
+#: mod/settings.php:810
+msgid "Disable intelligent shortening"
+msgstr "Отключить умное сокращение"
 
-#: mod/install.php:501
+#: mod/settings.php:812
 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 "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
+"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 "Обычно система пытается найти лучшую ссылку для добавления к сокращенному посту. Если эта настройка включена, то каждый сокращенный пост будет указывать на оригинальный пост в Friendica."
 
-#: mod/install.php:502
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."
+#: mod/settings.php:818
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Автоматически подписываться на любого пользователя GNU Social (OStatus), который вас упомянул или который на вас подписался"
 
-#: mod/install.php:503
+#: mod/settings.php:820
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."
-
-#: mod/install.php:506
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php is writable"
+"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 "Если вы получите сообщение от неизвестной учетной записи OStatus, эта настройка решает, что делать. Если включена, то новый контакт будет создан для каждого неизвестного пользователя."
 
-#: mod/install.php:516
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."
+#: mod/settings.php:826
+msgid "Default group for OStatus contacts"
+msgstr "Группа по-умолчанию для OStatus-контактов"
 
-#: mod/install.php:517
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."
+#: mod/settings.php:834
+msgid "Your legacy GNU Social account"
+msgstr "Ваша старая учетная запись GNU Social"
 
-#: mod/install.php:518
+#: mod/settings.php:836
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."
+"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 "Если вы введете тут вашу старую учетную запись GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены."
 
-#: mod/install.php:519
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."
+#: mod/settings.php:839
+msgid "Repair OStatus subscriptions"
+msgstr "Починить подписки OStatus"
 
-#: mod/install.php:522
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 доступен для записи"
+#: mod/settings.php:848 mod/settings.php:849
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Встроенная  поддержка для %s подключение %s"
 
-#: mod/install.php:538
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."
+#: mod/settings.php:848 mod/settings.php:849
+msgid "enabled"
+msgstr "подключено"
 
-#: mod/install.php:540
-msgid "Url rewrite is working"
-msgstr "Url rewrite работает"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "disabled"
+msgstr "отключено"
 
-#: mod/install.php:559
-msgid "ImageMagick PHP extension is not installed"
-msgstr "Модуль PHP ImageMagick не установлен"
+#: mod/settings.php:849
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/install.php:561
-msgid "ImageMagick PHP extension is installed"
-msgstr "Ð\9cодÑ\83лÑ\8c PHP ImageMagick Ñ\83Ñ\81Ñ\82ановлен"
+#: mod/settings.php:883
+msgid "Email access is disabled on this site."
+msgstr "Ð\94оÑ\81Ñ\82Ñ\83п Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b Ð¾Ñ\82клÑ\8eÑ\87ен Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е."
 
-#: mod/install.php:563
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick поддерживает GIF"
+#: mod/settings.php:895
+msgid "Email/Mailbox Setup"
+msgstr "Настройка эл. почты / почтового ящика"
 
-#: mod/install.php:570
+#: mod/settings.php:896
 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 "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
 
-#: mod/install.php:607
-msgid "<h1>What next</h1>"
-msgstr "<h1>Что далее</h1>"
+#: mod/settings.php:897
+msgid "Last successful email check:"
+msgstr "Последняя успешная проверка электронной почты:"
 
-#: mod/install.php:608
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
+#: mod/settings.php:899
+msgid "IMAP server name:"
+msgstr "Имя IMAP сервера:"
 
-#: mod/invite.php:28
-msgid "Total invitation limit exceeded."
-msgstr "Превышен общий лимит приглашений."
+#: mod/settings.php:900
+msgid "IMAP port:"
+msgstr "Порт IMAP:"
 
-#: mod/invite.php:51
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Неверный адрес электронной почты."
+#: mod/settings.php:901
+msgid "Security:"
+msgstr "Безопасность:"
 
-#: mod/invite.php:76
-msgid "Please join us on Friendica"
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð¿Ñ\80иÑ\81оединÑ\8fйÑ\82еÑ\81Ñ\8c Ðº Ð½Ð°Ð¼ Ð½Ð° Friendica"
+#: mod/settings.php:901 mod/settings.php:906
+msgid "None"
+msgstr "Ð\9dиÑ\87его"
 
-#: mod/invite.php:87
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Ð\9bимиÑ\82 Ð¿Ñ\80иглаÑ\88ений Ð¿Ñ\80евÑ\8bÑ\88ен. Ð\9fожалÑ\83йÑ\81Ñ\82а, Ñ\81вÑ\8fжиÑ\82еÑ\81Ñ\8c Ñ\81 Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ\81Ñ\82Ñ\80аÑ\82оÑ\80ом Ñ\81айÑ\82а."
+#: mod/settings.php:902
+msgid "Email login name:"
+msgstr "Ð\9bогин Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b:"
 
-#: mod/invite.php:91
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Доставка сообщения не удалась."
+#: mod/settings.php:903
+msgid "Email password:"
+msgstr "Пароль эл. почты:"
 
-#: mod/invite.php:95
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d сообщение отправлено."
-msgstr[1] "%d сообщений отправлено."
-msgstr[2] "%d сообщений отправлено."
-msgstr[3] "%d сообщений отправлено."
+#: mod/settings.php:904
+msgid "Reply-to address:"
+msgstr "Адрес для ответа:"
 
-#: mod/invite.php:114
-msgid "You have no more invitations available"
-msgstr "У Ð²Ð°Ñ\81 Ð½ÐµÑ\82 Ð±Ð¾Ð»Ñ\8cÑ\88е Ð¿Ñ\80иглаÑ\88ений"
+#: mod/settings.php:905
+msgid "Send public posts to all email contacts:"
+msgstr "Ð\9eÑ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ð¾Ñ\82кÑ\80Ñ\8bÑ\82Ñ\8bе Ñ\81ообÑ\89ениÑ\8f Ð½Ð° Ð²Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b:"
 
-#: mod/invite.php:122
-#, 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 "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей."
+#: mod/settings.php:906
+msgid "Action after import:"
+msgstr "Действие после импорта:"
 
-#: mod/invite.php:124
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica"
+#: mod/settings.php:906
+msgid "Move to folder"
+msgstr "Переместить в папку"
 
-#: mod/invite.php:125
-#, 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, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s  со списком альтернативных сайтов Friendica, к которым вы можете присоединиться."
+#: mod/settings.php:907
+msgid "Move to folder:"
+msgstr "Переместить в папку:"
 
-#: mod/invite.php:128
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников."
+#: mod/settings.php:943 mod/admin.php:942
+msgid "No special theme for mobile devices"
+msgstr "Нет специальной темы для мобильных устройств"
 
-#: mod/invite.php:134
-msgid "Send invitations"
-msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð¿Ñ\80иглаÑ\88ения"
+#: mod/settings.php:1003
+msgid "Display Settings"
+msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b Ð´Ð¸Ñ\81плея"
 
-#: mod/invite.php:135
-msgid "Enter email addresses, one per line:"
-msgstr "Ð\92ведиÑ\82е Ð°Ð´Ñ\80еÑ\81а Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b, Ð¿Ð¾ Ð¾Ð´Ð½Ð¾Ð¼Ñ\83 Ð² Ñ\81Ñ\82Ñ\80оке:"
+#: mod/settings.php:1009 mod/settings.php:1032
+msgid "Display Theme:"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82емÑ\83:"
 
-#: mod/invite.php:136 mod/message.php:332 mod/message.php:515
-#: mod/wallmessage.php:135
-msgid "Your message:"
-msgstr "Ваше сообщение:"
+#: mod/settings.php:1010
+msgid "Mobile Theme:"
+msgstr "Мобильная тема:"
 
-#: mod/invite.php:137
+#: mod/settings.php:1011
+msgid "Suppress warning of insecure networks"
+msgstr "Не отображать уведомление о небезопасных сетях"
+
+#: mod/settings.php:1011
 msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Ð\9fÑ\80иглаÑ\88аем Ð\92аÑ\81 Ð¿Ñ\80иÑ\81оединиÑ\82Ñ\8cÑ\81Ñ\8f ÐºÐ¾ Ð¼Ð½Ðµ Ð¸ Ð´Ñ\80Ñ\83гим Ð±Ð»Ð¸Ð·ÐºÐ¸Ð¼ Ð´Ñ\80Ñ\83зÑ\8cÑ\8fм Ð½Ð° Friendica - Ð¿Ð¾Ð¼Ð¾Ñ\87Ñ\8c Ð½Ð°Ð¼ Ñ\81оздаÑ\82Ñ\8c Ð»Ñ\83Ñ\87Ñ\88Ñ\83Ñ\8e Ñ\81оÑ\86иалÑ\8cнÑ\83Ñ\8e Ñ\81еÑ\82Ñ\8c."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr "Ð\94олжна Ð»Ð¸ Ñ\81иÑ\81Ñ\82ема Ð¿Ð¾Ð´Ð°Ð²Ð»Ñ\8fÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð¾ Ñ\82ом, Ñ\87Ñ\82о Ñ\82екÑ\83Ñ\89аÑ\8f Ð³Ñ\80Ñ\83ппа Ñ\81одеÑ\80жиÑ\82Ñ\8c Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей Ð¸Ð· Ñ\81еÑ\82ей, ÐºÐ¾Ñ\82оÑ\80Ñ\8bе Ð½Ðµ Ð¼Ð¾Ð³Ñ\83Ñ\82 Ð¿Ð¾Ð»Ñ\83Ñ\87аÑ\82Ñ\8c Ð½ÐµÐ¿Ñ\83блиÑ\87нÑ\8bе Ñ\81ообÑ\89ениÑ\8f Ð¸Ð»Ð¸ Ñ\81ообÑ\89ениÑ\8f Ñ\81 Ð¾Ð³Ñ\80аниÑ\87енной Ð²Ð¸Ð´Ð¸Ð¼Ð¾Ñ\81Ñ\82Ñ\8cÑ\8e."
 
-#: mod/invite.php:139
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Ð\92ам Ð½Ñ\83жно Ð±Ñ\83деÑ\82 Ð¿Ñ\80едоÑ\81Ñ\82авиÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 ÐºÐ¾Ð´ Ð¿Ñ\80иглаÑ\88ениÑ\8f: $invite_code"
+#: mod/settings.php:1012
+msgid "Update browser every xx seconds"
+msgstr "Ð\9eбновление Ð±Ñ\80аÑ\83зеÑ\80а ÐºÐ°Ð¶Ð´Ñ\8bе Ñ\85Ñ\85 Ñ\81екÑ\83нд"
 
-#: mod/invite.php:139
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
+#: mod/settings.php:1012
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Минимум 10 секунд. Введите -1 для отключения."
 
-#: mod/invite.php:141
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com"
+#: mod/settings.php:1013
+msgid "Number of items to display per page:"
+msgstr "Количество элементов, отображаемых на одной странице:"
 
-#: mod/item.php:118
-msgid "Unable to locate original post."
-msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð½Ð°Ð¹Ñ\82и Ð¾Ñ\80игиналÑ\8cнÑ\8bй Ð¿Ð¾Ñ\81Ñ\82."
+#: mod/settings.php:1013 mod/settings.php:1014
+msgid "Maximum of 100 items"
+msgstr "Ð\9cакÑ\81имÑ\83м 100 Ñ\8dлеменÑ\82ов"
 
-#: mod/item.php:336
-msgid "Empty post discarded."
-msgstr "Ð\9fÑ\83Ñ\81Ñ\82ое Ñ\81ообÑ\89ение Ð¾Ñ\82бÑ\80аÑ\81Ñ\8bваеÑ\82Ñ\81Ñ\8f."
+#: mod/settings.php:1014
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Ð\9aолиÑ\87еÑ\81Ñ\82во Ñ\8dлеменÑ\82ов Ð½Ð° Ñ\81Ñ\82Ñ\80аниÑ\86е, ÐºÐ¾Ð³Ð´Ð° Ð¿Ñ\80оÑ\81моÑ\82Ñ\80 Ð¾Ñ\81Ñ\83Ñ\89еÑ\81Ñ\82влÑ\8fеÑ\82Ñ\81Ñ\8f Ñ\81 Ð¼Ð¾Ð±Ð¸Ð»Ñ\8cнÑ\8bÑ\85 Ñ\83Ñ\81Ñ\82Ñ\80ойÑ\81Ñ\82в:"
 
-#: mod/item.php:889
-msgid "System error. Post not saved."
-msgstr "СиÑ\81Ñ\82емнаÑ\8f Ð¾Ñ\88ибка. Ð¡Ð¾Ð¾Ð±Ñ\89ение Ð½Ðµ Ñ\81оÑ\85Ñ\80анено."
+#: mod/settings.php:1015
+msgid "Don't show emoticons"
+msgstr "не Ð¿Ð¾ÐºÐ°Ð·Ñ\8bваÑ\82Ñ\8c emoticons"
 
-#: mod/item.php:979
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica."
+#: mod/settings.php:1016
+msgid "Calendar"
+msgstr "Календарь"
 
-#: mod/item.php:981
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Вы можете посетить их в онлайне на %s"
+#: mod/settings.php:1017
+msgid "Beginning of week:"
+msgstr "Начало недели:"
 
-#: mod/item.php:982
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
+#: mod/settings.php:1018
+msgid "Don't show notices"
+msgstr "Не показывать уведомления"
 
-#: mod/item.php:986
-#, php-format
-msgid "%s posted an update."
-msgstr "%s отправил/а/ обновление."
+#: mod/settings.php:1019
+msgid "Infinite scroll"
+msgstr "Бесконечная прокрутка"
 
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Ð\98Ñ\81Ñ\82оÑ\80иÑ\8f Ð¾Ð±Ñ\89ениÑ\8f"
+#: mod/settings.php:1020
+msgid "Automatic updates only at the top of the network page"
+msgstr "Ð\90вÑ\82омаÑ\82иÑ\87еÑ\81ки Ð¾Ð±Ð½Ð¾Ð²Ð»Ñ\8fÑ\82Ñ\8c Ñ\82олÑ\8cко Ð¿Ñ\80и Ð½Ð°Ñ\85ождении Ð²Ð²ÐµÑ\80Ñ\85Ñ\83 Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\8b \"СеÑ\82Ñ\8c\""
 
-#: mod/localtime.php:26
+#: mod/settings.php:1021
+msgid "Bandwith Saver Mode"
+msgstr "Режим экономии трафика"
+
+#: mod/settings.php:1021
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах."
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr "Если включено, то включенный контент не отображается при автоматическом обновлении, он будет показан только при перезагрузке страницы."
 
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC время: %s"
+#: mod/settings.php:1023
+msgid "General Theme Settings"
+msgstr "Общие настройки тем"
 
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Ваш часовой пояс: %s"
+#: mod/settings.php:1024
+msgid "Custom Theme Settings"
+msgstr "Личные настройки тем"
 
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Ваше изменённое время: %s"
+#: mod/settings.php:1025
+msgid "Content Settings"
+msgstr "Настройки контента"
 
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Выберите пожалуйста ваш часовой пояс:"
+#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
+#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
+#: view/theme/vier/config.php:114
+msgid "Theme settings"
+msgstr "Настройки темы"
 
-#: mod/lockview.php:32 mod/lockview.php:40
-msgid "Remote privacy information not available."
-msgstr "Личная информация удаленно недоступна."
-
-#: mod/lockview.php:49
-msgid "Visible to:"
-msgstr "Кто может видеть:"
-
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Не найдено действительного аккаунта."
-
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту."
-
-#: mod/lostpass.php:41
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr ""
-
-#: mod/lostpass.php:52
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr ""
-
-#: mod/lostpass.php:71
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Запрос на сброс пароля получен %s"
-
-#: mod/lostpass.php:91
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."
-
-#: mod/lostpass.php:111
-msgid "Your password has been reset as requested."
-msgstr "Ваш пароль был сброшен по требованию."
-
-#: mod/lostpass.php:112
-msgid "Your new password is"
-msgstr "Ваш новый пароль"
-
-#: mod/lostpass.php:113
-msgid "Save or copy your new password - and then"
-msgstr "Сохраните или скопируйте новый пароль - и затем"
-
-#: mod/lostpass.php:114
-msgid "click here to login"
-msgstr "нажмите здесь для входа"
-
-#: mod/lostpass.php:115
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа."
-
-#: mod/lostpass.php:125
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr ""
-
-#: mod/lostpass.php:131
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr ""
-
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Ваш пароль был изменен %s"
-
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Забыли пароль?"
-
-#: mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."
-
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Сброс"
-
-#: mod/maintenance.php:20
-msgid "System down for maintenance"
-msgstr "Система закрыта на техническое обслуживание"
-
-#: mod/manage.php:141
-msgid "Manage Identities and/or Pages"
-msgstr "Управление идентификацией и / или страницами"
-
-#: mod/manage.php:142
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr ""
-
-#: mod/manage.php:143
-msgid "Select an identity to manage: "
-msgstr "Выберите идентификацию для управления: "
-
-#: mod/match.php:35
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию."
-
-#: mod/match.php:88
-msgid "is interested in:"
-msgstr "интересуется:"
-
-#: mod/match.php:102
-msgid "Profile Match"
-msgstr "Похожие профили"
-
-#: mod/message.php:60 mod/wallmessage.php:50
-msgid "No recipient selected."
-msgstr "Не выбран получатель."
-
-#: mod/message.php:64
-msgid "Unable to locate contact information."
-msgstr "Не удалось найти контактную информацию."
-
-#: mod/message.php:67 mod/wallmessage.php:56
-msgid "Message could not be sent."
-msgstr "Сообщение не может быть отправлено."
-
-#: mod/message.php:70 mod/wallmessage.php:59
-msgid "Message collection failure."
-msgstr "Неудача коллекции сообщения."
-
-#: mod/message.php:73 mod/wallmessage.php:62
-msgid "Message sent."
-msgstr "Сообщение отправлено."
-
-#: mod/message.php:204
-msgid "Do you really want to delete this message?"
-msgstr "Вы действительно хотите удалить это сообщение?"
-
-#: mod/message.php:224
-msgid "Message deleted."
-msgstr "Сообщение удалено."
-
-#: mod/message.php:255
-msgid "Conversation removed."
-msgstr "Беседа удалена."
-
-#: mod/message.php:322 mod/wallmessage.php:126
-msgid "Send Private Message"
-msgstr "Отправить личное сообщение"
-
-#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128
-msgid "To:"
-msgstr "Кому:"
-
-#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129
-msgid "Subject:"
-msgstr "Тема:"
-
-#: mod/message.php:364
-msgid "No messages."
-msgstr "Нет сообщений."
-
-#: mod/message.php:403
-msgid "Message not available."
-msgstr "Сообщение не доступно."
-
-#: mod/message.php:477
-msgid "Delete message"
-msgstr "Удалить сообщение"
-
-#: mod/message.php:503 mod/message.php:583
-msgid "Delete conversation"
-msgstr "Удалить историю общения"
-
-#: mod/message.php:505
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя."
+#: mod/settings.php:1110
+msgid "Account Types"
+msgstr "Тип учетной записи"
 
-#: mod/message.php:509
-msgid "Send Reply"
-msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð¾Ñ\82веÑ\82"
+#: mod/settings.php:1111
+msgid "Personal Page Subtypes"
+msgstr "Ð\9fодÑ\82ипÑ\8b Ð»Ð¸Ñ\87ной Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\8b"
 
-#: mod/message.php:553
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Неизвестный отправитель - %s"
+#: mod/settings.php:1112
+msgid "Community Forum Subtypes"
+msgstr "Подтипы форума сообщества"
 
-#: mod/message.php:555
-#, php-format
-msgid "You and %s"
-msgstr "Вы и %s"
+#: mod/settings.php:1119
+msgid "Personal Page"
+msgstr "Личная страница"
 
-#: mod/message.php:557
-#, php-format
-msgid "%s and You"
-msgstr "%s и Вы"
+#: mod/settings.php:1120
+msgid "This account is a regular personal profile"
+msgstr "Этот аккаунт является обычным личным профилем"
 
-#: mod/message.php:586
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: mod/settings.php:1123
+msgid "Organisation Page"
+msgstr "Организационная страница"
 
-#: mod/message.php:589
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d сообщение"
-msgstr[1] "%d сообщений"
-msgstr[2] "%d сообщений"
-msgstr[3] "%d сообщений"
+#: mod/settings.php:1124
+msgid "This account is a profile for an organisation"
+msgstr "Этот аккаунт является профилем организации"
 
-#: mod/mood.php:134
-msgid "Mood"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оение"
+#: mod/settings.php:1127
+msgid "News Page"
+msgstr "Ð\9dовоÑ\81Ñ\82наÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а"
 
-#: mod/mood.php:135
-msgid "Set your current mood and tell your friends"
-msgstr "Ð\9dапиÑ\88иÑ\82е Ð¾ Ð²Ð°Ñ\88ем Ð½Ð°Ñ\81Ñ\82Ñ\80оении Ð¸ Ñ\80аÑ\81Ñ\81кажиÑ\82е Ñ\81воим Ð´Ñ\80Ñ\83зÑ\8cÑ\8fм"
+#: mod/settings.php:1128
+msgid "This account is a news account/reflector"
+msgstr "ЭÑ\82оÑ\82 Ð°ÐºÐºÐ°Ñ\83нÑ\82 Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ð½Ð¾Ñ\81Ñ\82нÑ\8bм/Ñ\80еÑ\84лекÑ\82оÑ\80ом"
 
-#: mod/network.php:190 mod/search.php:25
-msgid "Remove term"
-msgstr "УдалиÑ\82Ñ\8c Ñ\8dлеменÑ\82"
+#: mod/settings.php:1131
+msgid "Community Forum"
+msgstr "ФоÑ\80Ñ\83м Ñ\81ообÑ\89еÑ\81Ñ\82ва"
 
-#: mod/network.php:397
-#, php-format
+#: mod/settings.php:1132
 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] "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения."
-msgstr[1] "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения."
-msgstr[2] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения."
-msgstr[3] "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения."
-
-#: mod/network.php:400
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Сообщения в этой группе не будут отправлены следующим получателям."
-
-#: mod/network.php:528
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
-
-#: mod/network.php:533
-msgid "Invalid contact."
-msgstr "Недопустимый контакт."
-
-#: mod/network.php:810
-msgid "Commented Order"
-msgstr "Последние комментарии"
-
-#: mod/network.php:813
-msgid "Sort by Comment Date"
-msgstr "Сортировать по дате комментария"
+"This account is a community forum where people can discuss with each other"
+msgstr "Эта учетная запись является форумом сообщества, где люди могут обсуждать что-то друг с другом"
 
-#: mod/network.php:818
-msgid "Posted Order"
-msgstr "Ð\9bенÑ\82а Ð·Ð°Ð¿Ð¸Ñ\81ей"
+#: mod/settings.php:1135
+msgid "Normal Account Page"
+msgstr "СÑ\82андаÑ\80Ñ\82наÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
 
-#: mod/network.php:821
-msgid "Sort by Post Date"
-msgstr "СоÑ\80Ñ\82иÑ\80оваÑ\82Ñ\8c Ð¿Ð¾ Ð´Ð°Ñ\82е Ð¾Ñ\82пÑ\80авки"
+#: mod/settings.php:1136
+msgid "This account is a normal personal profile"
+msgstr "ЭÑ\82оÑ\82 Ð°ÐºÐºÐ°Ñ\83нÑ\82 Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ð¾Ð±Ñ\8bÑ\87нÑ\8bм Ð¿ÐµÑ\80Ñ\81оналÑ\8cнÑ\8bм Ð¿Ñ\80оÑ\84илем"
 
-#: mod/network.php:832
-msgid "Posts that mention or involve you"
-msgstr "Ð\9fоÑ\81Ñ\82Ñ\8b ÐºÐ¾Ñ\82оÑ\80Ñ\8bе Ñ\83поминаÑ\8eÑ\82 Ð²Ð°Ñ\81 Ð¸Ð»Ð¸ Ð² ÐºÐ¾Ñ\82оÑ\80Ñ\8bÑ\85 Ð²Ñ\8b Ñ\83Ñ\87аÑ\81Ñ\82вÑ\83еÑ\82е"
+#: mod/settings.php:1139
+msgid "Soapbox Page"
+msgstr "Ð\9fеÑ\81оÑ\87ниÑ\86а"
 
-#: mod/network.php:840
-msgid "New"
-msgstr "Ð\9dовÑ\8bй"
+#: mod/settings.php:1140
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Ð\90вÑ\82омаÑ\82иÑ\87еÑ\81ки Ð¾Ð´Ð¾Ð±Ñ\80Ñ\8fÑ\8eÑ\82Ñ\81Ñ\8f Ð²Ñ\81е Ð¿Ð¾Ð´ÐºÐ»Ñ\8eÑ\87ениÑ\8f / Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f, \"Ñ\82олÑ\8cко Ð´Ð»Ñ\8f Ñ\87Ñ\82ениÑ\8f\" Ð¿Ð¾ÐºÐ»Ð¾Ð½Ð½Ð¸ÐºÐ°Ð¼Ð¸"
 
-#: mod/network.php:843
-msgid "Activity Stream - by date"
-msgstr "Ð\9bенÑ\82а Ð°ÐºÑ\82ивноÑ\81Ñ\82и - Ð¿Ð¾ Ð´Ð°Ñ\82е"
+#: mod/settings.php:1143
+msgid "Public Forum"
+msgstr "Ð\9fÑ\83блиÑ\87нÑ\8bй Ñ\84оÑ\80Ñ\83м"
 
-#: mod/network.php:851
-msgid "Shared Links"
-msgstr "СÑ\81Ñ\8bлки, ÐºÐ¾Ñ\82оÑ\80Ñ\8bми Ð¿Ð¾Ð´ÐµÐ»Ð¸Ð»Ð¸Ñ\81Ñ\8c"
+#: mod/settings.php:1144
+msgid "Automatically approve all contact requests"
+msgstr "Ð\90вÑ\82омаÑ\82иÑ\87еÑ\81ки Ð¿Ñ\80инимаÑ\82Ñ\8c Ð²Ñ\81е Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b Ñ\81оединениÑ\8f."
 
-#: mod/network.php:854
-msgid "Interesting Links"
-msgstr "Интересные ссылки"
+#: mod/settings.php:1147
+msgid "Automatic Friend Page"
+msgstr "\"Автоматический друг\" страница"
 
-#: mod/network.php:862
-msgid "Starred"
-msgstr "Ð\9fомеÑ\87еннÑ\8bй"
+#: mod/settings.php:1148
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Ð\90вÑ\82омаÑ\82иÑ\87еÑ\81ки Ð¾Ð´Ð¾Ð±Ñ\80Ñ\8fÑ\8eÑ\82Ñ\81Ñ\8f Ð²Ñ\81е Ð¿Ð¾Ð´ÐºÐ»Ñ\8eÑ\87ениÑ\8f / Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f, Ñ\80аÑ\81Ñ\88иÑ\80Ñ\8fеÑ\82Ñ\81Ñ\8f Ñ\81пиÑ\81ок Ð´Ñ\80Ñ\83зей"
 
-#: mod/network.php:865
-msgid "Favourite Posts"
-msgstr "Ð\98збÑ\80аннÑ\8bе Ð¿Ð¾Ñ\81Ñ\82Ñ\8b"
+#: mod/settings.php:1151
+msgid "Private Forum [Experimental]"
+msgstr "Ð\9bиÑ\87нÑ\8bй Ñ\84оÑ\80Ñ\83м [Ñ\8dкÑ\81пеÑ\80именÑ\82алÑ\8cно]"
 
-#: mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Ð\94обÑ\80о Ð¿Ð¾Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ\82Ñ\8c Ð² Friendica"
+#: mod/settings.php:1152
+msgid "Private forum - approved members only"
+msgstr "Ð\9fÑ\80иваÑ\82нÑ\8bй Ñ\84оÑ\80Ñ\83м - Ñ\80азÑ\80еÑ\88ено Ñ\82олÑ\8cко Ñ\83Ñ\87аÑ\81Ñ\82никам"
 
-#: mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Новый контрольный список участников"
+#: mod/settings.php:1163
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/newmember.php:12
-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 "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на  вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет."
+#: mod/settings.php:1163
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
 
-#: mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Ð\9dаÑ\87ало Ñ\80абоÑ\82Ñ\8b"
+#: mod/settings.php:1171
+msgid "Publish your default profile in your local site directory?"
+msgstr "Ð\9fÑ\83бликоваÑ\82Ñ\8c Ð²Ð°Ñ\88 Ð¿Ñ\80оÑ\84илÑ\8c Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e Ð² Ð²Ð°Ñ\88ем Ð»Ð¾ÐºÐ°Ð»Ñ\8cном ÐºÐ°Ñ\82алоге Ð½Ð° Ñ\81айÑ\82е?"
 
-#: mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica тур"
+#: mod/settings.php:1171
+msgid "Your profile may be visible in public."
+msgstr ""
 
-#: mod/newmember.php:18
-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 "На вашей странице <em>Быстрый старт</em> - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним."
+#: mod/settings.php:1177
+msgid "Publish your default profile in the global social directory?"
+msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
 
-#: mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ð\9fеÑ\80ейÑ\82и Ðº Ð²Ð°Ñ\88им Ð½Ð°Ñ\81Ñ\82Ñ\80ойкам"
+#: mod/settings.php:1184
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "СкÑ\80Ñ\8bваÑ\82Ñ\8c Ð²Ð°Ñ\88 Ñ\81пиÑ\81ок ÐºÐ¾Ð½Ñ\82акÑ\82ов/дÑ\80Ñ\83зей Ð¾Ñ\82 Ð¿Ð¾Ñ\81еÑ\82иÑ\82елей Ð²Ð°Ñ\88его Ð¿Ñ\80оÑ\84илÑ\8f Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e?"
 
-#: mod/newmember.php:26
+#: mod/settings.php:1188
 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 "На вашей странице <em>Настройки</em> - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети."
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Если включено, то мы не сможем отправлять публичные сообщения в Diaspora или другую сеть."
 
-#: mod/newmember.php:28
-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 "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
+#: mod/settings.php:1193
+msgid "Allow friends to post to your profile page?"
+msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
 
-#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/settings.php:1198
+msgid "Allow friends to tag your posts?"
+msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ð´Ñ\80Ñ\83зÑ\8cÑ\8fм Ð¾Ñ\82меÑ\87Ñ\8fÑ\82Ñ\8c Ð²Ð°Ñ\88и Ñ\81ообÑ\89ениÑ\8f?"
 
-#: mod/newmember.php:36
-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 "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."
+#: mod/settings.php:1203
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Позвольть предлогать Вам потенциальных друзей?"
 
-#: mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð¿Ñ\80оÑ\84илÑ\8c"
+#: mod/settings.php:1208
+msgid "Permit unknown people to send you private mail?"
+msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ð½ÐµÐ·Ð½Ð°ÐºÐ¾Ð¼Ñ\8bм Ð»Ñ\8eдÑ\8fм Ð¾Ñ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ð²Ð°Ð¼ Ð»Ð¸Ñ\87нÑ\8bе Ñ\81ообÑ\89ениÑ\8f?"
 
-#: mod/newmember.php:38
-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 "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."
+#: mod/settings.php:1216
+msgid "Profile is <strong>not published</strong>."
+msgstr "Профиль <strong>не публикуется</strong>."
 
-#: mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Ключевые слова профиля"
+#: mod/settings.php:1224
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Ваш адрес: <strong>'%s'</strong> или '%s'."
 
-#: mod/newmember.php:40
-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 "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."
+#: mod/settings.php:1231
+msgid "Automatically expire posts after this many days:"
+msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
 
-#: mod/newmember.php:44
-msgid "Connecting"
-msgstr "Ð\9fодклÑ\8eÑ\87ение"
+#: mod/settings.php:1231
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Ð\95Ñ\81ли Ð¿Ñ\83Ñ\81Ñ\82о, Ñ\81Ñ\80ок Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f Ñ\81ообÑ\89ений Ð½Ðµ Ð±Ñ\83деÑ\82 Ð¾Ð³Ñ\80аниÑ\87ен. Ð¡Ð¾Ð¾Ð±Ñ\89ениÑ\8f Ñ\81 Ð¸Ñ\81Ñ\82екÑ\88им Ñ\81Ñ\80оком Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f Ð±Ñ\83дÑ\83Ñ\82 Ñ\83даленÑ\8b"
 
-#: mod/newmember.php:51
-msgid "Importing Emails"
-msgstr "Ð\98мпоÑ\80Ñ\82иÑ\80ование Email-ов"
+#: mod/settings.php:1232
+msgid "Advanced expiration settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\80аÑ\81Ñ\88иÑ\80енного Ð¾ÐºÐ¾Ð½Ñ\87аниÑ\8f Ñ\81Ñ\80ока Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f"
 
-#: mod/newmember.php:51
-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 "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты"
+#: mod/settings.php:1233
+msgid "Advanced Expiration"
+msgstr "Расширенное окончание срока действия"
 
-#: mod/newmember.php:53
-msgid "Go to Your Contacts Page"
-msgstr "Ð\9fеÑ\80ейÑ\82и Ð½Ð° Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\83 Ð²Ð°Ñ\88иÑ\85 ÐºÐ¾Ð½Ñ\82акÑ\82ов"
+#: mod/settings.php:1234
+msgid "Expire posts:"
+msgstr "СÑ\80ок Ñ\85Ñ\80анениÑ\8f Ñ\81ообÑ\89ений:"
 
-#: mod/newmember.php:53
-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 "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог <em>Добавить новый контакт</em>."
+#: mod/settings.php:1235
+msgid "Expire personal notes:"
+msgstr "Срок хранения личных заметок:"
 
-#: mod/newmember.php:55
-msgid "Go to Your Site's Directory"
-msgstr "Ð\9fеÑ\80ейÑ\82и Ð² ÐºÐ°Ñ\82алог Ð²Ð°Ñ\88его Ñ\81айÑ\82а"
+#: mod/settings.php:1236
+msgid "Expire starred posts:"
+msgstr "СÑ\80ок Ñ\85Ñ\80анениÑ\8f Ñ\83Ñ\81еÑ\8fннÑ\8bÑ\85 Ñ\81ообÑ\89ений:"
 
-#: mod/newmember.php:55
-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 "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."
+#: mod/settings.php:1237
+msgid "Expire photos:"
+msgstr "Срок хранения фотографий:"
 
-#: mod/newmember.php:57
-msgid "Finding New People"
-msgstr "Ð\9fоиÑ\81к Ð»Ñ\8eдей"
+#: mod/settings.php:1238
+msgid "Only expire posts by others:"
+msgstr "ТолÑ\8cко Ñ\83Ñ\81Ñ\82аÑ\80евÑ\88ие Ð¿Ð¾Ñ\81Ñ\82Ñ\8b Ð´Ñ\80Ñ\83гиÑ\85:"
 
-#: mod/newmember.php:57
-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 "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем  искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов."
+#: mod/settings.php:1269
+msgid "Account Settings"
+msgstr "Настройки аккаунта"
 
-#: mod/newmember.php:65
-msgid "Group Your Contacts"
-msgstr "Ð\93Ñ\80Ñ\83ппа \"ваÑ\88и ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b\""
+#: mod/settings.php:1277
+msgid "Password Settings"
+msgstr "Смена Ð¿Ð°Ñ\80олÑ\8f"
 
-#: mod/newmember.php:65
-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 "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."
+#: mod/settings.php:1279
+msgid "Leave password fields blank unless changing"
+msgstr "Оставьте поля пароля пустыми, если он не изменяется"
 
-#: mod/newmember.php:68
-msgid "Why Aren't My Posts Public?"
-msgstr "Ð\9fоÑ\87емÑ\83 Ð¼Ð¾Ð¸ Ð¿Ð¾Ñ\81Ñ\82Ñ\8b Ð½Ðµ Ð¿Ñ\83блиÑ\87нÑ\8bе?"
+#: mod/settings.php:1280
+msgid "Current Password:"
+msgstr "ТекÑ\83Ñ\89ий Ð¿Ð°Ñ\80олÑ\8c:"
 
-#: mod/newmember.php:68
-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 уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше."
+#: mod/settings.php:1280 mod/settings.php:1281
+msgid "Your current password to confirm the changes"
+msgstr "Ваш текущий пароль, для подтверждения изменений"
 
-#: mod/newmember.php:73
-msgid "Getting Help"
-msgstr "Ð\9fолÑ\83Ñ\87иÑ\82Ñ\8c Ð¿Ð¾Ð¼Ð¾Ñ\89Ñ\8c"
+#: mod/settings.php:1281
+msgid "Password:"
+msgstr "Ð\9fаÑ\80олÑ\8c:"
 
-#: mod/newmember.php:77
-msgid "Go to the Help Section"
-msgstr "Ð\9fеÑ\80ейÑ\82и Ð² Ñ\80аздел Ñ\81пÑ\80авки"
+#: mod/settings.php:1285
+msgid "Basic Settings"
+msgstr "Ð\9eÑ\81новнÑ\8bе Ð¿Ð°Ñ\80амеÑ\82Ñ\80Ñ\8b"
 
-#: mod/newmember.php:77
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса."
+#: mod/settings.php:1287
+msgid "Email Address:"
+msgstr "Адрес электронной почты:"
 
-#: mod/nogroup.php:65
-msgid "Contacts who are not members of a group"
-msgstr "Ð\9aонÑ\82акÑ\82Ñ\8b, ÐºÐ¾Ñ\82оÑ\80Ñ\8bе Ð½Ðµ Ñ\8fвлÑ\8fÑ\8eÑ\82Ñ\81Ñ\8f Ñ\87ленами Ð³Ñ\80Ñ\83ппÑ\8b"
+#: mod/settings.php:1288
+msgid "Your Timezone:"
+msgstr "Ð\92аÑ\88 Ñ\87аÑ\81овой Ð¿Ð¾Ñ\8fÑ\81:"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Ð\9dевеÑ\80нÑ\8bй Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\82оÑ\80 Ð·Ð°Ð¿Ñ\80оÑ\81а."
+#: mod/settings.php:1289
+msgid "Your Language:"
+msgstr "Ð\92аÑ\88 Ñ\8fзÑ\8bк:"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:258
-msgid "Discard"
-msgstr "Отказаться"
+#: mod/settings.php:1289
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма"
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "УведомлениÑ\8f Ñ\81еÑ\82и"
+#: mod/settings.php:1290
+msgid "Default Post Location:"
+msgstr "Ð\9cеÑ\81Ñ\82онаÑ\85ождение Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e:"
 
-#: mod/notifications.php:111 mod/notify.php:69
-msgid "System Notifications"
-msgstr "УведомлениÑ\8f Ñ\81иÑ\81Ñ\82емÑ\8b"
+#: mod/settings.php:1291
+msgid "Use Browser Location:"
+msgstr "Ð\98Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ð¾Ð¿Ñ\80еделение Ð¼ÐµÑ\81Ñ\82оположениÑ\8f Ð±Ñ\80аÑ\83зеÑ\80ом:"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Ð\9bиÑ\87нÑ\8bе Ñ\83ведомлениÑ\8f"
+#: mod/settings.php:1294
+msgid "Security and Privacy Settings"
+msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b Ð±ÐµÐ·Ð¾Ð¿Ð°Ñ\81ноÑ\81Ñ\82и Ð¸ ÐºÐ¾Ð½Ñ\84иденÑ\86иалÑ\8cноÑ\81Ñ\82и"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "УведомлениÑ\8f"
+#: mod/settings.php:1296
+msgid "Maximum Friend Requests/Day:"
+msgstr "Ð\9cакÑ\81имÑ\83м Ð·Ð°Ð¿Ñ\80оÑ\81ов Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f Ð² Ð´ÐµÐ½Ñ\8c:"
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Показать проигнорированные запросы"
+#: mod/settings.php:1296 mod/settings.php:1326
+msgid "(to prevent spam abuse)"
+msgstr "(для предотвращения спама)"
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ð¿Ñ\80оигноÑ\80иÑ\80ованнÑ\8bе Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b"
+#: mod/settings.php:1297
+msgid "Default Post Permissions"
+msgstr "РазÑ\80еÑ\88ение Ð½Ð° Ñ\81ообÑ\89ениÑ\8f Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
 
-#: mod/notifications.php:164 mod/notifications.php:228
-msgid "Notification type: "
-msgstr "Тип уведомления: "
+#: mod/settings.php:1298
+msgid "(click to open/close)"
+msgstr "(нажмите, чтобы открыть / закрыть)"
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "предложено юзером %s"
+#: mod/settings.php:1309
+msgid "Default Private Post"
+msgstr "Личное сообщение по умолчанию"
 
-#: mod/notifications.php:173 mod/notifications.php:246
-msgid "Post a new friend activity"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80оение"
+#: mod/settings.php:1310
+msgid "Default Public Post"
+msgstr "Ð\9fÑ\83блиÑ\87ное Ñ\81ообÑ\89ение Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
 
-#: mod/notifications.php:173 mod/notifications.php:246
-msgid "if applicable"
-msgstr "еÑ\81ли Ñ\82Ñ\80ебÑ\83еÑ\82Ñ\81Ñ\8f"
+#: mod/settings.php:1314
+msgid "Default Permissions for New Posts"
+msgstr "Ð\9fÑ\80ава Ð´Ð»Ñ\8f Ð½Ð¾Ð²Ñ\8bÑ\85 Ð·Ð°Ð¿Ð¸Ñ\81ей Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "УÑ\82веÑ\80ждениÑ\8f, Ð¾ ÐºÐ¾Ñ\82оÑ\80Ñ\8bÑ\85 Ð´Ð¾Ð»Ð¶Ð½Ð¾ Ð±Ñ\8bÑ\82Ñ\8c Ð²Ð°Ð¼ Ð¸Ð·Ð²ÐµÑ\81Ñ\82но: "
+#: mod/settings.php:1326
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Ð\9cакÑ\81ималÑ\8cное ÐºÐ¾Ð»Ð¸Ñ\87еÑ\81Ñ\82во Ð»Ð¸Ñ\87нÑ\8bÑ\85 Ñ\81ообÑ\89ений Ð¾Ñ\82 Ð½ÐµÐ·Ð½Ð°ÐºÐ¾Ð¼Ñ\8bÑ\85 Ð»Ñ\8eдей Ð² Ð´ÐµÐ½Ñ\8c:"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "да"
+#: mod/settings.php:1329
+msgid "Notification Settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ñ\83ведомлений"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "неÑ\82"
+#: mod/settings.php:1330
+msgid "By default post a status message when:"
+msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ñ\81оÑ\81Ñ\82оÑ\8fние Ð¾ Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81е Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e, ÐµÑ\81ли:"
 
-#: mod/notifications.php:197 mod/notifications.php:202
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Ð\94олжно Ð»Ð¸ Ð²Ð°Ñ\88е Ñ\81оединение Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð²Ñ\83Ñ\85Ñ\81Ñ\82оÑ\80онним Ð¸Ð»Ð¸ Ð½ÐµÑ\82?"
+#: mod/settings.php:1331
+msgid "accepting a friend request"
+msgstr "пÑ\80инÑ\8fÑ\82ие Ð·Ð°Ð¿Ñ\80оÑ\81а Ð½Ð° Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f"
 
-#: mod/notifications.php:198 mod/notifications.php:203
-#, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него."
+#: mod/settings.php:1332
+msgid "joining a forum/community"
+msgstr "вступление в сообщество/форум"
 
-#: mod/notifications.php:199
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."
+#: mod/settings.php:1333
+msgid "making an <em>interesting</em> profile change"
+msgstr "сделать изменения в <em>настройках интересов</em> профиля"
 
-#: mod/notifications.php:204
-#, php-format
-msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."
+#: mod/settings.php:1334
+msgid "Send a notification email when:"
+msgstr "Отправлять уведомление по электронной почте, когда:"
 
-#: mod/notifications.php:215
-msgid "Friend"
-msgstr "Ð\94Ñ\80Ñ\83г"
+#: mod/settings.php:1335
+msgid "You receive an introduction"
+msgstr "Ð\92Ñ\8b Ð¿Ð¾Ð»Ñ\83Ñ\87или Ð·Ð°Ð¿Ñ\80оÑ\81"
 
-#: mod/notifications.php:216
-msgid "Sharer"
-msgstr "УÑ\87аÑ\81Ñ\82ник"
+#: mod/settings.php:1336
+msgid "Your introductions are confirmed"
+msgstr "Ð\92аÑ\88и Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b Ð¿Ð¾Ð´Ñ\82веÑ\80жденÑ\8b"
 
-#: mod/notifications.php:216
-msgid "Subscriber"
-msgstr "Ð\9fодпиÑ\81анÑ\82"
+#: mod/settings.php:1337
+msgid "Someone writes on your profile wall"
+msgstr "Ð\9aÑ\82о-Ñ\82о Ð¿Ð¸Ñ\88еÑ\82 Ð½Ð° Ñ\81Ñ\82ене Ð²Ð°Ñ\88его Ð¿Ñ\80оÑ\84илÑ\8f"
 
-#: mod/notifications.php:266
-msgid "No introductions."
-msgstr "Ð\97апÑ\80оÑ\81ов Ð½ÐµÑ\82."
+#: mod/settings.php:1338
+msgid "Someone writes a followup comment"
+msgstr "Ð\9aÑ\82о-Ñ\82о Ð¿Ð¸Ñ\88еÑ\82 Ð¿Ð¾Ñ\81ледÑ\83Ñ\8eÑ\89ий ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ\82аÑ\80ий"
 
-#: mod/notifications.php:307
-msgid "Show unread"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð½ÐµÐ¿Ñ\80оÑ\87иÑ\82аннÑ\8bе"
+#: mod/settings.php:1339
+msgid "You receive a private message"
+msgstr "Ð\92Ñ\8b Ð¿Ð¾Ð»Ñ\83Ñ\87аеÑ\82е Ð»Ð¸Ñ\87ное Ñ\81ообÑ\89ение"
 
-#: mod/notifications.php:307
-msgid "Show all"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е"
+#: mod/settings.php:1340
+msgid "You receive a friend suggestion"
+msgstr "Ð\92Ñ\8b Ð¿Ð¾Ð»Ñ\83лили Ð¿Ñ\80едложение Ð¾ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ð¸ Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f"
 
-#: mod/notifications.php:313
-#, php-format
-msgid "No more %s notifications."
-msgstr "Больше нет уведомлений о %s."
+#: mod/settings.php:1341
+msgid "You are tagged in a post"
+msgstr "Вы отмечены в посте"
 
-#: mod/notify.php:65
-msgid "No more system notifications."
-msgstr "СиÑ\81Ñ\82емнÑ\8bÑ\85 Ñ\83ведомлений Ð±Ð¾Ð»Ñ\8cÑ\88е Ð½ÐµÑ\82."
+#: mod/settings.php:1342
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Ð\92аÑ\81 Ð¿Ð¾Ñ\82Ñ\8bкали/подÑ\82олкнÑ\83ли/и Ñ\82.д. Ð² Ð¿Ð¾Ñ\81Ñ\82е"
 
-#: mod/oexchange.php:21
-msgid "Post successful."
-msgstr "УÑ\81пеÑ\88но Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¾."
+#: mod/settings.php:1344
+msgid "Activate desktop notifications"
+msgstr "Ð\90кÑ\82ивиÑ\80оваÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð½Ð° Ñ\80абоÑ\87ем Ñ\81Ñ\82оле"
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Ð\9eÑ\88ибка Ð¿Ñ\80оÑ\82окола OpenID. Ð\9dе Ð²Ð¾Ð·Ð²Ñ\80аÑ\89Ñ\91н ID."
+#: mod/settings.php:1344
+msgid "Show desktop popup on new notifications"
+msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð½Ð° Ñ\80абоÑ\87ем Ñ\81Ñ\82оле"
 
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
+#: mod/settings.php:1346
+msgid "Text-only notification emails"
+msgstr "Только текстовые письма"
 
-#: mod/ostatus_subscribe.php:14
-msgid "Subscribing to OStatus contacts"
-msgstr "Ð\9fодпиÑ\81ка Ð½Ð° OStatus-конÑ\82акÑ\82Ñ\8b"
+#: mod/settings.php:1348
+msgid "Send text only notification emails, without the html part"
+msgstr "Ð\9eÑ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ñ\82олÑ\8cко Ñ\82екÑ\81Ñ\82овÑ\8bе Ñ\83ведомлениÑ\8f, Ð±ÐµÐ· HTML"
 
-#: mod/ostatus_subscribe.php:25
-msgid "No contact provided."
-msgstr "Ð\9dе Ñ\83казан ÐºÐ¾Ð½Ñ\82акÑ\82."
+#: mod/settings.php:1350
+msgid "Advanced Account/Page Type Settings"
+msgstr "РаÑ\81Ñ\88иÑ\80еннÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ñ\83Ñ\87Ñ\91Ñ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и"
 
-#: mod/ostatus_subscribe.php:31
-msgid "Couldn't fetch information for contact."
-msgstr "Ð\9dевозможно Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8e Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е."
+#: mod/settings.php:1351
+msgid "Change the behaviour of this account for special situations"
+msgstr "Ð\98змениÑ\82е Ð¿Ð¾Ð²ÐµÐ´ÐµÐ½Ð¸Ðµ Ñ\8dÑ\82ого Ð°ÐºÐºÐ°Ñ\83нÑ\82а Ð² Ñ\81пеÑ\86иалÑ\8cнÑ\8bÑ\85 Ñ\81иÑ\82Ñ\83аÑ\86иÑ\8fÑ\85"
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch friends for contact."
-msgstr "Ð\9dевозможно Ð¿Ð¾Ð»Ñ\83Ñ\87иÑ\82Ñ\8c Ð´Ñ\80Ñ\83зей Ð´Ð»Ñ\8f ÐºÐ¾Ð½Ñ\82акÑ\82а."
+#: mod/settings.php:1354
+msgid "Relocate"
+msgstr "Ð\9fеÑ\80емеÑ\89ение"
 
-#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
-msgid "Done"
-msgstr "Готово"
+#: mod/settings.php:1355
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку."
 
-#: mod/ostatus_subscribe.php:68
-msgid "success"
-msgstr "удачно"
+#: mod/settings.php:1356
+msgid "Resend relocate message to contacts"
+msgstr "Отправить перемещённые сообщения контактам"
 
-#: mod/ostatus_subscribe.php:70
-msgid "failed"
-msgstr "неÑ\83даÑ\87а"
+#: mod/uexport.php:37
+msgid "Export account"
+msgstr "ЭкÑ\81поÑ\80Ñ\82 Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
 
-#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
-msgid "Keep this window open until done."
-msgstr "Держать окно открытым до завершения."
+#: mod/uexport.php:37
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."
+
+#: mod/uexport.php:38
+msgid "Export all"
+msgstr "Экспорт всего"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Не расширенный"
+#: mod/uexport.php:38
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"
 
-#: mod/photos.php:90 mod/photos.php:1876
-msgid "Recent Photos"
-msgstr "Ð\9fоÑ\81ледние Ñ\84оÑ\82о"
+#: mod/videos.php:124
+msgid "Do you really want to delete this video?"
+msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ð²Ð¸Ð´ÐµÐ¾?"
 
-#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878
-msgid "Upload New Photos"
-msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bе Ñ\84оÑ\82о"
+#: mod/videos.php:129
+msgid "Delete Video"
+msgstr "УдалиÑ\82Ñ\8c Ð²Ð¸Ð´Ðµо"
 
-#: mod/photos.php:107 mod/settings.php:36
-msgid "everybody"
-msgstr "каждÑ\8bй"
+#: mod/videos.php:208
+msgid "No videos selected"
+msgstr "Ð\92идео Ð½Ðµ Ð²Ñ\8bбÑ\80ано"
 
-#: mod/photos.php:171
-msgid "Contact information unavailable"
-msgstr "Ð\98нÑ\84оÑ\80маÑ\86иÑ\8f Ð¾ ÐºÐ¾Ð½Ñ\82акÑ\82е Ð½ÐµÐ´Ð¾Ñ\81Ñ\82Ñ\83пна"
+#: mod/videos.php:402
+msgid "Recent Videos"
+msgstr "Ð\9fоÑ\81ледние Ð²Ð¸Ð´ÐµÐ¾"
 
-#: mod/photos.php:192
-msgid "Album not found."
-msgstr "Ð\90лÑ\8cбом Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½."
+#: mod/videos.php:404
+msgid "Upload New Videos"
+msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bе Ð²Ð¸Ð´ÐµÐ¾"
 
-#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247
-msgid "Delete Album"
-msgstr "УдалиÑ\82Ñ\8c Ð°Ð»Ñ\8cбом"
+#: mod/install.php:106
+msgid "Friendica Communications Server - Setup"
+msgstr "Ð\9aоммÑ\83никаÑ\86ионнÑ\8bй Ñ\81еÑ\80веÑ\80 Friendica - Ð\94оÑ\81Ñ\82Ñ\83п"
 
-#: mod/photos.php:235
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ð°Ð»Ñ\8cбом Ð¸ Ð²Ñ\81е ÐµÐ³Ð¾ Ñ\84оÑ\82огÑ\80аÑ\84ии?"
+#: mod/install.php:112
+msgid "Could not connect to database."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð¿Ð¾Ð´ÐºÐ»Ñ\8eÑ\87иÑ\82Ñ\8cÑ\81Ñ\8f Ðº Ð±Ð°Ð·Ðµ Ð´Ð°Ð½Ð½Ñ\8bÑ\85."
 
-#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563
-msgid "Delete Photo"
-msgstr "УдалиÑ\82Ñ\8c Ñ\84оÑ\82о"
+#: mod/install.php:116
+msgid "Could not create table."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ñ\81оздаÑ\82Ñ\8c Ñ\82аблиÑ\86Ñ\83."
 
-#: mod/photos.php:326
-msgid "Do you really want to delete this photo?"
-msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ñ\8dÑ\82Ñ\83 Ñ\84оÑ\82огÑ\80аÑ\84иÑ\8e?"
+#: mod/install.php:122
+msgid "Your Friendica site database has been installed."
+msgstr "Ð\91аза Ð´Ð°Ð½Ð½Ñ\8bÑ\85 Ñ\81айÑ\82а Ñ\83Ñ\81Ñ\82ановлена."
 
-#: mod/photos.php:705
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s отмечен/а/ в %2$s by %3$s"
+#: mod/install.php:127
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
 
-#: mod/photos.php:705
-msgid "a photo"
-msgstr "фото"
+#: mod/install.php:128 mod/install.php:200 mod/install.php:547
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
 
-#: mod/photos.php:803 mod/profile_photo.php:156 mod/wall_upload.php:151
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Изображение превышает лимит размера в %s"
+#: mod/install.php:140
+msgid "Database already in use."
+msgstr "База данных уже используется."
 
-#: mod/photos.php:811
-msgid "Image file is empty."
-msgstr "Файл Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f Ð¿Ñ\83Ñ\81Ñ\82."
+#: mod/install.php:197
+msgid "System check"
+msgstr "Ð\9fÑ\80овеÑ\80иÑ\82Ñ\8c Ñ\81иÑ\81Ñ\82емÑ\83"
 
-#: mod/photos.php:844 mod/profile_photo.php:165 mod/wall_upload.php:186
-msgid "Unable to process image."
-msgstr "Ð\9dевозможно Ð¾Ð±Ñ\80абоÑ\82аÑ\82Ñ\8c Ñ\84оÑ\82о."
+#: mod/install.php:202
+msgid "Check again"
+msgstr "Ð\9fÑ\80овеÑ\80иÑ\82Ñ\8c ÐµÑ\89е Ñ\80аз"
 
-#: mod/photos.php:871 mod/profile_photo.php:315 mod/wall_upload.php:219
-msgid "Image upload failed."
-msgstr "Ð\97агÑ\80Ñ\83зка Ñ\84оÑ\82о Ð½ÐµÑ\83даÑ\87наÑ\8f."
+#: mod/install.php:221
+msgid "Database connection"
+msgstr "Ð\9fодклÑ\8eÑ\87ение Ðº Ð±Ð°Ð·Ðµ Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
 
-#: mod/photos.php:974
-msgid "No photos selected"
-msgstr "Не выбрано фото."
+#: mod/install.php:222
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных."
 
-#: mod/photos.php:1074 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Доступ к этому пункту ограничен."
+#: mod/install.php:223
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
 
-#: mod/photos.php:1134
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий."
+#: mod/install.php:224
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
 
-#: mod/photos.php:1168
-msgid "Upload Photos"
-msgstr "Ð\97агÑ\80Ñ\83зиÑ\82Ñ\8c Ñ\84оÑ\82о"
+#: mod/install.php:228
+msgid "Database Server Name"
+msgstr "Ð\98мÑ\8f Ñ\81еÑ\80веÑ\80а Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
 
-#: mod/photos.php:1172 mod/photos.php:1242
-msgid "New album name: "
-msgstr "Ð\9dазвание Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð°Ð»Ñ\8cбома: "
+#: mod/install.php:229
+msgid "Database Login Name"
+msgstr "Ð\9bогин Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
 
-#: mod/photos.php:1173
-msgid "or existing album name: "
-msgstr "или Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ðµ Ñ\81Ñ\83Ñ\89еÑ\81Ñ\82вÑ\83Ñ\8eÑ\89его Ð°Ð»Ñ\8cбома: "
+#: mod/install.php:230
+msgid "Database Login Password"
+msgstr "Ð\9fаÑ\80олÑ\8c Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
 
-#: mod/photos.php:1174
-msgid "Do not show a status post for this upload"
-msgstr "Ð\9dе Ð¿Ð¾ÐºÐ°Ð·Ñ\8bваÑ\82Ñ\8c Ñ\81Ñ\82аÑ\82Ñ\83Ñ\81\81ообÑ\89ение Ð´Ð»Ñ\8f Ñ\8dÑ\82ой Ð·Ð°ÐºÐ°Ñ\87ки"
+#: mod/install.php:230
+msgid "For security reasons the password must not be empty"
+msgstr "Ð\94лÑ\8f Ð±ÐµÐ·Ð¾Ð¿Ð°Ñ\81ноÑ\81Ñ\82и Ð¿Ð°Ñ\80олÑ\8c Ð½Ðµ Ð´Ð¾Ð»Ð¶ÐµÐ½ Ð±Ñ\8bÑ\82Ñ\8c Ð¿Ñ\83Ñ\81Ñ\82Ñ\8bм"
 
-#: mod/photos.php:1185 mod/photos.php:1567 mod/settings.php:1307
-msgid "Show to Groups"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð² Ð³Ñ\80Ñ\83ппах"
+#: mod/install.php:231
+msgid "Database Name"
+msgstr "Ð\98мÑ\8f Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bх"
 
-#: mod/photos.php:1186 mod/photos.php:1568 mod/settings.php:1308
-msgid "Show to Contacts"
-msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82ам"
+#: mod/install.php:232 mod/install.php:273
+msgid "Site administrator email address"
+msgstr "Ð\90дÑ\80еÑ\81 Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ\81Ñ\82Ñ\80аÑ\82оÑ\80а Ñ\81айÑ\82а"
 
-#: mod/photos.php:1187
-msgid "Private Photo"
-msgstr "Личное фото"
+#: mod/install.php:232 mod/install.php:273
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора."
 
-#: mod/photos.php:1188
-msgid "Public Photo"
-msgstr "Публичное фото"
+#: mod/install.php:236 mod/install.php:276
+msgid "Please select a default timezone for your website"
+msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
 
-#: mod/photos.php:1254
-msgid "Edit Album"
-msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð°Ð»Ñ\8cбом"
+#: mod/install.php:263
+msgid "Site settings"
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\81айÑ\82а"
 
-#: mod/photos.php:1260
-msgid "Show Newest First"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð½Ð¾Ð²Ñ\8bе Ð¿ÐµÑ\80вÑ\8bми"
+#: mod/install.php:277
+msgid "System Language:"
+msgstr "ЯзÑ\8bк Ñ\81иÑ\81Ñ\82емÑ\8b:"
 
-#: mod/photos.php:1262
-msgid "Show Oldest First"
-msgstr "Показать старые первыми"
+#: mod/install.php:277
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем."
 
-#: mod/photos.php:1289 mod/photos.php:1861
-msgid "View Photo"
-msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80 Ñ\84оÑ\82о"
+#: mod/install.php:317
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð½Ð°Ð¹Ñ\82и PATH Ð²ÐµÐ±-Ñ\81еÑ\80веÑ\80а Ð² Ñ\83Ñ\81Ñ\82ановкаÑ\85 PHP."
 
-#: mod/photos.php:1335
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Нет разрешения. Доступ к этому элементу ограничен."
+#: mod/install.php:318
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr ""
 
-#: mod/photos.php:1337
-msgid "Photo not available"
-msgstr "Фото недоступно"
+#: mod/install.php:322
+msgid "PHP executable path"
+msgstr "PHP executable path"
 
-#: mod/photos.php:1395
-msgid "View photo"
-msgstr "Просмотр фото"
+#: mod/install.php:322
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку."
 
-#: mod/photos.php:1395
-msgid "Edit photo"
-msgstr "Редактировать фото"
+#: mod/install.php:327
+msgid "Command line PHP"
+msgstr "Command line PHP"
 
-#: mod/photos.php:1396
-msgid "Use as profile photo"
-msgstr "Ð\98Ñ\81полÑ\8cзоваÑ\82Ñ\8c ÐºÐ°Ðº Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/install.php:336
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Ð\91инаÑ\80ник PHP Ð½Ðµ Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f CLI Ð²ÐµÑ\80Ñ\81ией (можеÑ\82 Ð±Ñ\8bÑ\82Ñ\8c Ñ\8dÑ\82о cgi-fcgi Ð²ÐµÑ\80Ñ\81иÑ\8f)"
 
-#: mod/photos.php:1421
-msgid "View Full Size"
-msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80еÑ\82Ñ\8c Ð¿Ð¾Ð»Ð½Ñ\8bй Ñ\80азмеÑ\80"
+#: mod/install.php:337
+msgid "Found PHP version: "
+msgstr "Ð\9dайденнаÑ\8f PHP Ð²ÐµÑ\80Ñ\81иÑ\8f"
 
-#: mod/photos.php:1507
-msgid "Tags: "
-msgstr "Ключевые слова: "
+#: mod/install.php:339
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: mod/photos.php:1510
-msgid "[Remove any tag]"
-msgstr "[Удалить любое ключевое слово]"
+#: mod/install.php:350
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Не включено \"register_argc_argv\" в установках PHP."
 
-#: mod/photos.php:1549
-msgid "New album name"
-msgstr "Ð\9dазвание Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð°Ð»Ñ\8cбома"
+#: mod/install.php:351
+msgid "This is required for message delivery to work."
+msgstr "ЭÑ\82о Ð½ÐµÐ¾Ð±Ñ\85одимо Ð´Ð»Ñ\8f Ñ\80абоÑ\82Ñ\8b Ð´Ð¾Ñ\81Ñ\82авки Ñ\81ообÑ\89ений."
 
-#: mod/photos.php:1550
-msgid "Caption"
-msgstr "Подпись"
+#: mod/install.php:353
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/photos.php:1551
-msgid "Add a Tag"
-msgstr "Добавить ключевое слово (тег)"
+#: mod/install.php:376
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
 
-#: mod/photos.php:1551
+#: mod/install.php:377
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/photos.php:1552
-msgid "Do not rotate"
-msgstr "Ð\9dе Ð¿Ð¾Ð²Ð¾Ñ\80аÑ\87иваÑ\82Ñ\8c"
+#: mod/install.php:379
+msgid "Generate encryption keys"
+msgstr "Ð\93енеÑ\80аÑ\86иÑ\8f Ñ\88иÑ\84Ñ\80ованÑ\8bÑ\85 ÐºÐ»Ñ\8eÑ\87ей"
 
-#: mod/photos.php:1553
-msgid "Rotate CW (right)"
-msgstr "Поворот по часовой стрелке (направо)"
+#: mod/install.php:386
+msgid "libCurl PHP module"
+msgstr "libCurl PHP модуль"
 
-#: mod/photos.php:1554
-msgid "Rotate CCW (left)"
-msgstr "Поворот против часовой стрелки (налево)"
+#: mod/install.php:387
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP модуль"
 
-#: mod/photos.php:1569
-msgid "Private photo"
-msgstr "Личное фото"
+#: mod/install.php:388
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP модуль"
 
-#: mod/photos.php:1570
-msgid "Public photo"
-msgstr "Публичное фото"
+#: mod/install.php:389
+msgid "PDO or MySQLi PHP module"
+msgstr ""
 
-#: mod/photos.php:1792
-msgid "Map"
-msgstr "Карта"
+#: mod/install.php:390
+msgid "mb_string PHP module"
+msgstr "mb_string PHP модуль"
 
-#: mod/photos.php:1867 mod/videos.php:391
-msgid "View Album"
-msgstr "Просмотреть альбом"
+#: mod/install.php:391
+msgid "XML PHP module"
+msgstr "XML PHP модуль"
 
-#: mod/ping.php:270
-msgid "{0} wants to be your friend"
-msgstr "{0} хочет стать Вашим другом"
+#: mod/install.php:392
+msgid "iconv module"
+msgstr "Модуль iconv"
 
-#: mod/ping.php:285
-msgid "{0} sent you a message"
-msgstr "{0} отправил Вам сообщение"
+#: mod/install.php:396 mod/install.php:398
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/ping.php:300
-msgid "{0} requested registration"
-msgstr "{0} требуемая регистрация"
+#: mod/install.php:396
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
 
-#: mod/poke.php:196
-msgid "Poke/Prod"
-msgstr "Ð\9fоÑ\82Ñ\8bкаÑ\82Ñ\8c\9fоÑ\82олкаÑ\82Ñ\8c"
+#: mod/install.php:404
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим libCURL PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
 
-#: mod/poke.php:197
-msgid "poke, prod or do other things to somebody"
-msgstr "Потыкать, потолкать или сделать что-то еще с кем-то"
+#: mod/install.php:408
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
 
-#: mod/poke.php:198
-msgid "Recipient"
-msgstr "Ð\9fолÑ\83Ñ\87аÑ\82елÑ\8c"
+#: mod/install.php:412
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c OpenSSL, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
 
-#: mod/poke.php:199
-msgid "Choose what you wish to do to recipient"
-msgstr "Выберите действия для получателя"
+#: mod/install.php:416
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
 
-#: mod/poke.php:202
-msgid "Make this post private"
-msgstr "Сделать эту запись личной"
+#: mod/install.php:420
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr ""
 
-#: mod/profile.php:174
-msgid "Tips for New Members"
-msgstr "СовеÑ\82Ñ\8b Ð´Ð»Ñ\8f Ð½Ð¾Ð²Ñ\8bÑ\85 Ñ\83Ñ\87аÑ\81Ñ\82ников"
+#: mod/install.php:424
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c mb_string, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Ð\98зобÑ\80ажение Ð·Ð°Ð³Ñ\80Ñ\83жено, Ð½Ð¾ Ð¾Ð±Ñ\80езка Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f Ð½Ðµ Ñ\83далаÑ\81Ñ\8c."
+#: mod/install.php:428
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Ð\9eÑ\88ибка: Ð½ÐµÐ¾Ð±Ñ\85одим PHP Ð¼Ð¾Ð´Ñ\83лÑ\8c iconv, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен."
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
-#: mod/profile_photo.php:323
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Уменьшение размера изображения [%s] не удалось."
+#: mod/install.php:438
+msgid "Error, XML PHP module required but not installed."
+msgstr "Ошибка, необходим PHP модуль XML, но он не установлен"
 
-#: mod/profile_photo.php:127
+#: mod/install.php:450
 msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82е Ñ\81Ñ\82Ñ\80аниÑ\86Ñ\83 Ñ\81 Ð·Ð°Ð¶Ð°Ñ\82ой ÐºÐ»Ð°Ð²Ð¸Ñ\88ей \"Shift\" Ð´Ð»Ñ\8f Ñ\82ого, Ñ\87Ñ\82обÑ\8b Ñ\83видеÑ\82Ñ\8c Ñ\81вое Ð½Ð¾Ð²Ð¾Ðµ Ñ\84оÑ\82о Ð½ÐµÐ¼ÐµÐ´Ð»ÐµÐ½Ð½Ð¾."
+"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 "Ð\92еб-инÑ\81Ñ\82аллÑ\8fÑ\82оÑ\80Ñ\83 Ñ\82Ñ\80ебÑ\83еÑ\82Ñ\81Ñ\8f Ñ\81оздаÑ\82Ñ\8c Ñ\84айл Ñ\81 Ð¸Ð¼ÐµÐ½ÐµÐ¼ \". htconfig.php\" Ð² Ð²ÐµÑ\80Ñ\85ней Ð¿Ð°Ð¿ÐºÐµ Ð²ÐµÐ±-Ñ\81еÑ\80веÑ\80а, Ð½Ð¾ Ð¾Ð½ Ð½Ðµ Ð² Ñ\81оÑ\81Ñ\82оÑ\8fнии Ñ\8dÑ\82о Ñ\81делаÑ\82Ñ\8c."
 
-#: mod/profile_photo.php:137
-msgid "Unable to process image"
-msgstr "Не удается обработать изображение"
+#: mod/install.php:451
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
 
-#: mod/profile_photo.php:254
-msgid "Upload File:"
-msgstr "Загрузить файл:"
+#: mod/install.php:452
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica."
 
-#: mod/profile_photo.php:255
-msgid "Select a profile:"
-msgstr "Выбрать этот профиль:"
+#: mod/install.php:453
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций."
 
-#: mod/profile_photo.php:257
-msgid "Upload"
-msgstr "Загрузить"
+#: mod/install.php:456
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php is writable"
 
-#: mod/profile_photo.php:260
-msgid "or"
-msgstr "или"
+#: mod/install.php:466
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки."
 
-#: mod/profile_photo.php:260
-msgid "skip this step"
-msgstr "пропустить этот шаг"
+#: mod/install.php:467
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica."
 
-#: mod/profile_photo.php:260
-msgid "select a photo from your photo albums"
-msgstr "выберите фото из ваших фотоальбомов"
+#: mod/install.php:468
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке."
 
-#: mod/profile_photo.php:274
-msgid "Crop Image"
-msgstr "Обрезать изображение"
+#: mod/install.php:469
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке."
 
-#: mod/profile_photo.php:275
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра."
+#: mod/install.php:472
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 доступен для записи"
 
-#: mod/profile_photo.php:277
-msgid "Done Editing"
-msgstr "Редактирование выполнено"
+#: mod/install.php:488
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера.."
 
-#: mod/profile_photo.php:313
-msgid "Image uploaded successfully."
-msgstr "Изображение загружено успешно."
+#: mod/install.php:490
+msgid "Url rewrite is working"
+msgstr "Url rewrite работает"
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Ð\9fÑ\80оÑ\84илÑ\8c Ñ\83дален."
+#: mod/install.php:509
+msgid "ImageMagick PHP extension is not installed"
+msgstr "Ð\9cодÑ\83лÑ\8c PHP ImageMagick Ð½Ðµ Ñ\83Ñ\81Ñ\82ановлен"
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Ð\9fÑ\80оÑ\84илÑ\8c-"
+#: mod/install.php:511
+msgid "ImageMagick PHP extension is installed"
+msgstr "Ð\9cодÑ\83лÑ\8c PHP ImageMagick Ñ\83Ñ\81Ñ\82ановлен"
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
-msgstr "Новый профиль создан."
+#: mod/install.php:513
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick поддерживает GIF"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "Профиль недоступен для клонирования."
+#: mod/install.php:520
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
-msgstr "Необходимо имя профиля."
+#: mod/install.php:545
+msgid "<h1>What next</h1>"
+msgstr "<h1>Что далее</h1>"
 
-#: mod/profiles.php:338
-msgid "Marital Status"
-msgstr "Семейное положение"
+#: mod/install.php:546
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
 
-#: mod/profiles.php:342
-msgid "Romantic Partner"
-msgstr "Ð\9bÑ\8eбимÑ\8bй Ñ\87еловек"
+#: mod/item.php:116
+msgid "Unable to locate original post."
+msgstr "Ð\9dе Ñ\83далоÑ\81Ñ\8c Ð½Ð°Ð¹Ñ\82и Ð¾Ñ\80игиналÑ\8cнÑ\8bй Ð¿Ð¾Ñ\81Ñ\82."
 
-#: mod/profiles.php:354
-msgid "Work/Employment"
-msgstr "РабоÑ\82а/Ð\97анÑ\8fÑ\82оÑ\81Ñ\82Ñ\8c"
+#: mod/item.php:344
+msgid "Empty post discarded."
+msgstr "Ð\9fÑ\83Ñ\81Ñ\82ое Ñ\81ообÑ\89ение Ð¾Ñ\82бÑ\80аÑ\81Ñ\8bваеÑ\82Ñ\81Ñ\8f."
 
-#: mod/profiles.php:357
-msgid "Religion"
-msgstr "РелигиÑ\8f"
+#: mod/item.php:904
+msgid "System error. Post not saved."
+msgstr "СиÑ\81Ñ\82емнаÑ\8f Ð¾Ñ\88ибка. Ð¡Ð¾Ð¾Ð±Ñ\89ение Ð½Ðµ Ñ\81оÑ\85Ñ\80анено."
 
-#: mod/profiles.php:361
-msgid "Political Views"
-msgstr "Политические взгляды"
+#: mod/item.php:995
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica."
 
-#: mod/profiles.php:365
-msgid "Gender"
-msgstr "Пол"
+#: mod/item.php:997
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Вы можете посетить их в онлайне на %s"
 
-#: mod/profiles.php:369
-msgid "Sexual Preference"
-msgstr "Сексуальные предпочтения"
+#: mod/item.php:998
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
 
-#: mod/profiles.php:373
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
+msgstr "%s отправил/а/ обновление."
 
-#: mod/profiles.php:377
-msgid "Homepage"
-msgstr "Ð\94омаÑ\88нÑ\8fÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а"
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
+msgstr "Ð\9dевеÑ\80нÑ\8bй Ð¸Ð´ÐµÐ½Ñ\82иÑ\84икаÑ\82оÑ\80 Ð·Ð°Ð¿Ñ\80оÑ\81а."
 
-#: mod/profiles.php:381 mod/profiles.php:694
-msgid "Interests"
-msgstr "Хобби / Интересы"
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:227
+msgid "Discard"
+msgstr "Отказаться"
 
-#: mod/profiles.php:385
-msgid "Address"
-msgstr "Ð\90дÑ\80еÑ\81"
+#: mod/notifications.php:105
+msgid "Network Notifications"
+msgstr "УведомлениÑ\8f Ñ\81еÑ\82и"
 
-#: mod/profiles.php:392 mod/profiles.php:690
-msgid "Location"
-msgstr "Ð\9cеÑ\81Ñ\82онаÑ\85ождение"
+#: mod/notifications.php:117
+msgid "Personal Notifications"
+msgstr "Ð\9bиÑ\87нÑ\8bе Ñ\83ведомлениÑ\8f"
 
-#: mod/profiles.php:477
-msgid "Profile updated."
-msgstr "Ð\9fÑ\80оÑ\84илÑ\8c Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½."
+#: mod/notifications.php:123
+msgid "Home Notifications"
+msgstr "УведомлениÑ\8f"
 
-#: mod/profiles.php:565
-msgid " and "
-msgstr "и"
+#: mod/notifications.php:152
+msgid "Show Ignored Requests"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð¿Ñ\80оигноÑ\80иÑ\80ованнÑ\8bе Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b"
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "пÑ\83блиÑ\87нÑ\8bй Ð¿Ñ\80оÑ\84илÑ\8c"
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
+msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ð¿Ñ\80оигноÑ\80иÑ\80ованнÑ\8bе Ð·Ð°Ð¿Ñ\80оÑ\81Ñ\8b"
 
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s изменились с %2$s на &ldquo;%3$s&rdquo;"
+#: mod/notifications.php:164 mod/notifications.php:234
+msgid "Notification type: "
+msgstr "Тип уведомления: "
 
-#: mod/profiles.php:577
+#: mod/notifications.php:167
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Посетить профиль %1$s [%2$s]"
+msgid "suggested by %s"
+msgstr "предложено юзером %s"
 
-#: mod/profiles.php:580
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s обновил %2$s, изменив %3$s."
+#: mod/notifications.php:173 mod/notifications.php:252
+msgid "Post a new friend activity"
+msgstr "Настроение"
 
-#: mod/profiles.php:637
-msgid "Hide contacts and friends:"
-msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b Ð¸ Ð´Ñ\80Ñ\83зей:"
+#: mod/notifications.php:173 mod/notifications.php:252
+msgid "if applicable"
+msgstr "еÑ\81ли Ñ\82Ñ\80ебÑ\83еÑ\82Ñ\81Ñ\8f"
 
-#: mod/profiles.php:642
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "СкÑ\80Ñ\8bваÑ\82Ñ\8c Ð²Ð°Ñ\88 Ñ\81пиÑ\81ок ÐºÐ¾Ð½Ñ\82акÑ\82ов / Ð´Ñ\80Ñ\83зей Ð¾Ñ\82 Ð¿Ð¾Ñ\81еÑ\82иÑ\82елей Ñ\8dÑ\82ого Ð¿Ñ\80оÑ\84илÑ\8f?"
+#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
+msgid "Approve"
+msgstr "Ð\9eдобÑ\80иÑ\82Ñ\8c"
 
-#: mod/profiles.php:666
-msgid "Show more profile fields:"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ð±Ð¾Ð»Ñ\8cÑ\88е Ð¿Ð¾Ð»ÐµÐ¹ Ð² Ð¿Ñ\80оÑ\84иле:"
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
+msgstr "УÑ\82веÑ\80ждениÑ\8f, Ð¾ ÐºÐ¾Ñ\82оÑ\80Ñ\8bÑ\85 Ð´Ð¾Ð»Ð¶Ð½Ð¾ Ð±Ñ\8bÑ\82Ñ\8c Ð²Ð°Ð¼ Ð¸Ð·Ð²ÐµÑ\81Ñ\82но: "
 
-#: mod/profiles.php:678
-msgid "Profile Actions"
-msgstr "Ð\94ейÑ\81Ñ\82виÑ\8f Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/notifications.php:196
+msgid "yes"
+msgstr "да"
 
-#: mod/profiles.php:679
-msgid "Edit Profile Details"
-msgstr "РедакÑ\82иÑ\80оваÑ\82Ñ\8c Ð´ÐµÑ\82али Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/notifications.php:196
+msgid "no"
+msgstr "неÑ\82"
 
-#: mod/profiles.php:681
-msgid "Change Profile Photo"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\84оÑ\82о Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/notifications.php:197 mod/notifications.php:202
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Ð\94олжно Ð»Ð¸ Ð²Ð°Ñ\88е Ñ\81оединение Ð±Ñ\8bÑ\82Ñ\8c Ð´Ð²Ñ\83Ñ\85Ñ\81Ñ\82оÑ\80онним Ð¸Ð»Ð¸ Ð½ÐµÑ\82?"
 
-#: mod/profiles.php:682
-msgid "View this profile"
-msgstr "Просмотреть этот профиль"
+#: mod/notifications.php:198 mod/notifications.php:203
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Принимая %s как друга вы позволяете %s читать ему свои посты, а также будете получать оные от него."
 
-#: mod/profiles.php:684
-msgid "Create a new profile using these settings"
-msgstr "Создать новый профиль, используя эти настройки"
+#: mod/notifications.php:199
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."
 
-#: mod/profiles.php:685
-msgid "Clone this profile"
-msgstr "Клонировать этот профиль"
+#: mod/notifications.php:204
+#, php-format
+msgid ""
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него."
 
-#: mod/profiles.php:686
-msgid "Delete this profile"
-msgstr "УдалиÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ð¿Ñ\80оÑ\84илÑ\8c"
+#: mod/notifications.php:215
+msgid "Friend"
+msgstr "Ð\94Ñ\80Ñ\83г"
 
-#: mod/profiles.php:688
-msgid "Basic information"
-msgstr "Ð\9eÑ\81новнаÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
+#: mod/notifications.php:216
+msgid "Sharer"
+msgstr "УÑ\87аÑ\81Ñ\82ник"
 
-#: mod/profiles.php:689
-msgid "Profile picture"
-msgstr "Ð\9aаÑ\80Ñ\82инка Ð¿Ñ\80оÑ\84илÑ\8f"
+#: mod/notifications.php:216
+msgid "Subscriber"
+msgstr "Ð\9fодпиÑ\81анÑ\82"
 
-#: mod/profiles.php:691
-msgid "Preferences"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки"
+#: mod/notifications.php:272
+msgid "No introductions."
+msgstr "Ð\97апÑ\80оÑ\81ов Ð½ÐµÑ\82."
 
-#: mod/profiles.php:692
-msgid "Status information"
-msgstr "СÑ\82аÑ\82Ñ\83Ñ\81"
+#: mod/notifications.php:313
+msgid "Show unread"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð½ÐµÐ¿Ñ\80оÑ\87иÑ\82аннÑ\8bе"
 
-#: mod/profiles.php:693
-msgid "Additional information"
-msgstr "Ð\94ополниÑ\82елÑ\8cнаÑ\8f Ð¸Ð½Ñ\84оÑ\80маÑ\86иÑ\8f"
+#: mod/notifications.php:313
+msgid "Show all"
+msgstr "Ð\9fоказаÑ\82Ñ\8c Ð²Ñ\81е"
 
-#: mod/profiles.php:696
-msgid "Relation"
-msgstr "Отношения"
+#: mod/notifications.php:319
+#, php-format
+msgid "No more %s notifications."
+msgstr "Больше нет уведомлений о %s."
 
-#: mod/profiles.php:700
-msgid "Your Gender:"
-msgstr "Ваш пол:"
+#: mod/ping.php:270
+msgid "{0} wants to be your friend"
+msgstr "{0} хочет стать Вашим другом"
 
-#: mod/profiles.php:701
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
+#: mod/ping.php:285
+msgid "{0} sent you a message"
+msgstr "{0} отправил Вам сообщение"
 
-#: mod/profiles.php:703
-msgid "Example: fishing photography software"
-msgstr "Пример: рыбалка фотографии программное обеспечение"
+#: mod/ping.php:300
+msgid "{0} requested registration"
+msgstr "{0} требуемая регистрация"
 
-#: mod/profiles.php:708
-msgid "Profile Name:"
-msgstr "Ð\98мÑ\8f Ð¿Ñ\80оÑ\84илÑ\8f:"
+#: mod/admin.php:96
+msgid "Theme settings updated."
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\82емÑ\8b Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ñ\8b."
 
-#: mod/profiles.php:710
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому через Интернет."
+#: mod/admin.php:165 mod/admin.php:1054
+msgid "Site"
+msgstr "Сайт"
 
-#: mod/profiles.php:711
-msgid "Your Full Name:"
-msgstr "Ð\92аÑ\88е Ð¿Ð¾Ð»Ð½Ð¾Ðµ Ð¸Ð¼Ñ\8f:"
+#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
+msgid "Users"
+msgstr "Ð\9fолÑ\8cзоваÑ\82ели"
 
-#: mod/profiles.php:712
-msgid "Title/Description:"
-msgstr "Ð\97аголовок / Ð\9eпиÑ\81ание:"
+#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
+msgid "Themes"
+msgstr "ТемÑ\8b"
 
-#: mod/profiles.php:715
-msgid "Street Address:"
-msgstr "Ð\90дÑ\80еÑ\81:"
+#: mod/admin.php:170
+msgid "DB updates"
+msgstr "Ð\9eбновление Ð\91Ð\94"
 
-#: mod/profiles.php:716
-msgid "Locality/City:"
-msgstr "Город / Населенный пункт:"
+#: mod/admin.php:171 mod/admin.php:512
+msgid "Inspect Queue"
+msgstr ""
 
-#: mod/profiles.php:717
-msgid "Region/State:"
-msgstr "Район / Область:"
+#: mod/admin.php:172 mod/admin.php:288
+msgid "Server Blocklist"
+msgstr ""
 
-#: mod/profiles.php:718
-msgid "Postal/Zip Code:"
-msgstr "Почтовый индекс:"
+#: mod/admin.php:173 mod/admin.php:478
+msgid "Federation Statistics"
+msgstr ""
 
-#: mod/profiles.php:719
-msgid "Country:"
-msgstr "СÑ\82Ñ\80ана:"
+#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
+msgid "Logs"
+msgstr "Ð\96Ñ\83Ñ\80налÑ\8b"
 
-#: mod/profiles.php:723
-msgid "Who: (if applicable)"
-msgstr "Ð\9aÑ\82о: (еÑ\81ли Ñ\82Ñ\80ебÑ\83еÑ\82Ñ\81Ñ\8f)"
+#: mod/admin.php:188 mod/admin.php:2084
+msgid "View Logs"
+msgstr "Ð\9fÑ\80оÑ\81моÑ\82Ñ\80 Ð»Ð¾Ð³Ð¾Ð²"
 
-#: mod/profiles.php:723
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
+#: mod/admin.php:189
+msgid "probe address"
+msgstr ""
 
-#: mod/profiles.php:724
-msgid "Since [date]:"
-msgstr "С какого времени [дата]:"
+#: mod/admin.php:190
+msgid "check webfinger"
+msgstr ""
 
-#: mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "РаÑ\81Ñ\81кажиÑ\82е Ð½Ð°Ð¼ Ð¾ Ñ\81ебе ..."
+#: mod/admin.php:197
+msgid "Plugin Features"
+msgstr "Ð\92озможноÑ\81Ñ\82и Ð¿Ð»Ð°Ð³Ð¸Ð½Ð°"
 
-#: mod/profiles.php:727
-msgid "XMPP (Jabber) address:"
-msgstr "Ð\90дÑ\80еÑ\81 XMPP (Jabber):"
+#: mod/admin.php:199
+msgid "diagnostics"
+msgstr "Ð\94иагноÑ\81Ñ\82ика"
 
-#: mod/profiles.php:727
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "Адрес XMPP будет отправлен контактам, чтобы они могли вас добавить."
+#: mod/admin.php:200
+msgid "User registrations waiting for confirmation"
+msgstr "Регистрации пользователей, ожидающие подтверждения"
 
-#: mod/profiles.php:728
-msgid "Homepage URL:"
-msgstr "Адрес домашней странички:"
+#: mod/admin.php:279
+msgid "The blocked domain"
+msgstr ""
 
-#: mod/profiles.php:731
-msgid "Religious Views:"
-msgstr "Религиозные взгляды:"
+#: mod/admin.php:280 mod/admin.php:293
+msgid "The reason why you blocked this domain."
+msgstr ""
 
-#: mod/profiles.php:732
-msgid "Public Keywords:"
-msgstr "Общественные ключевые слова:"
+#: mod/admin.php:281
+msgid "Delete domain"
+msgstr ""
 
-#: mod/profiles.php:732
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
+#: mod/admin.php:281
+msgid "Check to delete this entry from the blocklist"
+msgstr ""
 
-#: mod/profiles.php:733
-msgid "Private Keywords:"
-msgstr "Личные ключевые слова:"
+#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
+#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
+#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
+msgid "Administration"
+msgstr "Администрация"
 
-#: mod/profiles.php:733
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Используется для поиска профилей, никогда не показывается другим)"
+#: mod/admin.php:289
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr ""
 
-#: mod/profiles.php:736
-msgid "Musical interests"
-msgstr "Музыкальные интересы"
+#: mod/admin.php:290
+msgid ""
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr ""
 
-#: mod/profiles.php:737
-msgid "Books, literature"
-msgstr "Книги, литература"
+#: mod/admin.php:291
+msgid "Add new entry to block list"
+msgstr ""
 
-#: mod/profiles.php:738
-msgid "Television"
-msgstr "Телевидение"
+#: mod/admin.php:292
+msgid "Server Domain"
+msgstr ""
 
-#: mod/profiles.php:739
-msgid "Film/dance/culture/entertainment"
-msgstr "Кино / танцы / культура / развлечения"
+#: mod/admin.php:292
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr ""
 
-#: mod/profiles.php:740
-msgid "Hobbies/Interests"
-msgstr "Хобби / Интересы"
+#: mod/admin.php:293
+msgid "Block reason"
+msgstr ""
 
-#: mod/profiles.php:741
-msgid "Love/romance"
-msgstr "Любовь / романтика"
+#: mod/admin.php:294
+msgid "Add Entry"
+msgstr ""
 
-#: mod/profiles.php:742
-msgid "Work/employment"
-msgstr "Работа / занятость"
+#: mod/admin.php:295
+msgid "Save changes to the blocklist"
+msgstr ""
 
-#: mod/profiles.php:743
-msgid "School/education"
-msgstr "Школа / образование"
+#: mod/admin.php:296
+msgid "Current Entries in the Blocklist"
+msgstr ""
 
-#: mod/profiles.php:744
-msgid "Contact information and Social Networks"
-msgstr "Контактная информация и социальные сети"
+#: mod/admin.php:299
+msgid "Delete entry from blocklist"
+msgstr ""
 
-#: mod/profiles.php:788
-msgid "Edit/Manage Profiles"
-msgstr "Редактировать профиль"
+#: mod/admin.php:302
+msgid "Delete entry from blocklist?"
+msgstr ""
 
-#: mod/profperm.php:26 mod/profperm.php:57
-msgid "Invalid profile identifier."
-msgstr "Недопустимый идентификатор профиля."
+#: mod/admin.php:327
+msgid "Server added to blocklist."
+msgstr ""
 
-#: mod/profperm.php:103
-msgid "Profile Visibility Editor"
-msgstr "Редактор видимости профиля"
+#: mod/admin.php:343
+msgid "Site blocklist updated."
+msgstr ""
 
-#: mod/profperm.php:116
-msgid "Visible To"
-msgstr "Видимый для"
+#: mod/admin.php:408
+msgid "unknown"
+msgstr ""
 
-#: mod/profperm.php:132
-msgid "All Contacts (with secure profile access)"
-msgstr "Все контакты (с безопасным доступом к профилю)"
+#: mod/admin.php:471
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr ""
 
-#: mod/register.php:93
+#: mod/admin.php:472
 msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr ""
 
-#: mod/register.php:98
+#: mod/admin.php:484
 #, 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 "Ошибка отправки письма. Вот ваши учетные данные: <br> логин: %s<br> пароль: %s<br><br>Вы сможете изменить пароль после входа."
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr ""
 
-#: mod/register.php:105
-msgid "Registration successful."
-msgstr "Регистрация успешна."
+#: mod/admin.php:514
+msgid "ID"
+msgstr ""
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
-msgstr "Ваша регистрация не может быть обработана."
+#: mod/admin.php:515
+msgid "Recipient Name"
+msgstr ""
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
-msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
+#: mod/admin.php:516
+msgid "Recipient Profile"
+msgstr ""
+
+#: mod/admin.php:518
+msgid "Created"
+msgstr ""
+
+#: mod/admin.php:519
+msgid "Last Tried"
+msgstr ""
 
-#: mod/register.php:198 mod/uimport.php:51
+#: mod/admin.php:520
 msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."
+"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/register.php:226
+#: mod/admin.php:545
+#, php-format
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr ""
 
-#: mod/register.php:227
+#: mod/admin.php:550
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
+msgstr ""
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
-msgstr "Ð\92аÑ\88 OpenID (необÑ\8fзаÑ\82елÑ\8cно):"
+#: mod/admin.php:554 mod/admin.php:1447
+msgid "Normal Account"
+msgstr "Ð\9eбÑ\8bÑ\87нÑ\8bй Ð°ÐºÐºÐ°Ñ\83нÑ\82"
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
-msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð²Ð°Ñ\88 Ð¿Ñ\80оÑ\84илÑ\8c Ð² ÐºÐ°Ñ\82алог Ñ\83Ñ\87аÑ\81Ñ\82ников?"
+#: mod/admin.php:555 mod/admin.php:1448
+msgid "Soapbox Account"
+msgstr "Ð\90ккаÑ\83нÑ\82 Ð\92иÑ\82Ñ\80ина"
 
-#: mod/register.php:267
-msgid "Note for the admin"
-msgstr "СообÑ\89ение Ð´Ð»Ñ\8f Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ\81Ñ\82Ñ\80аÑ\82оÑ\80а"
+#: mod/admin.php:556 mod/admin.php:1449
+msgid "Community/Celebrity Account"
+msgstr "Ð\90ккаÑ\83нÑ\82 Ð¡Ð¾Ð¾Ð±Ñ\89еÑ\81Ñ\82во / Ð\97намениÑ\82оÑ\81Ñ\82Ñ\8c"
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\""
+#: mod/admin.php:557 mod/admin.php:1450
+msgid "Automatic Friend Account"
+msgstr "\"Автоматический друг\" Аккаунт"
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
-msgstr "ЧленÑ\81Ñ\82во Ð½Ð° Ñ\81айÑ\82е Ñ\82олÑ\8cко Ð¿Ð¾ Ð¿Ñ\80иглаÑ\88ениÑ\8e."
+#: mod/admin.php:558
+msgid "Blog Account"
+msgstr "Ð\90ккаÑ\83нÑ\82 Ð±Ð»Ð¾Ð³Ð°"
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr "ID вашего приглашения:"
+#: mod/admin.php:559
+msgid "Private Forum"
+msgstr "Личный форум"
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Ð\92аÑ\88е Ð¿Ð¾Ð»Ð½Ð¾Ðµ Ð¸Ð¼Ñ\8f (напÑ\80имеÑ\80, Ð\98ван Ð\98ванов):"
+#: mod/admin.php:581
+msgid "Message queues"
+msgstr "Ð\9eÑ\87еÑ\80еди Ñ\81ообÑ\89ений"
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Ð\92аÑ\88 Ð°Ð´Ñ\80еÑ\81 Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b"
+#: mod/admin.php:587
+msgid "Summary"
+msgstr "РезÑ\8eме"
 
-#: mod/register.php:283 mod/settings.php:1278
-msgid "New Password:"
-msgstr "Ð\9dовÑ\8bй Ð¿Ð°Ñ\80олÑ\8c:"
+#: mod/admin.php:589
+msgid "Registered users"
+msgstr "Ð\97аÑ\80егиÑ\81Ñ\82Ñ\80иÑ\80ованнÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели"
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
-msgstr "Оставьте пустым для автоматической генерации пароля."
+#: mod/admin.php:591
+msgid "Pending registrations"
+msgstr "Ожидающие регистрации"
 
-#: mod/register.php:284 mod/settings.php:1279
-msgid "Confirm:"
-msgstr "Ð\9fодÑ\82веÑ\80диÑ\82е:"
+#: mod/admin.php:592
+msgid "Version"
+msgstr "Ð\92еÑ\80Ñ\81иÑ\8f"
 
-#: mod/register.php:285
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
+#: mod/admin.php:597
+msgid "Active plugins"
+msgstr "Активные плагины"
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е Ð¿Ñ\81евдоним: "
+#: mod/admin.php:622
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Ð\9dевозможно Ð¾Ð¿Ñ\80еделиÑ\82Ñ\8c Ð±Ð°Ð·Ð¾Ð²Ñ\8bй URL. Ð\9eн Ð´Ð¾Ð»Ð¶ÐµÐ½ Ð¸Ð¼ÐµÑ\82Ñ\8c Ñ\81ледÑ\83Ñ\8eÑ\89ий Ð²Ð¸Ð´ - <scheme>://<domain>"
 
-#: mod/register.php:295 mod/uimport.php:66
-msgid "Import"
-msgstr "Ð\98мпоÑ\80Ñ\82"
+#: mod/admin.php:914
+msgid "Site settings updated."
+msgstr "УÑ\81Ñ\82ановки Ñ\81айÑ\82а Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ñ\8b."
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
-msgstr "Импорт своего профиля в этот экземпляр friendica"
+#: mod/admin.php:971
+msgid "No community page"
+msgstr ""
 
-#: mod/regmod.php:58
-msgid "Account approved."
-msgstr "Аккаунт утвержден."
+#: mod/admin.php:972
+msgid "Public postings from users of this site"
+msgstr ""
 
-#: mod/regmod.php:95
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Регистрация отменена для %s"
+#: mod/admin.php:973
+msgid "Global community page"
+msgstr ""
 
-#: mod/regmod.php:107
-msgid "Please login."
-msgstr "Пожалуйста, войдите с паролем."
+#: mod/admin.php:979
+msgid "At post arrival"
+msgstr ""
 
-#: mod/removeme.php:52 mod/removeme.php:55
-msgid "Remove My Account"
-msgstr "Удалить мой аккаунт"
+#: mod/admin.php:989
+msgid "Users, Global Contacts"
+msgstr ""
 
-#: mod/removeme.php:53
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
+#: mod/admin.php:990
+msgid "Users, Global Contacts/fallback"
+msgstr ""
 
-#: mod/removeme.php:54
-msgid "Please enter your password for verification:"
-msgstr "Ð\9fожалÑ\83йÑ\81Ñ\82а, Ð²Ð²ÐµÐ´Ð¸Ñ\82е Ñ\81вой Ð¿Ð°Ñ\80олÑ\8c Ð´Ð»Ñ\8f Ð¿Ñ\80овеÑ\80ки:"
+#: mod/admin.php:994
+msgid "One month"
+msgstr "Ð\9eдин Ð¼ÐµÑ\81Ñ\8fÑ\86"
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr "Ð\9fеÑ\80еподпиÑ\81аÑ\82Ñ\8cÑ\81Ñ\8f Ð½Ð° OStatus-конÑ\82акÑ\82Ñ\8b."
+#: mod/admin.php:995
+msgid "Three months"
+msgstr "ТÑ\80и Ð¼ÐµÑ\81Ñ\8fÑ\86а"
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr "Ð\9eÑ\88ибка"
+#: mod/admin.php:996
+msgid "Half a year"
+msgstr "Ð\9fол Ð³Ð¾Ð´а"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr "ТолÑ\8cко Ð·Ð°Ñ\80егиÑ\81Ñ\82Ñ\80иÑ\80ованнÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели Ð¼Ð¾Ð³Ñ\83Ñ\82 Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ð¿Ð¾Ð¸Ñ\81к."
+#: mod/admin.php:997
+msgid "One year"
+msgstr "Ð\9eдин Ð³Ð¾Ð´"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr "СлиÑ\88ком Ð¼Ð½Ð¾Ð³Ð¾ Ð·Ð°Ð¿Ñ\80оÑ\81ов"
+#: mod/admin.php:1002
+msgid "Multi user instance"
+msgstr "Ð\9cногополÑ\8cзоваÑ\82елÑ\8cÑ\81кий Ð²Ð¸Ð´"
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Ð\9dезаÑ\80егиÑ\81Ñ\82Ñ\80иÑ\80ованнÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели Ð¼Ð¾Ð³Ñ\83Ñ\82 Ð²Ñ\8bполнÑ\8fÑ\82Ñ\8c Ð¿Ð¾Ð¸Ñ\81к Ñ\80аз Ð² Ð¼Ð¸Ð½Ñ\83Ñ\82Ñ\83."
+#: mod/admin.php:1025
+msgid "Closed"
+msgstr "Ð\97акÑ\80Ñ\8bÑ\82о"
 
-#: mod/search.php:230
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Элементы с тегами: %s"
+#: mod/admin.php:1026
+msgid "Requires approval"
+msgstr "Требуется подтверждение"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Ð\92неÑ\88ний Ð²Ð¸Ð´"
+#: mod/admin.php:1027
+msgid "Open"
+msgstr "Ð\9eÑ\82кÑ\80Ñ\8bÑ\82о"
 
-#: mod/settings.php:67 mod/settings.php:890
-msgid "Social Networks"
-msgstr "СоÑ\86иалÑ\8cнÑ\8bе Ñ\81еÑ\82и"
+#: mod/admin.php:1031
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Ð\9dеÑ\82 Ñ\80ежима SSL, Ñ\81оÑ\81Ñ\82оÑ\8fние SSL Ð½Ðµ Ð±Ñ\83деÑ\82 Ð¾Ñ\82Ñ\81леживаÑ\82Ñ\8cÑ\81Ñ\8f"
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Ð\9fодклÑ\8eÑ\87еннÑ\8bе Ð¿Ñ\80иложениÑ\8f"
+#: mod/admin.php:1032
+msgid "Force all links to use SSL"
+msgstr "Ð\97аÑ\81Ñ\82авиÑ\82Ñ\8c Ð²Ñ\81е Ñ\81Ñ\81Ñ\8bлки Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c SSL"
 
-#: mod/settings.php:95 mod/uexport.php:45
-msgid "Export personal data"
-msgstr "ЭкÑ\81поÑ\80Ñ\82 Ð»Ð¸Ñ\87нÑ\8bÑ\85 Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
+#: mod/admin.php:1033
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Само-подпиÑ\81аннÑ\8bй Ñ\81еÑ\80Ñ\82иÑ\84икаÑ\82, Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c SSL Ñ\82олÑ\8cко Ð»Ð¾ÐºÐ°Ð»Ñ\8cно (не Ñ\80екомендÑ\83еÑ\82Ñ\81Ñ\8f)"
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "УдалиÑ\82Ñ\8c Ð°ÐºÐºÐ°Ñ\83нÑ\82"
+#: mod/admin.php:1057
+msgid "File upload"
+msgstr "Ð\97агÑ\80Ñ\83зка Ñ\84айлов"
 
-#: mod/settings.php:157
-msgid "Missing some important data!"
-msgstr "Ð\9dе Ñ\85ваÑ\82аеÑ\82 Ð²Ð°Ð¶Ð½Ñ\8bÑ\85 Ð´Ð°Ð½Ð½Ñ\8bÑ\85!"
+#: mod/admin.php:1058
+msgid "Policies"
+msgstr "Ð\9fолиÑ\82ики"
 
-#: mod/settings.php:271
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
+#: mod/admin.php:1060
+msgid "Auto Discovered Contact Directory"
+msgstr ""
+
+#: mod/admin.php:1061
+msgid "Performance"
+msgstr "Производительность"
+
+#: mod/admin.php:1062
+msgid "Worker"
+msgstr ""
 
-#: mod/settings.php:276
-msgid "Email settings updated."
-msgstr "Настройки эл. почты обновлены."
+#: mod/admin.php:1063
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным."
 
-#: mod/settings.php:291
-msgid "Features updated"
-msgstr "Настройки обновлены"
+#: mod/admin.php:1066
+msgid "Site name"
+msgstr "Название сайта"
 
-#: mod/settings.php:361
-msgid "Relocate message has been send to your contacts"
-msgstr "Ð\9fеÑ\80емеÑ\89Ñ\91нное Ñ\81ообÑ\89ение Ð±Ñ\8bло Ð¾Ñ\82пÑ\80авлено Ñ\81пиÑ\81кÑ\83 ÐºÐ¾Ð½Ñ\82акÑ\82ов"
+#: mod/admin.php:1067
+msgid "Host name"
+msgstr "Ð\98мÑ\8f Ñ\85оÑ\81Ñ\82а"
 
-#: mod/settings.php:380
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Ð\9fÑ\83Ñ\81Ñ\82Ñ\8bе Ð¿Ð°Ñ\80оли Ð½Ðµ Ð´Ð¾Ð¿Ñ\83Ñ\81каÑ\8eÑ\82Ñ\81Ñ\8f. Ð\9fаÑ\80олÑ\8c Ð½Ðµ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½."
+#: mod/admin.php:1068
+msgid "Sender Email"
+msgstr "СиÑ\81Ñ\82емнÑ\8bй Email"
 
-#: mod/settings.php:388
-msgid "Wrong password."
-msgstr "Неверный пароль."
+#: mod/admin.php:1068
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "Адрес с которого будут приходить письма пользователям."
 
-#: mod/settings.php:399
-msgid "Password changed."
-msgstr "Ð\9fаÑ\80олÑ\8c Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½."
+#: mod/admin.php:1069
+msgid "Banner/Logo"
+msgstr "Ð\91аннеÑ\80\9bогоÑ\82ип"
 
-#: mod/settings.php:401
-msgid "Password update failed. Please try again."
-msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
+#: mod/admin.php:1070
+msgid "Shortcut icon"
+msgstr ""
 
-#: mod/settings.php:481
-msgid " Please use a shorter name."
-msgstr " Пожалуйста, используйте более короткое имя."
+#: mod/admin.php:1070
+msgid "Link to an icon that will be used for browsers."
+msgstr ""
 
-#: mod/settings.php:483
-msgid " Name too short."
-msgstr " Имя слишком короткое."
+#: mod/admin.php:1071
+msgid "Touch icon"
+msgstr ""
 
-#: mod/settings.php:492
-msgid "Wrong Password"
-msgstr "Неверный пароль."
+#: mod/admin.php:1071
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr ""
 
-#: mod/settings.php:497
-msgid " Not valid email."
-msgstr " Неверный e-mail."
+#: mod/admin.php:1072
+msgid "Additional Info"
+msgstr "Дополнительная информация"
 
-#: mod/settings.php:503
-msgid " Cannot change to that email."
-msgstr " Невозможно изменить на этот e-mail."
+#: mod/admin.php:1072
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr ""
 
-#: mod/settings.php:559
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "ЧаÑ\81Ñ\82нÑ\8bй Ñ\84оÑ\80Ñ\83м Ð½Ðµ Ð¸Ð¼ÐµÐµÑ\82 Ð½Ð°Ñ\81Ñ\82Ñ\80оек Ð¿Ñ\80иваÑ\82ноÑ\81Ñ\82и. Ð\98Ñ\81полÑ\8cзÑ\83еÑ\82Ñ\81Ñ\8f Ð³Ñ\80Ñ\83ппа ÐºÐ¾Ð½Ñ\84иденÑ\86иалÑ\8cноÑ\81Ñ\82и Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e."
+#: mod/admin.php:1073
+msgid "System language"
+msgstr "СиÑ\81Ñ\82емнÑ\8bй Ñ\8fзÑ\8bк"
 
-#: mod/settings.php:563
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "ЧаÑ\81Ñ\82нÑ\8bй Ñ\84оÑ\80Ñ\83м Ð½Ðµ Ð¸Ð¼ÐµÐµÑ\82 Ð½Ð°Ñ\81Ñ\82Ñ\80оек Ð¿Ñ\80иваÑ\82ноÑ\81Ñ\82и Ð¸ Ð½Ðµ Ð¸Ð¼ÐµÐµÑ\82 Ð³Ñ\80Ñ\83пп Ð¿Ñ\80иваÑ\82ноÑ\81Ñ\82и Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e."
+#: mod/admin.php:1074
+msgid "System theme"
+msgstr "СиÑ\81Ñ\82емнаÑ\8f Ñ\82ема"
 
-#: mod/settings.php:603
-msgid "Settings updated."
-msgstr "Настройки обновлены."
+#: mod/admin.php:1074
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>"
 
-#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
-msgid "Add application"
-msgstr "Ð\94обавиÑ\82Ñ\8c Ð¿Ñ\80иложениÑ\8f"
+#: mod/admin.php:1075
+msgid "Mobile system theme"
+msgstr "Ð\9cобилÑ\8cнаÑ\8f Ñ\82ема Ñ\81иÑ\81Ñ\82емÑ\8b"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/admin.php:1075
+msgid "Theme for mobile devices"
+msgstr "Тема для мобильных устройств"
 
-#: mod/settings.php:685 mod/settings.php:711
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/admin.php:1076
+msgid "SSL link policy"
+msgstr "Политика SSL"
 
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Redirect"
-msgstr "Ð\9fеÑ\80енапÑ\80авление"
+#: mod/admin.php:1076
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "СÑ\81Ñ\8bлки Ð´Ð¾Ð»Ð¶Ð½Ñ\8b Ð±Ñ\8bÑ\82Ñ\8c Ð²Ñ\8bнÑ\83жденÑ\8b Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c SSL"
 
-#: mod/settings.php:687 mod/settings.php:713
-msgid "Icon url"
-msgstr "URL символа"
+#: mod/admin.php:1077
+msgid "Force SSL"
+msgstr "SSL принудительно"
 
-#: mod/settings.php:698
-msgid "You can't edit this application."
-msgstr "Вы не можете изменить это приложение."
+#: mod/admin.php:1077
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr ""
 
-#: mod/settings.php:741
-msgid "Connected Apps"
-msgstr "Ð\9fодклÑ\8eÑ\87еннÑ\8bе Ð¿Ñ\80иложениÑ\8f"
+#: mod/admin.php:1078
+msgid "Hide help entry from navigation menu"
+msgstr "СкÑ\80Ñ\8bÑ\82Ñ\8c Ð¿Ñ\83нкÑ\82 \"помоÑ\89Ñ\8c\" Ð² Ð¼ÐµÐ½Ñ\8e Ð½Ð°Ð²Ð¸Ð³Ð°Ñ\86ии"
 
-#: mod/settings.php:745
-msgid "Client key starts with"
-msgstr "Ключ клиента начинается с"
+#: mod/admin.php:1078
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Скрывает элемент меню для страницы справки из меню навигации. Вы все еще можете получить доступ к нему через вызов/помощь напрямую."
 
-#: mod/settings.php:746
-msgid "No name"
-msgstr "Ð\9dеÑ\82 Ð¸Ð¼ÐµÐ½Ð¸"
+#: mod/admin.php:1079
+msgid "Single user instance"
+msgstr "Ð\9eднополÑ\8cзоваÑ\82елÑ\8cÑ\81кий Ñ\80ежим"
 
-#: mod/settings.php:747
-msgid "Remove authorization"
-msgstr "УдалиÑ\82Ñ\8c Ð°Ð²Ñ\82оÑ\80изаÑ\86иÑ\8e"
+#: mod/admin.php:1079
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "СделаÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ñ\8dкземплÑ\8fÑ\80 Ð¼Ð½Ð¾Ð³Ð¾Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8cÑ\81ким, Ð¸Ð»Ð¸ Ð¾Ð´Ð½Ð¾Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8cÑ\81ким Ð´Ð»Ñ\8f Ð½Ð°Ð·Ð²Ð°Ð½Ð½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
 
-#: mod/settings.php:759
-msgid "No Plugin settings configured"
-msgstr "Ð\9dеÑ\82 Ñ\81конÑ\84игÑ\83Ñ\80иÑ\80ованнÑ\8bÑ\85 Ð½Ð°Ñ\81Ñ\82Ñ\80оек Ð¿Ð»Ð°Ð³Ð¸Ð½Ð°"
+#: mod/admin.php:1080
+msgid "Maximum image size"
+msgstr "Ð\9cакÑ\81ималÑ\8cнÑ\8bй Ñ\80азмеÑ\80 Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f"
 
-#: mod/settings.php:768
-msgid "Plugin Settings"
-msgstr "Настройки плагина"
+#: mod/admin.php:1080
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений."
 
-#: mod/settings.php:790
-msgid "Additional Features"
-msgstr "Ð\94ополниÑ\82елÑ\8cнÑ\8bе Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð¾Ñ\81Ñ\82и"
+#: mod/admin.php:1081
+msgid "Maximum image length"
+msgstr "Ð\9cакÑ\81ималÑ\8cнаÑ\8f Ð´Ð»Ð¸Ð½Ð° ÐºÐ°Ñ\80Ñ\82инки"
 
-#: mod/settings.php:800 mod/settings.php:804
-msgid "General Social Media Settings"
-msgstr "Общие настройки социальных медиа"
+#: mod/admin.php:1081
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений."
 
-#: mod/settings.php:810
-msgid "Disable intelligent shortening"
-msgstr "Ð\9eÑ\82клÑ\8eÑ\87иÑ\82Ñ\8c Ñ\83мное Ñ\81окÑ\80аÑ\89ение"
+#: mod/admin.php:1082
+msgid "JPEG image quality"
+msgstr "Ð\9aаÑ\87еÑ\81Ñ\82во JPEG Ð¸Ð·Ð¾Ð±Ñ\80ажениÑ\8f"
 
-#: mod/settings.php:812
+#: mod/admin.php:1082
 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 "Обычно система пытается найти лучшую ссылку для добавления к сокращенному посту. Если эта настройка включена, то каждый сокращенный пост будет указывать на оригинальный пост в Friendica."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество."
 
-#: mod/settings.php:818
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Ð\90вÑ\82омаÑ\82иÑ\87еÑ\81ки Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81Ñ\8bваÑ\82Ñ\8cÑ\81Ñ\8f Ð½Ð° Ð»Ñ\8eбого Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f GNU Social (OStatus), ÐºÐ¾Ñ\82оÑ\80Ñ\8bй Ð²Ð°Ñ\81 Ñ\83помÑ\8fнÑ\83л Ð¸Ð»Ð¸ ÐºÐ¾Ñ\82оÑ\80Ñ\8bй Ð½Ð° Ð²Ð°Ñ\81 Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81алÑ\81я"
+#: mod/admin.php:1084
+msgid "Register policy"
+msgstr "Ð\9fолиÑ\82ика Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ия"
 
-#: mod/settings.php:820
+#: mod/admin.php:1085
+msgid "Maximum Daily Registrations"
+msgstr "Максимальное число регистраций в день"
+
+#: mod/admin.php:1085
 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 "Если вы получите сообщение от неизвестной учетной записи OStatus, эта настройка решает, что делать. Если включена, то новый контакт будет создан для каждого неизвестного пользователя."
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта."
 
-#: mod/settings.php:826
-msgid "Default group for OStatus contacts"
-msgstr "Ð\93Ñ\80Ñ\83ппа Ð¿Ð¾-Ñ\83молÑ\87аниÑ\8e Ð´Ð»Ñ\8f OStatus-конÑ\82акÑ\82ов"
+#: mod/admin.php:1086
+msgid "Register text"
+msgstr "ТекÑ\81Ñ\82 Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии"
 
-#: mod/settings.php:834
-msgid "Your legacy GNU Social account"
-msgstr "Ð\92аÑ\88а Ñ\81Ñ\82аÑ\80аÑ\8f Ñ\83Ñ\87еÑ\82наÑ\8f Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c GNU Social"
+#: mod/admin.php:1086
+msgid "Will be displayed prominently on the registration page."
+msgstr "Ð\91Ñ\83деÑ\82 Ð½Ð°Ñ\85одиÑ\82Ñ\8cÑ\81Ñ\8f Ð½Ð° Ð²Ð¸Ð´Ð½Ð¾Ð¼ Ð¼ÐµÑ\81Ñ\82е Ð½Ð° Ñ\81Ñ\82Ñ\80аниÑ\86е Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии."
 
-#: mod/settings.php:836
+#: mod/admin.php:1087
+msgid "Accounts abandoned after x days"
+msgstr "Аккаунт считается после x дней не воспользованным"
+
+#: mod/admin.php:1087
 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 "Если вы введете тут вашу старую учетную запись GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
 
-#: mod/settings.php:839
-msgid "Repair OStatus subscriptions"
-msgstr "Ð\9fоÑ\87иниÑ\82Ñ\8c Ð¿Ð¾Ð´Ð¿Ð¸Ñ\81ки OStatus"
+#: mod/admin.php:1088
+msgid "Allowed friend domains"
+msgstr "РазÑ\80еÑ\88еннÑ\8bе Ð´Ð¾Ð¼ÐµÐ½Ñ\8b Ð´Ñ\80Ñ\83зей"
 
-#: mod/settings.php:848 mod/settings.php:849
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Встроенная  поддержка для %s подключение %s"
+#: mod/admin.php:1088
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "enabled"
-msgstr "подклÑ\8eÑ\87ено"
+#: mod/admin.php:1089
+msgid "Allowed email domains"
+msgstr "РазÑ\80еÑ\88еннÑ\8bе Ð¿Ð¾Ñ\87Ñ\82овÑ\8bе Ð´Ð¾Ð¼ÐµÐ½Ñ\8b"
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "disabled"
-msgstr "отключено"
+#: mod/admin.php:1089
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами."
 
-#: mod/settings.php:849
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/admin.php:1090
+msgid "Block public"
+msgstr "Блокировать общественный доступ"
 
-#: mod/settings.php:883
-msgid "Email access is disabled on this site."
-msgstr "Доступ эл. почты отключен на этом сайте."
+#: mod/admin.php:1090
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт."
+
+#: mod/admin.php:1091
+msgid "Force publish"
+msgstr "Принудительная публикация"
+
+#: mod/admin.php:1091
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта."
 
-#: mod/settings.php:895
-msgid "Email/Mailbox Setup"
-msgstr "Настройка эл. почты / почтового ящика"
+#: mod/admin.php:1092
+msgid "Global directory URL"
+msgstr ""
 
-#: mod/settings.php:896
+#: mod/admin.php:1092
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr ""
 
-#: mod/settings.php:897
-msgid "Last successful email check:"
-msgstr "Ð\9fоÑ\81леднÑ\8fÑ\8f Ñ\83Ñ\81пеÑ\88наÑ\8f Ð¿Ñ\80овеÑ\80ка Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b:"
+#: mod/admin.php:1093
+msgid "Allow threaded items"
+msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ñ\82емÑ\8b Ð² Ð¾Ð±Ñ\81Ñ\83ждении"
 
-#: mod/settings.php:899
-msgid "IMAP server name:"
-msgstr "Ð\98мÑ\8f IMAP Ñ\81еÑ\80веÑ\80а:"
+#: mod/admin.php:1093
+msgid "Allow infinite level threading for items on this site."
+msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ð±ÐµÑ\81конеÑ\87нÑ\8bй Ñ\83Ñ\80овенÑ\8c Ð´Ð»Ñ\8f Ñ\82ем Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е."
 
-#: mod/settings.php:900
-msgid "IMAP port:"
-msgstr "Ð\9fоÑ\80Ñ\82 IMAP:"
+#: mod/admin.php:1094
+msgid "Private posts by default for new users"
+msgstr "ЧаÑ\81Ñ\82нÑ\8bе Ñ\81ообÑ\89ениÑ\8f Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e Ð´Ð»Ñ\8f Ð½Ð¾Ð²Ñ\8bÑ\85 Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей"
 
-#: mod/settings.php:901
-msgid "Security:"
-msgstr "Безопасность:"
+#: mod/admin.php:1094
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Установить права на создание постов по умолчанию для всех участников в дефолтной приватной группе, а не для публичных участников."
 
-#: mod/settings.php:901 mod/settings.php:906
-msgid "None"
-msgstr "Ð\9dиÑ\87его"
+#: mod/admin.php:1095
+msgid "Don't include post content in email notifications"
+msgstr "Ð\9dе Ð²ÐºÐ»Ñ\8eÑ\87аÑ\82Ñ\8c Ñ\82екÑ\81Ñ\82 Ñ\81ообÑ\89ениÑ\8f Ð² email-оповеÑ\89ение."
 
-#: mod/settings.php:902
-msgid "Email login name:"
-msgstr "Логин эл. почты:"
+#: mod/admin.php:1095
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Не включать содержание сообщения/комментария/личного сообщения  и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности."
 
-#: mod/settings.php:903
-msgid "Email password:"
-msgstr "Ð\9fаÑ\80олÑ\8c Ñ\8dл. Ð¿Ð¾Ñ\87Ñ\82Ñ\8b:"
+#: mod/admin.php:1096
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Ð\97апÑ\80еÑ\82иÑ\82Ñ\8c Ð¿Ñ\83блиÑ\87нÑ\8bй Ð´Ð¾Ñ\81Ñ\82Ñ\83п Ðº Ð°Ð´Ð´Ð¾Ð½Ð°Ð¼, Ð¿ÐµÑ\80еÑ\87иÑ\81леннÑ\8bм Ð² Ð¼ÐµÐ½Ñ\8e Ð¿Ñ\80иложений."
 
-#: mod/settings.php:904
-msgid "Reply-to address:"
-msgstr "Адрес для ответа:"
+#: mod/admin.php:1096
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников."
 
-#: mod/settings.php:905
-msgid "Send public posts to all email contacts:"
-msgstr "Ð\9eÑ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ð¾Ñ\82кÑ\80Ñ\8bÑ\82Ñ\8bе Ñ\81ообÑ\89ениÑ\8f Ð½Ð° Ð²Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b Ñ\8dлекÑ\82Ñ\80онной Ð¿Ð¾Ñ\87Ñ\82Ñ\8b:"
+#: mod/admin.php:1097
+msgid "Don't embed private images in posts"
+msgstr "Ð\9dе Ð²Ñ\81Ñ\82авлÑ\8fÑ\82Ñ\8c Ð»Ð¸Ñ\87нÑ\8bе ÐºÐ°Ñ\80Ñ\82инки Ð² Ð¿Ð¾Ñ\81Ñ\82аÑ\85"
 
-#: mod/settings.php:906
-msgid "Action after import:"
-msgstr "Действие после импорта:"
+#: mod/admin.php:1097
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Не заменяйте локально расположенные фотографии в постах на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время."
 
-#: mod/settings.php:906
-msgid "Move to folder"
-msgstr "Ð\9fеÑ\80емеÑ\81Ñ\82иÑ\82Ñ\8c Ð² Ð¿Ð°Ð¿ÐºÑ\83"
+#: mod/admin.php:1098
+msgid "Allow Users to set remote_self"
+msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8fм Ñ\83Ñ\81Ñ\82ановиÑ\82Ñ\8c remote_self"
 
-#: mod/settings.php:907
-msgid "Move to folder:"
-msgstr "Переместить в папку:"
+#: mod/admin.php:1098
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr ""
 
-#: mod/settings.php:1003
-msgid "Display Settings"
-msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b Ð´Ð¸Ñ\81плеÑ\8f"
+#: mod/admin.php:1099
+msgid "Block multiple registrations"
+msgstr "Ð\91локиÑ\80оваÑ\82Ñ\8c Ð¼Ð½Ð¾Ð¶ÐµÑ\81Ñ\82веннÑ\8bе Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии"
 
-#: mod/settings.php:1009 mod/settings.php:1032
-msgid "Display Theme:"
-msgstr "Ð\9fоказаÑ\82Ñ\8c Ñ\82емÑ\83:"
+#: mod/admin.php:1099
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ð\97апÑ\80еÑ\82иÑ\82Ñ\8c Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8fм Ñ\80егиÑ\81Ñ\82Ñ\80иÑ\80оваÑ\82Ñ\8c Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ\82елÑ\8cнÑ\8bе Ð°ÐºÐºÐ°Ñ\83нÑ\82Ñ\8b Ð´Ð»Ñ\8f Ð¸Ñ\81полÑ\8cзованиÑ\8f Ð² ÐºÐ°Ñ\87еÑ\81Ñ\82ве Ñ\81Ñ\82Ñ\80аниÑ\86."
 
-#: mod/settings.php:1010
-msgid "Mobile Theme:"
-msgstr "Ð\9cобилÑ\8cнаÑ\8f Ñ\82ема:"
+#: mod/admin.php:1100
+msgid "OpenID support"
+msgstr "Ð\9fоддеÑ\80жка OpenID"
 
-#: mod/settings.php:1011
-msgid "Suppress warning of insecure networks"
-msgstr "Не отображать уведомление о небезопасных сетях"
+#: mod/admin.php:1100
+msgid "OpenID support for registration and logins."
+msgstr "OpenID поддержка для регистрации и входа в систему."
 
-#: mod/settings.php:1011
-msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
-msgstr "Должна ли система подавлять уведомления о том, что текущая группа содержить пользователей из сетей, которые не могут получать непубличные сообщения или сообщения с ограниченной видимостью."
+#: mod/admin.php:1101
+msgid "Fullname check"
+msgstr "Проверка полного имени"
 
-#: mod/settings.php:1012
-msgid "Update browser every xx seconds"
-msgstr "Обновление браузера каждые хх секунд"
+#: mod/admin.php:1101
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера."
 
-#: mod/settings.php:1012
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Минимум 10 секунд. Введите -1 для отключения."
+#: mod/admin.php:1102
+msgid "Community Page Style"
+msgstr ""
 
-#: mod/settings.php:1013
-msgid "Number of items to display per page:"
-msgstr "Количество элементов, отображаемых на одной странице:"
+#: mod/admin.php:1102
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr ""
 
-#: mod/settings.php:1013 mod/settings.php:1014
-msgid "Maximum of 100 items"
-msgstr "Максимум 100 элементов"
+#: mod/admin.php:1103
+msgid "Posts per user on community page"
+msgstr ""
 
-#: mod/settings.php:1014
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:"
+#: mod/admin.php:1103
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr ""
 
-#: mod/settings.php:1015
-msgid "Don't show emoticons"
-msgstr "не Ð¿Ð¾ÐºÐ°Ð·Ñ\8bваÑ\82Ñ\8c emoticons"
+#: mod/admin.php:1104
+msgid "Enable OStatus support"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð¿Ð¾Ð´Ð´ÐµÑ\80жкÑ\83 OStatus"
 
-#: mod/settings.php:1016
-msgid "Calendar"
-msgstr "Календарь"
+#: mod/admin.php:1104
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
 
-#: mod/settings.php:1017
-msgid "Beginning of week:"
-msgstr "Начало недели:"
+#: mod/admin.php:1105
+msgid "OStatus conversation completion interval"
+msgstr ""
 
-#: mod/settings.php:1018
-msgid "Don't show notices"
-msgstr "Не показывать уведомления"
+#: mod/admin.php:1105
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей."
 
-#: mod/settings.php:1019
-msgid "Infinite scroll"
-msgstr "Бесконечная прокрутка"
+#: mod/admin.php:1106
+msgid "Only import OStatus threads from our contacts"
+msgstr ""
 
-#: mod/settings.php:1020
-msgid "Automatic updates only at the top of the network page"
-msgstr "Автоматически обновлять только при нахождении вверху страницы \"Сеть\""
+#: mod/admin.php:1106
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr ""
 
-#: mod/settings.php:1021
-msgid "Bandwith Saver Mode"
-msgstr "Режим экономии трафика"
+#: mod/admin.php:1107
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr ""
 
-#: mod/settings.php:1021
+#: mod/admin.php:1109
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr "Если включено, то включенный контент не отображается при автоматическом обновлении, он будет показан только при перезагрузке страницы."
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr ""
 
-#: mod/settings.php:1023
-msgid "General Theme Settings"
-msgstr "Ð\9eбÑ\89ие Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ñ\82ем"
+#: mod/admin.php:1110
+msgid "Enable Diaspora support"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð¿Ð¾Ð´Ð´ÐµÑ\80жкÑ\83 Diaspora"
 
-#: mod/settings.php:1024
-msgid "Custom Theme Settings"
-msgstr "Ð\9bиÑ\87нÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ñ\82ем"
+#: mod/admin.php:1110
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Ð\9eбеÑ\81пеÑ\87иÑ\82Ñ\8c Ð²Ñ\81Ñ\82Ñ\80оеннÑ\83Ñ\8e Ð¿Ð¾Ð´Ð´ÐµÑ\80жкÑ\83 Ñ\81еÑ\82и Diaspora."
 
-#: mod/settings.php:1025
-msgid "Content Settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки ÐºÐ¾Ð½Ñ\82енÑ\82а"
+#: mod/admin.php:1111
+msgid "Only allow Friendica contacts"
+msgstr "Ð\9fозволÑ\8cÑ\82Ñ\8c Ñ\82олÑ\8cко  Friendica ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b"
 
-#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
-#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
-#: view/theme/vier/config.php:114
-msgid "Theme settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ñ\82емÑ\8b"
+#: mod/admin.php:1111
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Ð\92Ñ\81е ÐºÐ¾Ð½Ñ\82акÑ\82Ñ\8b Ð´Ð¾Ð»Ð¶Ð½Ñ\8b Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c Ñ\82олÑ\8cко Friendica Ð¿Ñ\80оÑ\82околÑ\8b. Ð\92Ñ\81е Ð´Ñ\80Ñ\83гие Ð²Ñ\81Ñ\82Ñ\80оеннÑ\8bе ÐºÐ¾Ð¼Ð¼Ñ\83никаÑ\86ионнÑ\8bе Ð¿Ñ\80оÑ\82околÑ\8b Ð¾Ñ\82клÑ\8eÑ\87енÑ\8b."
 
-#: mod/settings.php:1110
-msgid "Account Types"
-msgstr "Тип Ñ\83Ñ\87еÑ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и"
+#: mod/admin.php:1112
+msgid "Verify SSL"
+msgstr "Ð\9fÑ\80овеÑ\80ка SSL"
 
-#: mod/settings.php:1111
-msgid "Personal Page Subtypes"
-msgstr "Подтипы личной страницы"
+#: mod/admin.php:1112
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат."
 
-#: mod/settings.php:1112
-msgid "Community Forum Subtypes"
-msgstr "Подтипы форума сообщества"
+#: mod/admin.php:1113
+msgid "Proxy user"
+msgstr "Прокси пользователь"
 
-#: mod/settings.php:1119
-msgid "Personal Page"
-msgstr "Ð\9bиÑ\87наÑ\8f Ñ\81Ñ\82Ñ\80аниÑ\86а"
+#: mod/admin.php:1114
+msgid "Proxy URL"
+msgstr "Ð\9fÑ\80окÑ\81и URL"
 
-#: mod/settings.php:1120
-msgid "This account is a regular personal profile"
-msgstr "ЭÑ\82оÑ\82 Ð°ÐºÐºÐ°Ñ\83нÑ\82 Ñ\8fвлÑ\8fеÑ\82Ñ\81Ñ\8f Ð¾Ð±Ñ\8bÑ\87нÑ\8bм Ð»Ð¸Ñ\87нÑ\8bм Ð¿Ñ\80оÑ\84илем"
+#: mod/admin.php:1115
+msgid "Network timeout"
+msgstr "Тайм-аÑ\83Ñ\82 Ñ\81еÑ\82и"
 
-#: mod/settings.php:1123
-msgid "Organisation Page"
-msgstr "Организационная страница"
+#: mod/admin.php:1115
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)."
+
+#: mod/admin.php:1116
+msgid "Maximum Load Average"
+msgstr "Средняя максимальная нагрузка"
 
-#: mod/settings.php:1124
-msgid "This account is a profile for an organisation"
-msgstr "Этот аккаунт является профилем организации"
+#: mod/admin.php:1116
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50."
 
-#: mod/settings.php:1127
-msgid "News Page"
-msgstr "Новостная страница"
+#: mod/admin.php:1117
+msgid "Maximum Load Average (Frontend)"
+msgstr ""
 
-#: mod/settings.php:1128
-msgid "This account is a news account/reflector"
-msgstr "Этот аккаунт является ностным/рефлектором"
+#: mod/admin.php:1117
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr ""
 
-#: mod/settings.php:1131
-msgid "Community Forum"
-msgstr "Форум сообщества"
+#: mod/admin.php:1118
+msgid "Minimal Memory"
+msgstr ""
 
-#: mod/settings.php:1132
+#: mod/admin.php:1118
 msgid ""
-"This account is a community forum where people can discuss with each other"
-msgstr "Эта учетная запись является форумом сообщества, где люди могут обсуждать что-то друг с другом"
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
 
-#: mod/settings.php:1135
-msgid "Normal Account Page"
-msgstr "Стандартная страница аккаунта"
+#: mod/admin.php:1119
+msgid "Maximum table size for optimization"
+msgstr ""
 
-#: mod/settings.php:1136
-msgid "This account is a normal personal profile"
-msgstr "Этот аккаунт является обычным персональным профилем"
+#: mod/admin.php:1119
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr ""
 
-#: mod/settings.php:1139
-msgid "Soapbox Page"
-msgstr "Песочница"
+#: mod/admin.php:1120
+msgid "Minimum level of fragmentation"
+msgstr ""
 
-#: mod/settings.php:1140
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"
+#: mod/admin.php:1120
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
 
-#: mod/settings.php:1143
-msgid "Public Forum"
-msgstr "Публичный форум"
+#: mod/admin.php:1122
+msgid "Periodical check of global contacts"
+msgstr ""
 
-#: mod/settings.php:1144
-msgid "Automatically approve all contact requests"
-msgstr "Автоматически принимать все запросы соединения."
+#: mod/admin.php:1122
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
 
-#: mod/settings.php:1147
-msgid "Automatic Friend Page"
-msgstr "\"Автоматический друг\" страница"
+#: mod/admin.php:1123
+msgid "Days between requery"
+msgstr ""
 
-#: mod/settings.php:1148
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"
+#: mod/admin.php:1123
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr ""
 
-#: mod/settings.php:1151
-msgid "Private Forum [Experimental]"
-msgstr "Личный форум [экспериментально]"
+#: mod/admin.php:1124
+msgid "Discover contacts from other servers"
+msgstr ""
 
-#: mod/settings.php:1152
-msgid "Private forum - approved members only"
-msgstr "Приватный форум - разрешено только участникам"
+#: mod/admin.php:1124
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr ""
 
-#: mod/settings.php:1163
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:1125
+msgid "Timeframe for fetching global contacts"
+msgstr ""
 
-#: mod/settings.php:1163
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
+#: mod/admin.php:1125
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr ""
 
-#: mod/settings.php:1171
-msgid "Publish your default profile in your local site directory?"
-msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
+#: mod/admin.php:1126
+msgid "Search the local directory"
+msgstr ""
 
-#: mod/settings.php:1177
-msgid "Publish your default profile in the global social directory?"
-msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
+#: mod/admin.php:1126
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr ""
 
-#: mod/settings.php:1184
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"
+#: mod/admin.php:1128
+msgid "Publish server information"
+msgstr ""
 
-#: mod/settings.php:1188
+#: mod/admin.php:1128
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Если включено, то мы не сможем отправлять публичные сообщения в Diaspora или другую сеть."
-
-#: mod/settings.php:1193
-msgid "Allow friends to post to your profile page?"
-msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
+"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:1198
-msgid "Allow friends to tag your posts?"
-msgstr "Разрешить друзьям отмечять ваши сообщения?"
+#: mod/admin.php:1130
+msgid "Suppress Tags"
+msgstr ""
 
-#: mod/settings.php:1203
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Позвольть предлогать Вам потенциальных друзей?"
+#: mod/admin.php:1130
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
 
-#: mod/settings.php:1208
-msgid "Permit unknown people to send you private mail?"
-msgstr "РазÑ\80еÑ\88иÑ\82Ñ\8c Ð½ÐµÐ·Ð½Ð°ÐºÐ¾Ð¼Ñ\8bм Ð»Ñ\8eдÑ\8fм Ð¾Ñ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ð²Ð°Ð¼ Ð»Ð¸Ñ\87нÑ\8bе Ñ\81ообÑ\89ениÑ\8f?"
+#: mod/admin.php:1131
+msgid "Path to item cache"
+msgstr "Ð\9fÑ\83Ñ\82Ñ\8c Ðº Ñ\8dлеменÑ\82ам ÐºÑ\8dÑ\88а"
 
-#: mod/settings.php:1216
-msgid "Profile is <strong>not published</strong>."
-msgstr "Профиль <strong>не публикуется</strong>."
+#: mod/admin.php:1131
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
 
-#: mod/settings.php:1224
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Ваш адрес: <strong>'%s'</strong> или '%s'."
+#: mod/admin.php:1132
+msgid "Cache duration in seconds"
+msgstr "Время жизни кэша в секундах"
 
-#: mod/settings.php:1231
-msgid "Automatically expire posts after this many days:"
-msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
+#: mod/admin.php:1132
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr ""
 
-#: mod/settings.php:1231
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"
+#: mod/admin.php:1133
+msgid "Maximum numbers of comments per post"
+msgstr ""
 
-#: mod/settings.php:1232
-msgid "Advanced expiration settings"
-msgstr "Настройки расширенного окончания срока действия"
+#: mod/admin.php:1133
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
 
-#: mod/settings.php:1233
-msgid "Advanced Expiration"
-msgstr "РаÑ\81Ñ\88иÑ\80енное Ð¾ÐºÐ¾Ð½Ñ\87ание Ñ\81Ñ\80ока Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\8f"
+#: mod/admin.php:1134
+msgid "Temp path"
+msgstr "Ð\92Ñ\80еменнаÑ\8f Ð¿Ð°Ð¿ÐºÐ°"
 
-#: mod/settings.php:1234
-msgid "Expire posts:"
-msgstr "Срок хранения сообщений:"
+#: mod/admin.php:1134
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr ""
 
-#: mod/settings.php:1235
-msgid "Expire personal notes:"
-msgstr "СÑ\80ок Ñ\85Ñ\80анениÑ\8f Ð»Ð¸Ñ\87нÑ\8bÑ\85 Ð·Ð°Ð¼ÐµÑ\82ок:"
+#: mod/admin.php:1135
+msgid "Base path to installation"
+msgstr "Ð\9fÑ\83Ñ\82Ñ\8c Ð´Ð»Ñ\8f Ñ\83Ñ\81Ñ\82ановки"
 
-#: mod/settings.php:1236
-msgid "Expire starred posts:"
-msgstr "Срок хранения усеянных сообщений:"
+#: mod/admin.php:1135
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr ""
 
-#: mod/settings.php:1237
-msgid "Expire photos:"
-msgstr "СÑ\80ок Ñ\85Ñ\80анениÑ\8f Ñ\84оÑ\82огÑ\80аÑ\84ий:"
+#: mod/admin.php:1136
+msgid "Disable picture proxy"
+msgstr "Ð\9eÑ\82клÑ\8eÑ\87иÑ\82Ñ\8c Ð¿Ñ\80окÑ\81иÑ\80ование ÐºÐ°Ñ\80Ñ\82инок"
 
-#: mod/settings.php:1238
-msgid "Only expire posts by others:"
-msgstr "Только устаревшие посты других:"
+#: mod/admin.php:1136
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью."
 
-#: mod/settings.php:1269
-msgid "Account Settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
+#: mod/admin.php:1137
+msgid "Only search in tags"
+msgstr "Ð\98Ñ\81каÑ\82Ñ\8c Ñ\82олÑ\8cко Ð² Ñ\82егаÑ\85"
 
-#: mod/settings.php:1277
-msgid "Password Settings"
-msgstr "Смена Ð¿Ð°Ñ\80олÑ\8f"
+#: mod/admin.php:1137
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Ð\9dа Ð±Ð¾Ð»Ñ\8cÑ\88иÑ\85 Ñ\81иÑ\81Ñ\82емаÑ\85 Ñ\82екÑ\81Ñ\82овÑ\8bй Ð¿Ð¾Ð¸Ñ\81к Ð¼Ð¾Ð¶ÐµÑ\82 Ñ\81илÑ\8cно Ð·Ð°Ð¼ÐµÐ´Ð»Ð¸Ñ\82Ñ\8c Ñ\81иÑ\81Ñ\82емÑ\83."
 
-#: mod/settings.php:1279
-msgid "Leave password fields blank unless changing"
-msgstr "Ð\9eÑ\81Ñ\82авÑ\8cÑ\82е Ð¿Ð¾Ð»Ñ\8f Ð¿Ð°Ñ\80олÑ\8f Ð¿Ñ\83Ñ\81Ñ\82Ñ\8bми, ÐµÑ\81ли Ð¾Ð½ Ð½Ðµ Ð¸Ð·Ð¼ÐµÐ½Ñ\8fеÑ\82Ñ\81Ñ\8f"
+#: mod/admin.php:1139
+msgid "New base url"
+msgstr "Ð\9dовÑ\8bй Ð±Ð°Ð·Ð¾Ð²Ñ\8bй url"
 
-#: mod/settings.php:1280
-msgid "Current Password:"
-msgstr "Текущий пароль:"
+#: mod/admin.php:1139
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей."
 
-#: mod/settings.php:1280 mod/settings.php:1281
-msgid "Your current password to confirm the changes"
-msgstr "Ваш текущий пароль, для подтверждения изменений"
+#: mod/admin.php:1141
+msgid "RINO Encryption"
+msgstr "RINO шифрование"
 
-#: mod/settings.php:1281
-msgid "Password:"
-msgstr "Ð\9fаÑ\80олÑ\8c:"
+#: mod/admin.php:1141
+msgid "Encryption layer between nodes."
+msgstr "Слой Ñ\88иÑ\84Ñ\80ованиÑ\8f Ð¼ÐµÐ¶Ð´Ñ\83 Ñ\83злами."
 
-#: mod/settings.php:1285
-msgid "Basic Settings"
-msgstr "Ð\9eÑ\81новнÑ\8bе Ð¿Ð°Ñ\80амеÑ\82Ñ\80Ñ\8b"
+#: mod/admin.php:1143
+msgid "Maximum number of parallel workers"
+msgstr "Ð\9cакÑ\81ималÑ\8cное Ñ\87иÑ\81ло Ð¿Ð°Ñ\80аллелÑ\8cно Ñ\80абоÑ\82аÑ\8eÑ\89иÑ\85 worker'ов"
 
-#: mod/settings.php:1287
-msgid "Email Address:"
-msgstr "Адрес электронной почты:"
+#: mod/admin.php:1143
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4."
 
-#: mod/settings.php:1288
-msgid "Your Timezone:"
-msgstr "Ð\92аÑ\88 Ñ\87аÑ\81овой Ð¿Ð¾Ñ\8fÑ\81:"
+#: mod/admin.php:1144
+msgid "Don't use 'proc_open' with the worker"
+msgstr "Ð\9dе Ð¸Ñ\81полÑ\8cзоваÑ\82Ñ\8c 'proc_open' Ñ\81 worker'ом"
 
-#: mod/settings.php:1289
-msgid "Your Language:"
-msgstr "Ваш язык:"
+#: mod/admin.php:1144
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr ""
 
-#: mod/settings.php:1289
+#: mod/admin.php:1145
+msgid "Enable fastlane"
+msgstr "Включить fastlane"
+
+#: mod/admin.php:1145
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма"
+"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:1290
-msgid "Default Post Location:"
-msgstr "Ð\9cеÑ\81Ñ\82онаÑ\85ождение Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e:"
+#: mod/admin.php:1146
+msgid "Enable frontend worker"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c frontend worker"
 
-#: mod/settings.php:1291
-msgid "Use Browser Location:"
-msgstr "Использовать определение местоположения браузером:"
+#: mod/admin.php:1146
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call yourdomain.tld/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server. The worker background process needs to be activated for "
+"this."
+msgstr ""
 
-#: mod/settings.php:1294
-msgid "Security and Privacy Settings"
-msgstr "Ð\9fаÑ\80амеÑ\82Ñ\80Ñ\8b Ð±ÐµÐ·Ð¾Ð¿Ð°Ñ\81ноÑ\81Ñ\82и Ð¸ ÐºÐ¾Ð½Ñ\84иденÑ\86иалÑ\8cноÑ\81Ñ\82и"
+#: mod/admin.php:1176
+msgid "Update has been marked successful"
+msgstr "Ð\9eбновление Ð±Ñ\8bло Ñ\83Ñ\81пеÑ\88но Ð¾Ñ\82меÑ\87ено"
 
-#: mod/settings.php:1296
-msgid "Maximum Friend Requests/Day:"
-msgstr "Максимум запросов в друзья в день:"
+#: mod/admin.php:1184
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Обновление базы данных %s успешно применено."
 
-#: mod/settings.php:1296 mod/settings.php:1326
-msgid "(to prevent spam abuse)"
-msgstr "(для предотвращения спама)"
+#: mod/admin.php:1187
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s"
 
-#: mod/settings.php:1297
-msgid "Default Post Permissions"
-msgstr "Разрешение на сообщения по умолчанию"
+#: mod/admin.php:1201
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Выполнение %s завершено с ошибкой: %s"
 
-#: mod/settings.php:1298
-msgid "(click to open/close)"
-msgstr "(нажмите, чтобы открыть / закрыть)"
+#: mod/admin.php:1204
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Обновление %s успешно применено."
 
-#: mod/settings.php:1309
-msgid "Default Private Post"
-msgstr "Личное сообщение по умолчанию"
+#: mod/admin.php:1207
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет."
 
-#: mod/settings.php:1310
-msgid "Default Public Post"
-msgstr "Публичное сообщение по умолчанию"
+#: mod/admin.php:1210
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
 
-#: mod/settings.php:1314
-msgid "Default Permissions for New Posts"
-msgstr "Ð\9fÑ\80ава Ð´Ð»Ñ\8f Ð½Ð¾Ð²Ñ\8bÑ\85 Ð·Ð°Ð¿Ð¸Ñ\81ей Ð¿Ð¾ Ñ\83молÑ\87аниÑ\8e"
+#: mod/admin.php:1230
+msgid "No failed updates."
+msgstr "Ð\9dеÑ\83давÑ\88иÑ\85Ñ\81Ñ\8f Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ð¹ Ð½ÐµÑ\82."
 
-#: mod/settings.php:1326
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Ð\9cакÑ\81ималÑ\8cное ÐºÐ¾Ð»Ð¸Ñ\87еÑ\81Ñ\82во Ð»Ð¸Ñ\87нÑ\8bÑ\85 Ñ\81ообÑ\89ений Ð¾Ñ\82 Ð½ÐµÐ·Ð½Ð°ÐºÐ¾Ð¼Ñ\8bÑ\85 Ð»Ñ\8eдей Ð² Ð´ÐµÐ½Ñ\8c:"
+#: mod/admin.php:1231
+msgid "Check database structure"
+msgstr "Ð\9fÑ\80овеÑ\80иÑ\82Ñ\8c Ñ\81Ñ\82Ñ\80Ñ\83кÑ\82Ñ\83Ñ\80Ñ\83 Ð±Ð°Ð·Ñ\8b Ð´Ð°Ð½Ð½Ñ\8bÑ\85"
 
-#: mod/settings.php:1329
-msgid "Notification Settings"
-msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойка Ñ\83ведомлений"
+#: mod/admin.php:1236
+msgid "Failed Updates"
+msgstr "Ð\9dеÑ\83давÑ\88иеÑ\81Ñ\8f Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ\8f"
 
-#: mod/settings.php:1330
-msgid "By default post a status message when:"
-msgstr "Отправить состояние о статусе по умолчанию, если:"
+#: mod/admin.php:1237
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус."
 
-#: mod/settings.php:1331
-msgid "accepting a friend request"
-msgstr "пÑ\80инÑ\8fÑ\82ие Ð·Ð°Ð¿Ñ\80оÑ\81а Ð½Ð° Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f"
+#: mod/admin.php:1238
+msgid "Mark success (if update was manually applied)"
+msgstr "Ð\9eÑ\82меÑ\87ено Ñ\83Ñ\81пеÑ\88но (еÑ\81ли Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ðµ Ð±Ñ\8bло Ð¿Ñ\80именено Ð²Ñ\80Ñ\83Ñ\87нÑ\83Ñ\8e)"
 
-#: mod/settings.php:1332
-msgid "joining a forum/community"
-msgstr "вÑ\81Ñ\82Ñ\83пление Ð² Ñ\81ообÑ\89еÑ\81Ñ\82во/Ñ\84оÑ\80Ñ\83м"
+#: mod/admin.php:1239
+msgid "Attempt to execute this update step automatically"
+msgstr "Ð\9fопÑ\8bÑ\82аÑ\82Ñ\8cÑ\81Ñ\8f Ð²Ñ\8bполниÑ\82Ñ\8c Ñ\8dÑ\82оÑ\82 Ñ\88аг Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ\8f Ð°Ð²Ñ\82омаÑ\82иÑ\87еÑ\81ки"
 
-#: mod/settings.php:1333
-msgid "making an <em>interesting</em> profile change"
-msgstr "сделать изменения в <em>настройках интересов</em> профиля"
+#: mod/admin.php:1273
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr ""
 
-#: mod/settings.php:1334
-msgid "Send a notification email when:"
-msgstr "Отправлять уведомление по электронной почте, когда:"
+#: mod/admin.php:1276
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr ""
 
-#: mod/settings.php:1335
-msgid "You receive an introduction"
-msgstr "Вы получили запрос"
+#: mod/admin.php:1320
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s пользователь заблокирован/разблокирован"
+msgstr[1] "%s пользователей заблокировано/разблокировано"
+msgstr[2] "%s пользователей заблокировано/разблокировано"
+msgstr[3] "%s пользователей заблокировано/разблокировано"
 
-#: mod/settings.php:1336
-msgid "Your introductions are confirmed"
-msgstr "Ваши запросы подтверждены"
+#: mod/admin.php:1327
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s человек удален"
+msgstr[1] "%s чел. удалено"
+msgstr[2] "%s чел. удалено"
+msgstr[3] "%s чел. удалено"
 
-#: mod/settings.php:1337
-msgid "Someone writes on your profile wall"
-msgstr "Кто-то пишет на стене вашего профиля"
+#: mod/admin.php:1374
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Пользователь '%s' удален"
 
-#: mod/settings.php:1338
-msgid "Someone writes a followup comment"
-msgstr "Кто-то пишет последующий комментарий"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Пользователь '%s' разблокирован"
 
-#: mod/settings.php:1339
-msgid "You receive a private message"
-msgstr "Вы получаете личное сообщение"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Пользователь '%s' блокирован"
 
-#: mod/settings.php:1340
-msgid "You receive a friend suggestion"
-msgstr "Ð\92Ñ\8b Ð¿Ð¾Ð»Ñ\83лили Ð¿Ñ\80едложение Ð¾ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ð¸ Ð² Ð´Ñ\80Ñ\83зÑ\8cÑ\8f"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Register date"
+msgstr "Ð\94аÑ\82а Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ии"
 
-#: mod/settings.php:1341
-msgid "You are tagged in a post"
-msgstr "Ð\92Ñ\8b Ð¾Ñ\82меÑ\87енÑ\8b Ð² Ð¿Ð¾Ñ\81Ñ\82е"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last login"
+msgstr "Ð\9fоÑ\81ледний Ð²Ñ\85од"
 
-#: mod/settings.php:1342
-msgid "You are poked/prodded/etc. in a post"
-msgstr "Ð\92аÑ\81 Ð¿Ð¾Ñ\82Ñ\8bкали/подÑ\82олкнÑ\83ли/и Ñ\82.д. Ð² Ð¿Ð¾Ñ\81Ñ\82е"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last item"
+msgstr "Ð\9fоÑ\81ледний Ð¿Ñ\83нкÑ\82"
 
-#: mod/settings.php:1344
-msgid "Activate desktop notifications"
-msgstr "Ð\90кÑ\82ивиÑ\80оваÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð½Ð° Ñ\80абоÑ\87ем Ñ\81Ñ\82оле"
+#: mod/admin.php:1499
+msgid "Add User"
+msgstr "Ð\94обавиÑ\82Ñ\8c Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
 
-#: mod/settings.php:1344
-msgid "Show desktop popup on new notifications"
-msgstr "Ð\9fоказÑ\8bваÑ\82Ñ\8c Ñ\83ведомлениÑ\8f Ð½Ð° Ñ\80абоÑ\87ем Ñ\81Ñ\82оле"
+#: mod/admin.php:1500
+msgid "select all"
+msgstr "вÑ\8bбÑ\80аÑ\82Ñ\8c Ð²Ñ\81е"
 
-#: mod/settings.php:1346
-msgid "Text-only notification emails"
-msgstr "ТолÑ\8cко Ñ\82екÑ\81Ñ\82овÑ\8bе Ð¿Ð¸Ñ\81Ñ\8cма"
+#: mod/admin.php:1501
+msgid "User registrations waiting for confirm"
+msgstr "РегиÑ\81Ñ\82Ñ\80аÑ\86ии Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елей, Ð¾Ð¶Ð¸Ð´Ð°Ñ\8eÑ\89ие Ð¿Ð¾Ð´Ñ\82веÑ\80ждениÑ\8f"
 
-#: mod/settings.php:1348
-msgid "Send text only notification emails, without the html part"
-msgstr "Ð\9eÑ\82пÑ\80авлÑ\8fÑ\82Ñ\8c Ñ\82олÑ\8cко Ñ\82екÑ\81Ñ\82овÑ\8bе Ñ\83ведомлениÑ\8f, Ð±ÐµÐ· HTML"
+#: mod/admin.php:1502
+msgid "User waiting for permanent deletion"
+msgstr "Ð\9fолÑ\8cзоваÑ\82елÑ\8c Ð¾Ð¶Ð¸Ð´Ð°ÐµÑ\82 Ð¾ÐºÐ¾Ð½Ñ\87аÑ\82елÑ\8cного Ñ\83далениÑ\8f"
 
-#: mod/settings.php:1350
-msgid "Advanced Account/Page Type Settings"
-msgstr "РаÑ\81Ñ\88иÑ\80еннÑ\8bе Ð½Ð°Ñ\81Ñ\82Ñ\80ойки Ñ\83Ñ\87Ñ\91Ñ\82ной Ð·Ð°Ð¿Ð¸Ñ\81и"
+#: mod/admin.php:1503
+msgid "Request date"
+msgstr "Ð\97апÑ\80оÑ\81 Ð´Ð°Ñ\82Ñ\8b"
 
-#: mod/settings.php:1351
-msgid "Change the behaviour of this account for special situations"
-msgstr "Ð\98змениÑ\82е Ð¿Ð¾Ð²ÐµÐ´ÐµÐ½Ð¸Ðµ Ñ\8dÑ\82ого Ð°ÐºÐºÐ°Ñ\83нÑ\82а Ð² Ñ\81пеÑ\86иалÑ\8cнÑ\8bÑ\85 Ñ\81иÑ\82Ñ\83аÑ\86иÑ\8fÑ\85"
+#: mod/admin.php:1504
+msgid "No registrations."
+msgstr "Ð\9dеÑ\82 Ñ\80егиÑ\81Ñ\82Ñ\80аÑ\86ий."
 
-#: mod/settings.php:1354
-msgid "Relocate"
-msgstr "Ð\9fеÑ\80емеÑ\89ение"
+#: mod/admin.php:1505
+msgid "Note from the user"
+msgstr "СообÑ\89ение Ð¾Ñ\82 Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f"
 
-#: mod/settings.php:1355
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку."
+#: mod/admin.php:1507
+msgid "Deny"
+msgstr "Отклонить"
 
-#: mod/settings.php:1356
-msgid "Resend relocate message to contacts"
-msgstr "Ð\9eÑ\82пÑ\80авиÑ\82Ñ\8c Ð¿ÐµÑ\80емеÑ\89Ñ\91ннÑ\8bе Ñ\81ообÑ\89ениÑ\8f ÐºÐ¾Ð½Ñ\82акÑ\82ам"
+#: mod/admin.php:1511
+msgid "Site admin"
+msgstr "Ð\90дмин Ñ\81айÑ\82а"
 
-#: mod/subthread.php:104
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s подписан %2$s's %3$s"
+#: mod/admin.php:1512
+msgid "Account expired"
+msgstr "Аккаунт просрочен"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ñ\8dÑ\82о Ð¿Ñ\80едложение?"
+#: mod/admin.php:1515
+msgid "New User"
+msgstr "Ð\9dовÑ\8bй Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8c"
 
-#: mod/suggest.php:71
+#: mod/admin.php:1516
+msgid "Deleted since"
+msgstr "Удалён с"
+
+#: mod/admin.php:1521
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Ð\9dеÑ\82 Ð¿Ñ\80едложений. Ð\95Ñ\81ли Ñ\8dÑ\82о Ð½Ð¾Ð²Ñ\8bй Ñ\81айÑ\82, Ð¿Ð¾Ð¶Ð°Ð»Ñ\83йÑ\81Ñ\82а, Ð¿Ð¾Ð¿Ñ\80обÑ\83йÑ\82е Ñ\81нова Ñ\87еÑ\80ез 24 Ñ\87аÑ\81а."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Ð\92Ñ\8bбÑ\80аннÑ\8bе Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели Ð±Ñ\83дÑ\83Ñ\82 Ñ\83даленÑ\8b!\\n\\nÐ\92Ñ\81е, Ñ\87Ñ\82о Ñ\8dÑ\82и Ð¿Ð¾Ð»Ñ\8cзоваÑ\82ели Ð½Ð°Ð¿Ð¸Ñ\81али Ð½Ð° Ñ\8dÑ\82ом Ñ\81айÑ\82е, Ð±Ñ\83деÑ\82 Ñ\83далено!\\n\\nÐ\92Ñ\8b Ñ\83веÑ\80енÑ\8b Ð² Ð²Ð°Ñ\88ем Ð´ÐµÐ¹Ñ\81Ñ\82вии?"
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Проигнорировать/Скрыть"
+#: mod/admin.php:1522
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
 
-#: mod/tagrm.php:43
-msgid "Tag removed"
-msgstr "Ð\9aлÑ\8eÑ\87евое Ñ\81лово Ñ\83далено"
+#: mod/admin.php:1532
+msgid "Name of the new user."
+msgstr "Ð\98мÑ\8f Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f."
 
-#: mod/tagrm.php:82
-msgid "Remove Item Tag"
-msgstr "УдалиÑ\82Ñ\8c ÐºÐ»Ñ\8eÑ\87евое Ñ\81лово"
+#: mod/admin.php:1533
+msgid "Nickname"
+msgstr "Ð\9dик"
 
-#: mod/tagrm.php:84
-msgid "Select a tag to remove: "
-msgstr "Ð\92Ñ\8bбеÑ\80иÑ\82е ÐºÐ»Ñ\8eÑ\87евое Ñ\81лово Ð´Ð»Ñ\8f Ñ\83далениÑ\8f"
+#: mod/admin.php:1533
+msgid "Nickname of the new user."
+msgstr "Ð\9dик Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ\8cзоваÑ\82елÑ\8f."
 
-#: mod/uexport.php:37
-msgid "Export account"
-msgstr "Экспорт аккаунта"
+#: mod/admin.php:1534
+msgid "Email address of the new user."
+msgstr "Email адрес нового пользователя."
 
-#: mod/uexport.php:37
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер."
+#: mod/admin.php:1577
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Плагин %s отключен."
 
-#: mod/uexport.php:38
-msgid "Export all"
-msgstr "Экспорт всего"
+#: mod/admin.php:1581
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Плагин %s включен."
 
-#: mod/uexport.php:38
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)"
+#: mod/admin.php:1592 mod/admin.php:1844
+msgid "Disable"
+msgstr "Отключить"
 
-#: mod/uimport.php:68
-msgid "Move account"
-msgstr "УдалиÑ\82Ñ\8c Ð°ÐºÐºÐ°Ñ\83нÑ\82"
+#: mod/admin.php:1594 mod/admin.php:1846
+msgid "Enable"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c"
 
-#: mod/uimport.php:69
-msgid "You can import an account from another Friendica server."
-msgstr "Ð\92Ñ\8b Ð¼Ð¾Ð¶ÐµÑ\82е Ð¸Ð¼Ð¿Ð¾Ñ\80Ñ\82иÑ\80оваÑ\82Ñ\8c Ñ\83Ñ\87еÑ\82нÑ\83Ñ\8e Ð·Ð°Ð¿Ð¸Ñ\81Ñ\8c Ñ\81 Ð´Ñ\80Ñ\83гого Ñ\81еÑ\80веÑ\80а Friendica."
+#: mod/admin.php:1617 mod/admin.php:1893
+msgid "Toggle"
+msgstr "Ð\9fеÑ\80еклÑ\8eÑ\87иÑ\82Ñ\8c"
 
-#: mod/uimport.php:70
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда."
+#: mod/admin.php:1625 mod/admin.php:1902
+msgid "Author: "
+msgstr "Автор:"
 
-#: mod/uimport.php:71
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora"
+#: mod/admin.php:1626 mod/admin.php:1903
+msgid "Maintainer: "
+msgstr "Программа обслуживания: "
 
-#: mod/uimport.php:72
-msgid "Account file"
-msgstr "Файл Ð°ÐºÐºÐ°Ñ\83нÑ\82а"
+#: mod/admin.php:1681
+msgid "Reload active plugins"
+msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82Ñ\8c Ð°ÐºÑ\82ивнÑ\8bе Ð¿Ð»Ð°Ð³Ð¸Ð½Ñ\8b"
 
-#: mod/uimport.php:72
+#: mod/admin.php:1686
+#, php-format
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\""
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr ""
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
+#: mod/admin.php:1805
+msgid "No themes found."
+msgstr "Темы не найдены."
 
-#: mod/videos.php:124
-msgid "Do you really want to delete this video?"
-msgstr "Ð\92Ñ\8b Ð´ÐµÐ¹Ñ\81Ñ\82виÑ\82елÑ\8cно Ñ\85оÑ\82иÑ\82е Ñ\83далиÑ\82Ñ\8c Ð²Ð¸Ð´ÐµÐ¾?"
+#: mod/admin.php:1884
+msgid "Screenshot"
+msgstr "СкÑ\80инÑ\88оÑ\82"
 
-#: mod/videos.php:129
-msgid "Delete Video"
-msgstr "УдалиÑ\82Ñ\8c Ð²Ð¸Ð´ÐµÐ¾"
+#: mod/admin.php:1944
+msgid "Reload active themes"
+msgstr "Ð\9fеÑ\80езагÑ\80Ñ\83зиÑ\82Ñ\8c Ð°ÐºÑ\82ивнÑ\8bе Ñ\82емÑ\8b"
 
-#: mod/videos.php:208
-msgid "No videos selected"
-msgstr "Видео не выбрано"
+#: mod/admin.php:1949
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "Не найдено тем. Они должны быть расположены в %1$s"
 
-#: mod/videos.php:400
-msgid "Recent Videos"
-msgstr "Последние видео"
+#: mod/admin.php:1950
+msgid "[Experimental]"
+msgstr "[экспериментально]"
 
-#: mod/videos.php:402
-msgid "Upload New Videos"
-msgstr "Загрузить новые видео"
+#: mod/admin.php:1951
+msgid "[Unsupported]"
+msgstr "[Неподдерживаемое]"
 
-#: mod/viewcontacts.php:75
-msgid "No contacts."
-msgstr "Ð\9dеÑ\82 ÐºÐ¾Ð½Ñ\82акÑ\82ов."
+#: mod/admin.php:1975
+msgid "Log settings updated."
+msgstr "Ð\9dаÑ\81Ñ\82Ñ\80ойки Ð¶Ñ\83Ñ\80нала Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ñ\8b."
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Ð\94оÑ\81Ñ\82Ñ\83п Ð·Ð°Ð¿Ñ\80еÑ\89ен."
+#: mod/admin.php:2007
+msgid "PHP log currently enabled."
+msgstr "Ð\9bог PHP Ð²ÐºÐ»Ñ\8eÑ\87ен."
 
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125
-msgid "Invalid request."
-msgstr "Неверный запрос."
+#: mod/admin.php:2009
+msgid "PHP log currently disabled."
+msgstr "Лог PHP выключен."
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Ð\98звиниÑ\82е, Ð¿Ð¾Ñ\85оже Ñ\87Ñ\82о Ð·Ð°Ð³Ñ\80Ñ\83жаемÑ\8bй Ñ\84айл Ð¿Ñ\80евÑ\8bÑ\88аеÑ\82 Ð»Ð¸Ð¼Ð¸Ñ\82Ñ\8b, Ñ\80азÑ\80еÑ\88еннÑ\8bе ÐºÐ¾Ð½Ñ\84игÑ\83Ñ\80аÑ\86ией PHP"
+#: mod/admin.php:2018
+msgid "Clear"
+msgstr "Ð\9eÑ\87иÑ\81Ñ\82иÑ\82Ñ\8c"
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Ð\98ли Ð²Ñ\8b Ð¿Ñ\8bÑ\82алиÑ\81Ñ\8c Ð·Ð°Ð³Ñ\80Ñ\83зиÑ\82Ñ\8c Ð¿Ñ\83Ñ\81Ñ\82ой Ñ\84айл?"
+#: mod/admin.php:2023
+msgid "Enable Debugging"
+msgstr "Ð\92клÑ\8eÑ\87иÑ\82Ñ\8c Ð¾Ñ\82ладкÑ\83"
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Файл превышает лимит размера в %s"
+#: mod/admin.php:2024
+msgid "Log file"
+msgstr "Лог-файл"
 
-#: mod/wall_attach.php:158 mod/wall_attach.php:174
-msgid "File upload failed."
-msgstr "Загрузка файла не удалась."
+#: mod/admin.php:2024
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня."
 
-#: mod/wallmessage.php:42 mod/wallmessage.php:106
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено.."
+#: mod/admin.php:2025
+msgid "Log level"
+msgstr "Уровень лога"
 
-#: mod/wallmessage.php:53
-msgid "Unable to check your home location."
-msgstr "Невозможно проверить местоположение."
+#: mod/admin.php:2028
+msgid "PHP logging"
+msgstr "PHP логирование"
 
-#: mod/wallmessage.php:80 mod/wallmessage.php:89
-msgid "No recipient."
-msgstr "Без адресата."
+#: mod/admin.php:2029
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr ""
 
-#: mod/wallmessage.php:127
+#: mod/admin.php:2160
 #, 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 "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей."
+msgid "Lock feature %s"
+msgstr "Заблокировать %s"
+
+#: mod/admin.php:2168
+msgid "Manage Additional Features"
+msgstr "Управление дополнительными возможностями"
 
 #: object/Item.php:359
 msgid "via"
@@ -8858,7 +8906,7 @@ msgstr "Установить стиль"
 msgid "Community Pages"
 msgstr "Страницы сообщества"
 
-#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146
+#: view/theme/vier/config.php:117 view/theme/vier/theme.php:149
 msgid "Community Profiles"
 msgstr "Профили сообщества"
 
@@ -8866,22 +8914,75 @@ msgstr "Профили сообщества"
 msgid "Help or @NewHere ?"
 msgstr "Помощь"
 
-#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:390
 msgid "Connect Services"
 msgstr "Подключить службы"
 
-#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:197
 msgid "Find Friends"
 msgstr "Найти друзей"
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:179
 msgid "Last users"
 msgstr "Последние пользователи"
 
-#: view/theme/vier/theme.php:195
+#: view/theme/vier/theme.php:198
 msgid "Local Directory"
 msgstr "Локальный каталог"
 
-#: view/theme/vier/theme.php:286
+#: view/theme/vier/theme.php:290
 msgid "Quick Start"
 msgstr "Быстрый запуск"
+
+#: index.php:433
+msgid "toggle mobile"
+msgstr "мобильная версия"
+
+#: boot.php:999
+msgid "Delete this item?"
+msgstr "Удалить этот элемент?"
+
+#: boot.php:1001
+msgid "show fewer"
+msgstr "показать меньше"
+
+#: boot.php:1729
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Обновление %s не удалось. Смотрите журнал ошибок."
+
+#: boot.php:1843
+msgid "Create a New Account"
+msgstr "Создать новый аккаунт"
+
+#: boot.php:1871
+msgid "Password: "
+msgstr "Пароль: "
+
+#: boot.php:1872
+msgid "Remember me"
+msgstr "Запомнить"
+
+#: boot.php:1875
+msgid "Or login using OpenID: "
+msgstr "Или зайти с OpenID: "
+
+#: boot.php:1881
+msgid "Forgot your password?"
+msgstr "Забыли пароль?"
+
+#: boot.php:1884
+msgid "Website Terms of Service"
+msgstr "Правила сайта"
+
+#: boot.php:1885
+msgid "terms of service"
+msgstr "правила"
+
+#: boot.php:1887
+msgid "Website Privacy Policy"
+msgstr "Политика конфиденциальности сервера"
+
+#: boot.php:1888
+msgid "privacy policy"
+msgstr "политика конфиденциальности"
index db635783de0b3bdcd6cd47f51cb6e594bdbe22a0..de415430d790220b2c88fd8d290335b34b2ba792 100644 (file)
@@ -5,41 +5,12 @@ function string_plural_select_ru($n){
        return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
 }}
 ;
-$a->strings["Delete this item?"] = "Удалить этот элемент?";
-$a->strings["show more"] = "показать больше";
-$a->strings["show fewer"] = "показать меньше";
-$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок.";
-$a->strings["Create a New Account"] = "Создать новый аккаунт";
-$a->strings["Register"] = "Регистрация";
-$a->strings["Logout"] = "Выход";
-$a->strings["Login"] = "Вход";
-$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
-$a->strings["Password: "] = "Пароль: ";
-$a->strings["Remember me"] = "Запомнить";
-$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: ";
-$a->strings["Forgot your password?"] = "Забыли пароль?";
-$a->strings["Password Reset"] = "Сброс пароля";
-$a->strings["Website Terms of Service"] = "Правила сайта";
-$a->strings["terms of service"] = "правила";
-$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера";
-$a->strings["privacy policy"] = "политика конфиденциальности";
-$a->strings["View Profile"] = "Просмотреть профиль";
-$a->strings["Connect/Follow"] = "Подключиться/Следовать";
-$a->strings["View Status"] = "Просмотреть статус";
-$a->strings["View Photos"] = "Просмотреть фото";
-$a->strings["Network Posts"] = "Посты сети";
-$a->strings["View Contact"] = "Просмотреть контакт";
-$a->strings["Drop Contact"] = "Удалить контакт";
-$a->strings["Send PM"] = "Отправить ЛС";
-$a->strings["Poke"] = "потыкать";
-$a->strings["Organisation"] = "Организация";
-$a->strings["News"] = "Новости";
-$a->strings["Forum"] = "Форум";
 $a->strings["Forums"] = "Форумы";
 $a->strings["External link to forum"] = "Внешняя ссылка на форум";
+$a->strings["show more"] = "показать больше";
 $a->strings["System"] = "Система";
 $a->strings["Network"] = "Новости";
-$a->strings["Personal"] = "Ð\9fеÑ\80Ñ\81онал";
+$a->strings["Personal"] = "Ð\9bиÑ\87нÑ\8bе";
 $a->strings["Home"] = "Мой профиль";
 $a->strings["Introductions"] = "Запросы";
 $a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
@@ -54,6 +25,177 @@ $a->strings["Friend Suggestion"] = "Предложение в друзья";
 $a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
 $a->strings["New Follower"] = "Новый фолловер";
 $a->strings["Wall Photos"] = "Фото стены";
+$a->strings["(no subject)"] = "(без темы)";
+$a->strings["noreply"] = "без ответа";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
+$a->strings["photo"] = "фото";
+$a->strings["status"] = "статус";
+$a->strings["event"] = "мероприятие";
+$a->strings["[no subject]"] = "[без темы]";
+$a->strings["Nothing new here"] = "Ничего нового здесь";
+$a->strings["Clear notifications"] = "Стереть уведомления";
+$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент";
+$a->strings["Logout"] = "Выход";
+$a->strings["End this session"] = "Завершить эту сессию";
+$a->strings["Status"] = "Посты";
+$a->strings["Your posts and conversations"] = "Данные вашей учётной записи";
+$a->strings["Profile"] = "Информация";
+$a->strings["Your profile page"] = "Информация о вас";
+$a->strings["Photos"] = "Фото";
+$a->strings["Your photos"] = "Ваши фотографии";
+$a->strings["Videos"] = "Видео";
+$a->strings["Your videos"] = "Ваши видео";
+$a->strings["Events"] = "Мероприятия";
+$a->strings["Your events"] = "Ваши события";
+$a->strings["Personal notes"] = "Личные заметки";
+$a->strings["Your personal notes"] = "Ваши личные заметки";
+$a->strings["Login"] = "Вход";
+$a->strings["Sign in"] = "Вход";
+$a->strings["Home Page"] = "Главная страница";
+$a->strings["Register"] = "Регистрация";
+$a->strings["Create an account"] = "Создать аккаунт";
+$a->strings["Help"] = "Помощь";
+$a->strings["Help and documentation"] = "Помощь и документация";
+$a->strings["Apps"] = "Приложения";
+$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
+$a->strings["Search"] = "Поиск";
+$a->strings["Search site content"] = "Поиск по сайту";
+$a->strings["Full Text"] = "Контент";
+$a->strings["Tags"] = "Тэги";
+$a->strings["Contacts"] = "Контакты";
+$a->strings["Community"] = "Сообщество";
+$a->strings["Conversations on this site"] = "Беседы на этом сайте";
+$a->strings["Conversations on the network"] = "Беседы в сети";
+$a->strings["Events and Calendar"] = "Календарь и события";
+$a->strings["Directory"] = "Каталог";
+$a->strings["People directory"] = "Каталог участников";
+$a->strings["Information"] = "Информация";
+$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica";
+$a->strings["Conversations from your friends"] = "Сообщения ваших друзей";
+$a->strings["Network Reset"] = "Перезагрузка сети";
+$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров";
+$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
+$a->strings["Notifications"] = "Уведомления";
+$a->strings["See all notifications"] = "Посмотреть все уведомления";
+$a->strings["Mark as seen"] = "Отметить, как прочитанное";
+$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные";
+$a->strings["Messages"] = "Сообщения";
+$a->strings["Private mail"] = "Личная почта";
+$a->strings["Inbox"] = "Входящие";
+$a->strings["Outbox"] = "Исходящие";
+$a->strings["New Message"] = "Новое сообщение";
+$a->strings["Manage"] = "Управлять";
+$a->strings["Manage other pages"] = "Управление другими страницами";
+$a->strings["Delegations"] = "Делегирование";
+$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
+$a->strings["Settings"] = "Настройки";
+$a->strings["Account settings"] = "Настройки аккаунта";
+$a->strings["Profiles"] = "Профили";
+$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей";
+$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
+$a->strings["Admin"] = "Администратор";
+$a->strings["Site setup and configuration"] = "Конфигурация сайта";
+$a->strings["Navigation"] = "Навигация";
+$a->strings["Site map"] = "Карта сайта";
+$a->strings["Click here to upgrade."] = "Нажмите для обновления.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом.";
+$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки.";
+$a->strings["Male"] = "Мужчина";
+$a->strings["Female"] = "Женщина";
+$a->strings["Currently Male"] = "В данный момент мужчина";
+$a->strings["Currently Female"] = "В настоящее время женщина";
+$a->strings["Mostly Male"] = "В основном мужчина";
+$a->strings["Mostly Female"] = "В основном женщина";
+$a->strings["Transgender"] = "Транссексуал";
+$a->strings["Intersex"] = "Интерсексуал";
+$a->strings["Transsexual"] = "Транссексуал";
+$a->strings["Hermaphrodite"] = "Гермафродит";
+$a->strings["Neuter"] = "Средний род";
+$a->strings["Non-specific"] = "Не определен";
+$a->strings["Other"] = "Другой";
+$a->strings["Undecided"] = array(
+       0 => "",
+       1 => "",
+       2 => "",
+       3 => "",
+);
+$a->strings["Males"] = "Мужчины";
+$a->strings["Females"] = "Женщины";
+$a->strings["Gay"] = "Гей";
+$a->strings["Lesbian"] = "Лесбиянка";
+$a->strings["No Preference"] = "Без предпочтений";
+$a->strings["Bisexual"] = "Бисексуал";
+$a->strings["Autosexual"] = "Автосексуал";
+$a->strings["Abstinent"] = "Воздержанный";
+$a->strings["Virgin"] = "Девственница";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Фетиш";
+$a->strings["Oodles"] = "Групповой";
+$a->strings["Nonsexual"] = "Нет интереса к сексу";
+$a->strings["Single"] = "Без пары";
+$a->strings["Lonely"] = "Пока никого нет";
+$a->strings["Available"] = "Доступный";
+$a->strings["Unavailable"] = "Не ищу никого";
+$a->strings["Has crush"] = "Имеет ошибку";
+$a->strings["Infatuated"] = "Влюблён";
+$a->strings["Dating"] = "Свидания";
+$a->strings["Unfaithful"] = "Изменяю супругу";
+$a->strings["Sex Addict"] = "Люблю секс";
+$a->strings["Friends"] = "Друзья";
+$a->strings["Friends/Benefits"] = "Друзья / Предпочтения";
+$a->strings["Casual"] = "Обычный";
+$a->strings["Engaged"] = "Занят";
+$a->strings["Married"] = "Женат / Замужем";
+$a->strings["Imaginarily married"] = "Воображаемо женат (замужем)";
+$a->strings["Partners"] = "Партнеры";
+$a->strings["Cohabiting"] = "Партнерство";
+$a->strings["Common law"] = "";
+$a->strings["Happy"] = "Счастлив/а/";
+$a->strings["Not looking"] = "Не в поиске";
+$a->strings["Swinger"] = "Свинг";
+$a->strings["Betrayed"] = "Преданный";
+$a->strings["Separated"] = "Разделенный";
+$a->strings["Unstable"] = "Нестабильный";
+$a->strings["Divorced"] = "Разведен(а)";
+$a->strings["Imaginarily divorced"] = "Воображаемо разведен(а)";
+$a->strings["Widowed"] = "Овдовевший";
+$a->strings["Uncertain"] = "Неопределенный";
+$a->strings["It's complicated"] = "влишком сложно";
+$a->strings["Don't care"] = "Не беспокоить";
+$a->strings["Ask me"] = "Спросите меня";
+$a->strings["Welcome "] = "Добро пожаловать, ";
+$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
+$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки.";
+$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм";
+$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!";
+$a->strings["User creation error"] = "Ошибка создания пользователя";
+$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d контакт не импортирован",
+       1 => "%d контакты не импортированы",
+       2 => "%d контакты не импортированы",
+       3 => "%d контакты не импортированы",
+);
+$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем";
+$a->strings["View Profile"] = "Просмотреть профиль";
+$a->strings["Connect/Follow"] = "Подключиться/Следовать";
+$a->strings["View Status"] = "Просмотреть статус";
+$a->strings["View Photos"] = "Просмотреть фото";
+$a->strings["Network Posts"] = "Посты сети";
+$a->strings["View Contact"] = "Просмотреть контакт";
+$a->strings["Drop Contact"] = "Удалить контакт";
+$a->strings["Send PM"] = "Отправить ЛС";
+$a->strings["Poke"] = "потыкать";
+$a->strings["Organisation"] = "Организация";
+$a->strings["News"] = "Новости";
+$a->strings["Forum"] = "Форум";
 $a->strings["Post to Email"] = "Отправить на Email";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Коннекторы отключены так как \"%s\" включен.";
 $a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
@@ -107,10 +249,9 @@ $a->strings["Google+"] = "Google+";
 $a->strings["pump.io"] = "pump.io";
 $a->strings["Twitter"] = "Twitter";
 $a->strings["Diaspora Connector"] = "Коннектор Diaspora";
-$a->strings["GNU Social"] = "GNU Social";
+$a->strings["GNU Social Connector"] = "";
 $a->strings["pnut"] = "pnut";
 $a->strings["App.net"] = "App.net";
-$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
 $a->strings["Add New Contact"] = "Добавить контакт";
 $a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение";
 $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
@@ -140,11 +281,6 @@ $a->strings["%d contact in common"] = array(
        2 => "%d Контактов",
        3 => "%d Контактов",
 );
-$a->strings["event"] = "мероприятие";
-$a->strings["status"] = "статус";
-$a->strings["photo"] = "фото";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s уделил внимание %2\$s's %3\$s";
 $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "";
@@ -246,12 +382,6 @@ $a->strings["Not Attending"] = array(
        2 => "",
        3 => "",
 );
-$a->strings["Undecided"] = array(
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
-);
 $a->strings["Miscellaneous"] = "Разное";
 $a->strings["Birthday:"] = "День рождения:";
 $a->strings["Age: "] = "Возраст: ";
@@ -276,15 +406,6 @@ $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
 $a->strings["%s's birthday"] = "день рождения %s";
 $a->strings["Happy Birthday %s"] = "С днём рождения %s";
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
-$a->strings["Errors encountered performing database changes."] = "Обнаружены ошибки при изменении базы данных.";
-$a->strings["(no subject)"] = "(без темы)";
-$a->strings["noreply"] = "без ответа";
-$a->strings["%s\\'s birthday"] = "День рождения %s";
-$a->strings["Sharing notification from Diaspora network"] = "Уведомление о шаре из сети Diaspora";
-$a->strings["Attachments:"] = "Вложения:";
 $a->strings["Friendica Notification"] = "Уведомления Friendica";
 $a->strings["Thank You,"] = "Спасибо,";
 $a->strings["%s Administrator"] = "%s администратор";
@@ -306,7 +427,7 @@ $a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s написа
 $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s написал на [url=%2\$s]вашей стене[/url]";
 $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s отметил вас";
 $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s отметил вас в %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]поÑ\81Ñ\82авил Ñ\82ег[/url].";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]оÑ\82меÑ\82ил Ð²Ð°Ñ\81[/url].";
 $a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s поделился новым постом";
 $a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s поделился новым постом на %2\$s";
 $a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]поделился постом[/url].";
@@ -344,6 +465,7 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Вы получили [url=%1\$s]запрос регистрации[/url] от %2\$s.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Полное имя:⇥%1\$s\\nСайт:⇥%2\$s\\nЛогин:⇥%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос.";
+$a->strings["all-day"] = "";
 $a->strings["Sun"] = "Вс";
 $a->strings["Mon"] = "Пн";
 $a->strings["Tue"] = "Вт";
@@ -382,10 +504,10 @@ $a->strings["October"] = "Октябрь";
 $a->strings["November"] = "Ноябрь";
 $a->strings["December"] = "Декабрь";
 $a->strings["today"] = "сегодня";
-$a->strings["all-day"] = "";
 $a->strings["No events to display"] = "Нет событий для показа";
 $a->strings["l, F j"] = "l, j F";
 $a->strings["Edit event"] = "Редактировать мероприятие";
+$a->strings["Delete event"] = "";
 $a->strings["link to source"] = "ссылка на сообщение";
 $a->strings["Export"] = "Экспорт";
 $a->strings["Export calendar as ical"] = "Экспортировать календарь в формат ical";
@@ -439,6 +561,7 @@ $a->strings["Ability to mute notifications for a thread"] = "Возможнос
 $a->strings["Advanced Profile Settings"] = "Расширенные настройки профиля";
 $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
 $a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
+$a->strings["Blocked domain"] = "";
 $a->strings["Connect URL missing."] = "Connect-URL отсутствует.";
 $a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями.";
 $a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
@@ -465,7 +588,6 @@ $a->strings["Requested account is not available."] = "Запрашиваемый
 $a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
 $a->strings["Edit profile"] = "Редактировать профиль";
 $a->strings["Atom feed"] = "Фид Atom";
-$a->strings["Profiles"] = "Профили";
 $a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
 $a->strings["Change profile photo"] = "Изменить фото профиля";
 $a->strings["Create New Profile"] = "Создать новый профиль";
@@ -486,7 +608,6 @@ $a->strings["Birthdays this week:"] = "Дни рождения на этой н
 $a->strings["[No description]"] = "[без описания]";
 $a->strings["Event Reminders"] = "Напоминания о мероприятиях";
 $a->strings["Events this week:"] = "Мероприятия на этой неделе:";
-$a->strings["Profile"] = "Информация";
 $a->strings["Full Name:"] = "Полное имя:";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
@@ -511,153 +632,59 @@ $a->strings["School/education:"] = "Школа / Образование:";
 $a->strings["Forums:"] = "Форумы:";
 $a->strings["Basic"] = "Базовый";
 $a->strings["Advanced"] = "Расширенный";
-$a->strings["Status"] = "Посты";
 $a->strings["Status Messages and Posts"] = "Ваши посты";
 $a->strings["Profile Details"] = "Информация о вас";
-$a->strings["Photos"] = "Фото";
 $a->strings["Photo Albums"] = "Фотоальбомы";
-$a->strings["Videos"] = "Видео";
-$a->strings["Events"] = "Мероприятия";
-$a->strings["Events and Calendar"] = "Календарь и события";
 $a->strings["Personal Notes"] = "Личные заметки";
 $a->strings["Only You Can See This"] = "Только вы можете это видеть";
-$a->strings["Contacts"] = "Контакты";
-$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
-$a->strings["Item not found."] = "Пункт не найден.";
-$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?";
-$a->strings["Yes"] = "Да";
-$a->strings["Permission denied."] = "Нет разрешения.";
-$a->strings["Archives"] = "Архивы";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "";
-$a->strings["[no subject]"] = "[без темы]";
-$a->strings["Nothing new here"] = "Ничего нового здесь";
-$a->strings["Clear notifications"] = "Стереть уведомления";
-$a->strings["@name, !forum, #tags, content"] = "@имя, !форум, #тег, контент";
-$a->strings["End this session"] = "Завершить эту сессию";
-$a->strings["Your posts and conversations"] = "Данные вашей учётной записи";
-$a->strings["Your profile page"] = "Информация о вас";
-$a->strings["Your photos"] = "Ваши фотографии";
-$a->strings["Your videos"] = "Ваши видео";
-$a->strings["Your events"] = "Ваши события";
-$a->strings["Personal notes"] = "Личные заметки";
-$a->strings["Your personal notes"] = "Ваши личные заметки";
-$a->strings["Sign in"] = "Вход";
-$a->strings["Home Page"] = "Главная страница";
-$a->strings["Create an account"] = "Создать аккаунт";
-$a->strings["Help"] = "Помощь";
-$a->strings["Help and documentation"] = "Помощь и документация";
-$a->strings["Apps"] = "Приложения";
-$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
-$a->strings["Search"] = "Поиск";
-$a->strings["Search site content"] = "Поиск по сайту";
-$a->strings["Full Text"] = "Контент";
-$a->strings["Tags"] = "Тэги";
-$a->strings["Community"] = "Сообщество";
-$a->strings["Conversations on this site"] = "Беседы на этом сайте";
-$a->strings["Conversations on the network"] = "Беседы в сети";
-$a->strings["Directory"] = "Каталог";
-$a->strings["People directory"] = "Каталог участников";
-$a->strings["Information"] = "Информация";
-$a->strings["Information about this friendica instance"] = "Информация об этом экземпляре Friendica";
-$a->strings["Conversations from your friends"] = "Посты ваших друзей";
-$a->strings["Network Reset"] = "Перезагрузка сети";
-$a->strings["Load Network page with no filters"] = "Загрузить страницу сети без фильтров";
-$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
-$a->strings["Notifications"] = "Уведомления";
-$a->strings["See all notifications"] = "Посмотреть все уведомления";
-$a->strings["Mark as seen"] = "Отметить, как прочитанное";
-$a->strings["Mark all system notifications seen"] = "Отметить все системные уведомления, как прочитанные";
-$a->strings["Messages"] = "Сообщения";
-$a->strings["Private mail"] = "Личная почта";
-$a->strings["Inbox"] = "Входящие";
-$a->strings["Outbox"] = "Исходящие";
-$a->strings["New Message"] = "Новое сообщение";
-$a->strings["Manage"] = "Управлять";
-$a->strings["Manage other pages"] = "Управление другими страницами";
-$a->strings["Delegations"] = "Делегирование";
-$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
-$a->strings["Settings"] = "Настройки";
-$a->strings["Account settings"] = "Настройки аккаунта";
-$a->strings["Manage/Edit Profiles"] = "Управление/редактирование профилей";
-$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
-$a->strings["Admin"] = "Администратор";
-$a->strings["Site setup and configuration"] = "Конфигурация сайта";
-$a->strings["Navigation"] = "Навигация";
-$a->strings["Site map"] = "Карта сайта";
 $a->strings["view full size"] = "посмотреть в полный размер";
 $a->strings["Embedded content"] = "Встроенное содержание";
 $a->strings["Embedding disabled"] = "Встраивание отключено";
+$a->strings["Contact Photos"] = "Фотографии контакта";
+$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
+$a->strings["An invitation is required."] = "Требуется приглашение.";
+$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
+$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
+$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
+$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
+$a->strings["Name too short."] = "Имя слишком короткое.";
+$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."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
+$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
+$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
+$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
+$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
+$a->strings["default"] = "значение по умолчанию";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
+$a->strings["Profile Photos"] = "Фотографии профиля";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
+$a->strings["Registration at %s"] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
+$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
+$a->strings["There are no tables on MyISAM."] = "";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Сообщение об ошибке:\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "";
+$a->strings["Errors encountered performing database changes: "] = "";
+$a->strings[": Database update"] = "";
+$a->strings["%s: updating %s table."] = "";
+$a->strings["%s\\'s birthday"] = "День рождения %s";
+$a->strings["Sharing notification from Diaspora network"] = "Уведомление о шаре из сети Diaspora";
+$a->strings["Attachments:"] = "Вложения:";
+$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
+$a->strings["Item not found."] = "Пункт не найден.";
+$a->strings["Do you really want to delete this item?"] = "Вы действительно хотите удалить этот элемент?";
+$a->strings["Yes"] = "Да";
+$a->strings["Permission denied."] = "Нет разрешения.";
+$a->strings["Archives"] = "Архивы";
 $a->strings["%s is now following %s."] = "%s теперь подписан на %s.";
 $a->strings["following"] = "следует";
 $a->strings["%s stopped following %s."] = "%s отписался от %s.";
 $a->strings["stopped following"] = "остановлено следование";
-$a->strings["Contact Photos"] = "Фотографии контакта";
-$a->strings["Click here to upgrade."] = "Нажмите для обновления.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает лимиты, установленные вашим тарифным планом.";
-$a->strings["This action is not available under your subscription plan."] = "Это действие не доступно в соответствии с вашим планом подписки.";
-$a->strings["Male"] = "Мужчина";
-$a->strings["Female"] = "Женщина";
-$a->strings["Currently Male"] = "В данный момент мужчина";
-$a->strings["Currently Female"] = "В настоящее время женщина";
-$a->strings["Mostly Male"] = "В основном мужчина";
-$a->strings["Mostly Female"] = "В основном женщина";
-$a->strings["Transgender"] = "Транссексуал";
-$a->strings["Intersex"] = "Интерсексуал";
-$a->strings["Transsexual"] = "Транссексуал";
-$a->strings["Hermaphrodite"] = "Гермафродит";
-$a->strings["Neuter"] = "Средний род";
-$a->strings["Non-specific"] = "Не определен";
-$a->strings["Other"] = "Другой";
-$a->strings["Males"] = "Мужчины";
-$a->strings["Females"] = "Женщины";
-$a->strings["Gay"] = "Гей";
-$a->strings["Lesbian"] = "Лесбиянка";
-$a->strings["No Preference"] = "Без предпочтений";
-$a->strings["Bisexual"] = "Бисексуал";
-$a->strings["Autosexual"] = "Автосексуал";
-$a->strings["Abstinent"] = "Воздержанный";
-$a->strings["Virgin"] = "Девственница";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Фетиш";
-$a->strings["Oodles"] = "Групповой";
-$a->strings["Nonsexual"] = "Нет интереса к сексу";
-$a->strings["Single"] = "Без пары";
-$a->strings["Lonely"] = "Пока никого нет";
-$a->strings["Available"] = "Доступный";
-$a->strings["Unavailable"] = "Не ищу никого";
-$a->strings["Has crush"] = "Имеет ошибку";
-$a->strings["Infatuated"] = "Влюблён";
-$a->strings["Dating"] = "Свидания";
-$a->strings["Unfaithful"] = "Изменяю супругу";
-$a->strings["Sex Addict"] = "Люблю секс";
-$a->strings["Friends"] = "Друзья";
-$a->strings["Friends/Benefits"] = "Друзья / Предпочтения";
-$a->strings["Casual"] = "Обычный";
-$a->strings["Engaged"] = "Занят";
-$a->strings["Married"] = "Женат / Замужем";
-$a->strings["Imaginarily married"] = "Воображаемо женат (замужем)";
-$a->strings["Partners"] = "Партнеры";
-$a->strings["Cohabiting"] = "Партнерство";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "Счастлив/а/";
-$a->strings["Not looking"] = "Не в поиске";
-$a->strings["Swinger"] = "Свинг";
-$a->strings["Betrayed"] = "Преданный";
-$a->strings["Separated"] = "Разделенный";
-$a->strings["Unstable"] = "Нестабильный";
-$a->strings["Divorced"] = "Разведен(а)";
-$a->strings["Imaginarily divorced"] = "Воображаемо разведен(а)";
-$a->strings["Widowed"] = "Овдовевший";
-$a->strings["Uncertain"] = "Неопределенный";
-$a->strings["It's complicated"] = "влишком сложно";
-$a->strings["Don't care"] = "Не беспокоить";
-$a->strings["Ask me"] = "Спросите меня";
-$a->strings["Welcome "] = "Добро пожаловать, ";
-$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
-$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки.";
 $a->strings["newer"] = "новее";
 $a->strings["older"] = "старее";
 $a->strings["first"] = "первый";
@@ -721,383 +748,20 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "сообщение";
 $a->strings["Item filed"] = "";
-$a->strings["Error decoding account file"] = "Ошибка расшифровки файла аккаунта";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Ошибка! Невозможно проверить никнейм";
-$a->strings["User '%s' already exists on this server!"] = "Пользователь '%s' уже существует на этом сервере!";
-$a->strings["User creation error"] = "Ошибка создания пользователя";
-$a->strings["User profile creation error"] = "Ошибка создания профиля пользователя";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d контакт не импортирован",
-       1 => "%d контакты не импортированы",
-       2 => "%d контакты не импортированы",
-       3 => "%d контакты не импортированы",
-);
-$a->strings["Done. You can now login with your username and password"] = "Завершено. Теперь вы можете войти с вашим логином и паролем";
-$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
-$a->strings["An invitation is required."] = "Требуется приглашение.";
-$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
-$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
-$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
-$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
-$a->strings["Name too short."] = "Имя слишком короткое.";
-$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."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
-$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
-$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "";
-$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ник уже зарегистрирован на этом сайте и не может быть изменён. Пожалуйста, выберите другой ник.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
-$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
-$a->strings["default"] = "значение по умолчанию";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
-$a->strings["Profile Photos"] = "Фотографии профиля";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "";
-$a->strings["Registration at %s"] = "";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
+$a->strings["No friends to display."] = "Нет друзей.";
+$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
+$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
+$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
+$a->strings["No"] = "Нет";
 $a->strings["You must be logged in to use addons. "] = "Вы должны войти в систему, чтобы использовать аддоны.";
-$a->strings["Not Found"] = "Не найдено";
-$a->strings["Page not found."] = "Страница не найдена.";
-$a->strings["Permission denied"] = "Доступ запрещен";
-$a->strings["toggle mobile"] = "мобильная версия";
-$a->strings["Theme settings updated."] = "Настройки темы обновлены.";
-$a->strings["Site"] = "Сайт";
-$a->strings["Users"] = "Пользователи";
-$a->strings["Plugins"] = "Плагины";
-$a->strings["Themes"] = "Темы";
-$a->strings["Additional features"] = "Дополнительные возможности";
-$a->strings["DB updates"] = "Обновление БД";
-$a->strings["Inspect Queue"] = "";
-$a->strings["Federation Statistics"] = "";
-$a->strings["Logs"] = "Журналы";
-$a->strings["View Logs"] = "Просмотр логов";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "";
-$a->strings["Plugin Features"] = "Возможности плагина";
-$a->strings["diagnostics"] = "Диагностика";
-$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
-$a->strings["unknown"] = "";
-$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["Administration"] = "Администрация";
-$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "";
-$a->strings["ID"] = "";
-$a->strings["Recipient Name"] = "";
-$a->strings["Recipient Profile"] = "";
-$a->strings["Created"] = "";
-$a->strings["Last Tried"] = "";
-$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 <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
-$a->strings["Normal Account"] = "Обычный аккаунт";
-$a->strings["Soapbox Account"] = "Аккаунт Витрина";
-$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
-$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт";
-$a->strings["Blog Account"] = "Аккаунт блога";
-$a->strings["Private Forum"] = "Личный форум";
-$a->strings["Message queues"] = "Очереди сообщений";
-$a->strings["Summary"] = "Резюме";
-$a->strings["Registered users"] = "Зарегистрированные пользователи";
-$a->strings["Pending registrations"] = "Ожидающие регистрации";
-$a->strings["Version"] = "Версия";
-$a->strings["Active plugins"] = "Активные плагины";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>";
-$a->strings["RINO2 needs mcrypt php extension to work."] = "Для функционирования RINO2 необходим пакет php5-mcrypt";
-$a->strings["Site settings updated."] = "Установки сайта обновлены.";
-$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
-$a->strings["No community page"] = "";
-$a->strings["Public postings from users of this site"] = "";
-$a->strings["Global community page"] = "";
-$a->strings["Never"] = "Никогда";
-$a->strings["At post arrival"] = "";
-$a->strings["Disabled"] = "Отключенный";
-$a->strings["Users, Global Contacts"] = "";
-$a->strings["Users, Global Contacts/fallback"] = "";
-$a->strings["One month"] = "Один месяц";
-$a->strings["Three months"] = "Три месяца";
-$a->strings["Half a year"] = "Пол года";
-$a->strings["One year"] = "Один год";
-$a->strings["Multi user instance"] = "Многопользовательский вид";
-$a->strings["Closed"] = "Закрыто";
-$a->strings["Requires approval"] = "Требуется подтверждение";
-$a->strings["Open"] = "Открыто";
-$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться";
-$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)";
-$a->strings["Save Settings"] = "Сохранить настройки";
-$a->strings["Registration"] = "Регистрация";
-$a->strings["File upload"] = "Загрузка файлов";
-$a->strings["Policies"] = "Политики";
-$a->strings["Auto Discovered Contact Directory"] = "";
-$a->strings["Performance"] = "Производительность";
-$a->strings["Worker"] = "";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным.";
-$a->strings["Site name"] = "Название сайта";
-$a->strings["Host name"] = "Имя хоста";
-$a->strings["Sender Email"] = "Системный Email";
-$a->strings["The email address your server shall use to send notification emails from."] = "Адрес с которого будут приходить письма пользователям.";
-$a->strings["Banner/Logo"] = "Баннер/Логотип";
-$a->strings["Shortcut icon"] = "";
-$a->strings["Link to an icon that will be used for browsers."] = "";
-$a->strings["Touch icon"] = "";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
-$a->strings["Additional Info"] = "Дополнительная информация";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
-$a->strings["System language"] = "Системный язык";
-$a->strings["System theme"] = "Системная тема";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>";
-$a->strings["Mobile system theme"] = "Мобильная тема системы";
-$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств";
-$a->strings["SSL link policy"] = "Политика SSL";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
-$a->strings["Force SSL"] = "SSL принудительно";
-$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"] = "Однопользовательский режим";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя";
-$a->strings["Maximum image size"] = "Максимальный размер изображения";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений.";
-$a->strings["Maximum image length"] = "Максимальная длина картинки";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений.";
-$a->strings["JPEG image quality"] = "Качество JPEG изображения";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество.";
-$a->strings["Register policy"] = "Политика регистрация";
-$a->strings["Maximum Daily Registrations"] = "Максимальное число регистраций в день";
-$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"] = "Текст регистрации";
-$a->strings["Will be displayed prominently on the registration page."] = "Будет находиться на видном месте на странице регистрации.";
-$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.";
-$a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
-$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"] = "Разрешенные почтовые домены";
-$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["Block public"] = "Блокировать общественный доступ";
-$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"] = "";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Allow threaded items"] = "Разрешить темы в обсуждении";
-$a->strings["Allow infinite level threading for items on this site."] = "Разрешить бесконечный уровень для тем на этом сайте.";
-$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"] = "Не включать текст сообщения в email-оповещение.";
-$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"] = "Не вставлять личные картинки в постах";
-$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"] = "Разрешить пользователям установить 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";
-$a->strings["OpenID support for registration and logins."] = "OpenID поддержка для регистрации и входа в систему.";
-$a->strings["Fullname check"] = "Проверка полного имени";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера.";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярные выражения";
-$a->strings["Use PHP UTF8 regular expressions"] = "Используйте PHP UTF-8 для регулярных выражений";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
-$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"] = "Включить поддержку OStatus";
-$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["OStatus conversation completion interval"] = "";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей.";
-$a->strings["Only import OStatus threads from our contacts"] = "";
-$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."] = "";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
-$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Обеспечить встроенную поддержку сети Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Позвольть только  Friendica контакты";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены.";
-$a->strings["Verify SSL"] = "Проверка 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."] = "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат.";
-$a->strings["Proxy user"] = "Прокси пользователь";
-$a->strings["Proxy URL"] = "Прокси URL";
-$a->strings["Network timeout"] = "Тайм-аут сети";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется).";
-$a->strings["Maximum Load Average"] = "Средняя максимальная нагрузка";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 50.";
-$a->strings["Maximum Load Average (Frontend)"] = "";
-$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
-$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"] = "";
-$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"] = "";
-$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["Use MySQL full text engine"] = "Использовать систему полнотексного поиска MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Активизирует систему полнотексного поиска. Ускоряет поиск - но может искать только при указании четырех и более символов.";
-$a->strings["Suppress Tags"] = "";
-$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"] = "";
-$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"] = "Новый базовый url";
-$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей.";
-$a->strings["RINO Encryption"] = "RINO шифрование";
-$a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами.";
-$a->strings["Embedly API key"] = "Ключ API для Embedly";
-$a->strings["<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for web pages. This is an optional parameter."] = "";
-$a->strings["Maximum number of parallel workers"] = "Максимальное число параллельно работающих worker'ов";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4.";
-$a->strings["Don't use 'proc_open' with the worker"] = "Не использовать 'proc_open' с 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 poller calls in your crontab."] = "";
-$a->strings["Enable fastlane"] = "Включить 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"] = "Включить frontend worker";
-$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
-$a->strings["Update has been marked successful"] = "Обновление было успешно отмечено";
-$a->strings["Database structure update %s was successfully applied."] = "Обновление базы данных %s успешно применено.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Выполнение обновления базы данных %s завершено с ошибкой: %s";
-$a->strings["Executing %s failed with error: %s"] = "Выполнение %s завершено с ошибкой: %s";
-$a->strings["Update %s was successfully applied."] = "Обновление %s успешно применено.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет.";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
-$a->strings["No failed updates."] = "Неудавшихся обновлений нет.";
-$a->strings["Check database structure"] = "Проверить структуру базы данных";
-$a->strings["Failed Updates"] = "Неудавшиеся обновления";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Эта цифра не включает обновления до 1139, которое не возвращает статус.";
-$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\tThank you and welcome to %4\$s."] = "";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s пользователь заблокирован/разблокирован",
-       1 => "%s пользователей заблокировано/разблокировано",
-       2 => "%s пользователей заблокировано/разблокировано",
-       3 => "%s пользователей заблокировано/разблокировано",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s человек удален",
-       1 => "%s чел. удалено",
-       2 => "%s чел. удалено",
-       3 => "%s чел. удалено",
-);
-$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
-$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
-$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
-$a->strings["Name"] = "Имя";
-$a->strings["Register date"] = "Дата регистрации";
-$a->strings["Last login"] = "Последний вход";
-$a->strings["Last item"] = "Последний пункт";
-$a->strings["Account"] = "Аккаунт";
-$a->strings["Add User"] = "Добавить пользователя";
-$a->strings["select all"] = "выбрать все";
-$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
-$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления";
-$a->strings["Request date"] = "Запрос даты";
-$a->strings["No registrations."] = "Нет регистраций.";
-$a->strings["Note from the user"] = "Сообщение от пользователя";
-$a->strings["Approve"] = "Одобрить";
-$a->strings["Deny"] = "Отклонить";
-$a->strings["Block"] = "Заблокировать";
-$a->strings["Unblock"] = "Разблокировать";
-$a->strings["Site admin"] = "Админ сайта";
-$a->strings["Account expired"] = "Аккаунт просрочен";
-$a->strings["New User"] = "Новый пользователь";
-$a->strings["Deleted since"] = "Удалён с";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
-$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?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
-$a->strings["Name of the new user."] = "Имя нового пользователя.";
-$a->strings["Nickname"] = "Ник";
-$a->strings["Nickname of the new user."] = "Ник нового пользователя.";
-$a->strings["Email address of the new user."] = "Email адрес нового пользователя.";
-$a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
-$a->strings["Plugin %s enabled."] = "Плагин %s включен.";
-$a->strings["Disable"] = "Отключить";
-$a->strings["Enable"] = "Включить";
-$a->strings["Toggle"] = "Переключить";
-$a->strings["Author: "] = "Автор:";
-$a->strings["Maintainer: "] = "Программа обслуживания: ";
-$a->strings["Reload active plugins"] = "Перезагрузить активные плагины";
-$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
-$a->strings["No themes found."] = "Темы не найдены.";
-$a->strings["Screenshot"] = "Скриншот";
-$a->strings["Reload active themes"] = "Перезагрузить активные темы";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Не найдено тем. Они должны быть расположены в %1\$s";
-$a->strings["[Experimental]"] = "[экспериментально]";
-$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
-$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
-$a->strings["PHP log currently enabled."] = "Лог PHP включен.";
-$a->strings["PHP log currently disabled."] = "Лог PHP выключен.";
-$a->strings["Clear"] = "Очистить";
-$a->strings["Enable Debugging"] = "Включить отладку";
-$a->strings["Log file"] = "Лог-файл";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня.";
-$a->strings["Log level"] = "Уровень лога";
-$a->strings["PHP logging"] = "PHP логирование";
-$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["Off"] = "Выкл.";
-$a->strings["On"] = "Вкл.";
-$a->strings["Lock feature %s"] = "Заблокировать %s";
-$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями";
-$a->strings["No friends to display."] = "Нет друзей.";
-$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
-$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
-$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
-$a->strings["No"] = "Нет";
 $a->strings["Applications"] = "Приложения";
 $a->strings["No installed applications."] = "Нет установленных приложений.";
 $a->strings["Item not available."] = "Пункт не доступен.";
 $a->strings["Item was not found."] = "Пункт не был найден.";
-$a->strings["Source (bbcode) text:"] = "Код (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:";
-$a->strings["Source input: "] = "Ввести код:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
 $a->strings["The post was created"] = "Пост был создан";
-$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
-$a->strings["View"] = "Смотреть";
-$a->strings["Previous"] = "Назад";
-$a->strings["Next"] = "Далее";
-$a->strings["list"] = "список";
-$a->strings["User not found"] = "Пользователь не найден";
-$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается";
-$a->strings["No exportable data found"] = "Нет данных для экспорта";
-$a->strings["calendar"] = "календарь";
 $a->strings["No contacts in common."] = "Нет общих контактов.";
 $a->strings["Common Friends"] = "Общие друзья";
-$a->strings["Public access denied."] = "Свободный доступ закрыт.";
-$a->strings["Not available."] = "Недоступно.";
-$a->strings["No results."] = "Нет результатов.";
 $a->strings["%d contact edited."] = array(
        0 => "",
        1 => "",
@@ -1119,14 +783,16 @@ $a->strings["Do you really want to delete this contact?"] = "Вы действи
 $a->strings["Contact has been removed."] = "Контакт удален.";
 $a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s";
 $a->strings["You are sharing with %s"] = "Вы делитесь с %s";
-$a->strings["%s is sharing with you"] = "%s делитса с Вами";
-$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта.";
+$a->strings["%s is sharing with you"] = "%s делится с Вами";
+$a->strings["Private communications are not available for this contact."] = "Приватные коммуникации недоступны для этого контакта.";
+$a->strings["Never"] = "Никогда";
 $a->strings["(Update was successful)"] = "(Обновление было успешно)";
 $a->strings["(Update was not successful)"] = "(Обновление не удалось)";
 $a->strings["Suggest friends"] = "Предложить друзей";
 $a->strings["Network type: %s"] = "Сеть: %s";
 $a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!";
 $a->strings["Fetch further information for feeds"] = "Получить подробную информацию о фидах";
+$a->strings["Disabled"] = "Отключенный";
 $a->strings["Fetch information"] = "Получить информацию";
 $a->strings["Fetch information and keywords"] = "Получить информацию и ключевые слова";
 $a->strings["Contact"] = "Контакт";
@@ -1143,6 +809,8 @@ $a->strings["View conversations"] = "Просмотр бесед";
 $a->strings["Last update:"] = "Последнее обновление: ";
 $a->strings["Update public posts"] = "Обновить публичные сообщения";
 $a->strings["Update now"] = "Обновить сейчас";
+$a->strings["Unblock"] = "Разблокировать";
+$a->strings["Block"] = "Заблокировать";
 $a->strings["Unignore"] = "Не игнорировать";
 $a->strings["Ignore"] = "Игнорировать";
 $a->strings["Currently blocked"] = "В настоящее время заблокирован";
@@ -1247,6 +915,7 @@ $a->strings["Refetch contact data"] = "Обновить данные конта
 $a->strings["Remote Self"] = "Remote Self";
 $a->strings["Mirror postings from this contact"] = "Зекралировать сообщения от этого контакта";
 $a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Пометить этот контакт как remote_self, что заставит Friendica постить сообщения от этого контакта.";
+$a->strings["Name"] = "Имя";
 $a->strings["Account Nickname"] = "Ник аккаунта";
 $a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - перезаписывает Имя/Ник";
 $a->strings["Account URL"] = "URL аккаунта";
@@ -1263,199 +932,27 @@ $a->strings["Potential Delegates"] = "Возможные доверенные л
 $a->strings["Remove"] = "Удалить";
 $a->strings["Add"] = "Добавить";
 $a->strings["No entries."] = "Нет записей.";
-$a->strings["Profile not found."] = "Профиль не найден.";
-$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."] = "Ответ от удаленного сайта не был понят.";
-$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
-$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено.";
-$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз.";
-$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван.";
-$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта.";
-$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
-$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."] = "Публичный ключ недоступен в записи о контакте по ссылке %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
-$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 присоединился %2\$s";
 $a->strings["%1\$s welcomes %2\$s"] = "%1\$s добро пожаловать %2\$s";
-$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
-$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d требуемый параметр не был найден в заданном месте",
-       1 => "%d требуемых параметров не были найдены в заданном месте",
-       2 => "%d требуемых параметров не были найдены в заданном месте",
-       3 => "%d требуемых параметров не были найдены в заданном месте",
-);
-$a->strings["Introduction complete."] = "Запрос создан.";
-$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
-$a->strings["Profile unavailable."] = "Профиль недоступен.";
-$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение.";
-$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа.";
-$a->strings["Invalid locator"] = "Недопустимый локатор";
-$a->strings["Invalid email address."] = "Неверный адрес электронной почты.";
-$a->strings["This account has not been configured for email. Request failed."] = "Этот аккаунт не настроен для электронной почты. Запрос не удался.";
-$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
-$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
-$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
-$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе.";
-$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
-$a->strings["Confirm"] = "Подтвердить";
-$a->strings["Hide this contact"] = "Скрыть этот контакт";
-$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"%s/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>.";
-$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
-$a->strings["Does %s know you?"] = "%s знает вас?";
-$a->strings["Add a personal note:"] = "Добавить личную заметку:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите  %s в строке поиска Diaspora";
-$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
-$a->strings["Submit Request"] = "Отправить запрос";
+$a->strings["Public access denied."] = "Свободный доступ закрыт.";
 $a->strings["Global Directory"] = "Глобальный каталог";
 $a->strings["Find on this site"] = "Найти на этом сайте";
 $a->strings["Results for:"] = "Результаты для:";
 $a->strings["Site Directory"] = "Каталог сайта";
 $a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
-$a->strings["People Search - %s"] = "Поиск по людям - %s";
-$a->strings["Forum Search - %s"] = "Поиск по форумам - %s";
-$a->strings["No matches"] = "Нет соответствий";
+$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
 $a->strings["Item has been removed."] = "Пункт был удален.";
 $a->strings["Item not found"] = "Элемент не найден";
 $a->strings["Edit post"] = "Редактировать сообщение";
-$a->strings["Event can not end before it has started."] = "Эвент не может закончится до старта.";
-$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения.";
-$a->strings["Create New Event"] = "Создать новое мероприятие";
-$a->strings["Event details"] = "Сведения о мероприятии";
-$a->strings["Starting date and Title are required."] = "Необходима дата старта и заголовок.";
-$a->strings["Event Starts:"] = "Начало мероприятия:";
-$a->strings["Required"] = "Требуется";
-$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
-$a->strings["Event Finishes:"] = "Окончание мероприятия:";
-$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
-$a->strings["Description:"] = "Описание:";
-$a->strings["Title:"] = "Титул:";
-$a->strings["Share this event"] = "Поделитесь этим мероприятием";
 $a->strings["Files"] = "Файлы";
+$a->strings["Not Found"] = "Не найдено";
 $a->strings["- select -"] = "- выбрать -";
-$a->strings["You already added this contact."] = "Вы уже добавили этот контакт.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Поддержка Diaspora не включена. Контакт не может быть добавлен.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "Поддержка OStatus выключена. Контакт не может быть добавлен.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Тип сети не может быть определен. Контакт не может быть добавлен.";
-$a->strings["Contact added"] = "Контакт добавлен";
-$a->strings["This is Friendica, version"] = "Это Friendica, версия";
-$a->strings["running at web location"] = "работает на веб-узле";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
-$a->strings["the bugtracker at github"] = "багтрекер на github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
-$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:";
-$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
 $a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
 $a->strings["Suggest Friends"] = "Предложить друзей";
 $a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
-$a->strings["Group created."] = "Группа создана.";
-$a->strings["Could not create group."] = "Не удалось создать группу.";
-$a->strings["Group not found."] = "Группа не найдена.";
-$a->strings["Group name changed."] = "Название группы изменено.";
-$a->strings["Save Group"] = "Сохранить группу";
-$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
-$a->strings["Group removed."] = "Группа удалена.";
-$a->strings["Unable to remove group."] = "Не удается удалить группу.";
-$a->strings["Group Editor"] = "Редактор групп";
-$a->strings["Members"] = "Участники";
-$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
 $a->strings["No profile"] = "Нет профиля";
 $a->strings["Help:"] = "Помощь:";
+$a->strings["Page not found."] = "Страница не найдена.";
 $a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
-$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ";
-$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
-$a->strings["Could not create table."] = "Не удалось создать таблицу.";
-$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "База данных уже используется.";
-$a->strings["System check"] = "Проверить систему";
-$a->strings["Check again"] = "Проверить еще раз";
-$a->strings["Database connection"] = "Подключение к базе данных";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.";
-$a->strings["Database Server Name"] = "Имя сервера базы данных";
-$a->strings["Database Login Name"] = "Логин базы данных";
-$a->strings["Database Login Password"] = "Пароль базы данных";
-$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым";
-$a->strings["Database Name"] = "Имя базы данных";
-$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора.";
-$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
-$a->strings["Site settings"] = "Настройки сайта";
-$a->strings["System Language:"] = "Язык системы:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "У вас не установлена CLI версия PHP, вы не сможете выполнять cron-задания на сервере. Смотрите раздел <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a> в документации.";
-$a->strings["PHP executable path"] = "PHP executable path";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку.";
-$a->strings["Command line PHP"] = "Command line PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)";
-$a->strings["Found PHP version: "] = "Найденная PHP версия: ";
-$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."] = "Не включено \"register_argc_argv\" в установках PHP.";
-$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений.";
-$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"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей";
-$a->strings["libCurl PHP module"] = "libCurl PHP модуль";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
-$a->strings["mysqli PHP module"] = "mysqli PHP модуль";
-$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
-$a->strings["mcrypt PHP module"] = "mcrypt PHP модуль";
-$a->strings["XML PHP module"] = "XML PHP модуль";
-$a->strings["iconv module"] = "Модуль iconv";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Ошибка: необходим PHP модуль mcrypt, но он не установлен.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Ошибка: необходим PHP модуль iconv, но он не установлен.";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Если вы используете php_cli, то убедитесь, что модуль mcrypt подключен в файле конфигурации";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Функция mcrypt_create_iv() не объявлена. Она необходима для шифрования RINO2.";
-$a->strings["mcrypt_create_iv() function"] = "Функция mcrypt_create_iv()";
-$a->strings["Error, XML PHP module required but not installed."] = "Ошибка, необходим PHP модуль XML, но он не установлен";
-$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."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
-$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."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
-$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."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки.";
-$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."] = "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке.";
-$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."] = "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера..";
-$a->strings["Url rewrite is working"] = "Url rewrite работает";
-$a->strings["ImageMagick PHP extension is not installed"] = "Модуль PHP ImageMagick не установлен";
-$a->strings["ImageMagick PHP extension is installed"] = "Модуль PHP ImageMagick установлен";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick поддерживает 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."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
-$a->strings["<h1>What next</h1>"] = "<h1>Что далее</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
 $a->strings["Total invitation limit exceeded."] = "Превышен общий лимит приглашений.";
 $a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
 $a->strings["Please join us on Friendica"] = "Пожалуйста, присоединяйтесь к нам на Friendica";
@@ -1479,13 +976,6 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
 $a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
 $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Для получения более подробной информации о проекте Friendica, пожалуйста, посетите http://friendica.com";
-$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
-$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
-$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica.";
-$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %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 отправил/а/ обновление.";
 $a->strings["Time Conversion"] = "История общения";
 $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах.";
 $a->strings["UTC time: %s"] = "UTC время: %s";
@@ -1500,6 +990,7 @@ $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s
 $a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
 $a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
 $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
+$a->strings["Password Reset"] = "Сброс пароля";
 $a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
 $a->strings["Your new password is"] = "Ваш новый пароль";
 $a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем";
@@ -1510,64 +1001,15 @@ $a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Locati
 $a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s";
 $a->strings["Forgot your Password?"] = "Забыли пароль?";
 $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: "] = "Ник или E-mail: ";
 $a->strings["Reset"] = "Сброс";
 $a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание";
-$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
-$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: "] = "Выберите идентификацию для управления: ";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
 $a->strings["is interested in:"] = "интересуется:";
 $a->strings["Profile Match"] = "Похожие профили";
-$a->strings["No recipient selected."] = "Не выбран получатель.";
-$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
-$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
-$a->strings["Message collection failure."] = "Неудача коллекции сообщения.";
-$a->strings["Message sent."] = "Сообщение отправлено.";
-$a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?";
-$a->strings["Message deleted."] = "Сообщение удалено.";
-$a->strings["Conversation removed."] = "Беседа удалена.";
-$a->strings["Send Private Message"] = "Отправить личное сообщение";
-$a->strings["To:"] = "Кому:";
-$a->strings["Subject:"] = "Тема:";
-$a->strings["No messages."] = "Нет сообщений.";
-$a->strings["Message not available."] = "Сообщение не доступно.";
-$a->strings["Delete message"] = "Удалить сообщение";
-$a->strings["Delete conversation"] = "Удалить историю общения";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя.";
-$a->strings["Send Reply"] = "Отправить ответ";
-$a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s";
-$a->strings["You and %s"] = "Вы и %s";
-$a->strings["%s and You"] = "%s и Вы";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d сообщение",
-       1 => "%d сообщений",
-       2 => "%d сообщений",
-       3 => "%d сообщений",
-);
+$a->strings["No matches"] = "Нет соответствий";
 $a->strings["Mood"] = "Настроение";
 $a->strings["Set your current mood and tell your friends"] = "Напишите о вашем настроении и расскажите своим друзьям";
-$a->strings["Remove term"] = "Удалить элемент";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
-       0 => "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения.",
-       1 => "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения.",
-       2 => "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения.",
-       3 => "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения.",
-);
-$a->strings["Messages in this group won't be send to these receivers."] = "Сообщения в этой группе не будут отправлены следующим получателям.";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
-$a->strings["Invalid contact."] = "Недопустимый контакт.";
-$a->strings["Commented Order"] = "Последние комментарии";
-$a->strings["Sort by Comment Date"] = "Сортировать по дате комментария";
-$a->strings["Posted Order"] = "Лента записей";
-$a->strings["Sort by Post Date"] = "Сортировать по дате отправки";
-$a->strings["Posts that mention or involve you"] = "Посты которые упоминают вас или в которых вы участвуете";
-$a->strings["New"] = "Новый";
-$a->strings["Activity Stream - by date"] = "Лента активности - по дате";
-$a->strings["Shared Links"] = "Ссылки, которыми поделились";
-$a->strings["Interesting Links"] = "Интересные ссылки";
-$a->strings["Starred"] = "Помеченный";
-$a->strings["Favourite Posts"] = "Избранные посты";
 $a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
 $a->strings["New Member Checklist"] = "Новый контрольный список участников";
 $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."] = "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на  вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет.";
@@ -1600,36 +1042,9 @@ $a->strings["Getting Help"] = "Получить помощь";
 $a->strings["Go to the Help Section"] = "Перейти в раздел справки";
 $a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
 $a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы";
-$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
-$a->strings["Discard"] = "Отказаться";
-$a->strings["Network Notifications"] = "Уведомления сети";
-$a->strings["System Notifications"] = "Уведомления системы";
-$a->strings["Personal Notifications"] = "Личные уведомления";
-$a->strings["Home Notifications"] = "Уведомления";
-$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
-$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
-$a->strings["Notification type: "] = "Тип уведомления: ";
-$a->strings["suggested by %s"] = "предложено юзером %s";
-$a->strings["Post a new friend activity"] = "Настроение";
-$a->strings["if applicable"] = "если требуется";
-$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
-$a->strings["yes"] = "да";
-$a->strings["no"] = "нет";
-$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?";
-$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."] = "Принимая %s как друга вы позволяете %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."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него.";
-$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."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него.";
-$a->strings["Friend"] = "Друг";
-$a->strings["Sharer"] = "Участник";
-$a->strings["Subscriber"] = "Подписант";
-$a->strings["No introductions."] = "Запросов нет.";
-$a->strings["Show unread"] = "Показать непрочитанные";
-$a->strings["Show all"] = "Показать все";
-$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s.";
 $a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
+$a->strings["System Notifications"] = "Уведомления системы";
 $a->strings["Post successful."] = "Успешно добавлено.";
-$a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
 $a->strings["Subscribing to OStatus contacts"] = "Подписка на OStatus-контакты";
 $a->strings["No contact provided."] = "Не указан контакт.";
 $a->strings["Couldn't fetch information for contact."] = "Невозможно получить информацию о контакте.";
@@ -1639,6 +1054,249 @@ $a->strings["success"] = "удачно";
 $a->strings["failed"] = "неудача";
 $a->strings["Keep this window open until done."] = "Держать окно открытым до завершения.";
 $a->strings["Not Extended"] = "Не расширенный";
+$a->strings["Poke/Prod"] = "Потыкать/Потолкать";
+$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то";
+$a->strings["Recipient"] = "Получатель";
+$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя";
+$a->strings["Make this post private"] = "Сделать эту запись личной";
+$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
+$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
+$a->strings["Unable to process image"] = "Не удается обработать изображение";
+$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s";
+$a->strings["Unable to process image."] = "Невозможно обработать фото.";
+$a->strings["Upload File:"] = "Загрузить файл:";
+$a->strings["Select a profile:"] = "Выбрать этот профиль:";
+$a->strings["Upload"] = "Загрузить";
+$a->strings["or"] = "или";
+$a->strings["skip this step"] = "пропустить этот шаг";
+$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
+$a->strings["Crop Image"] = "Обрезать изображение";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
+$a->strings["Done Editing"] = "Редактирование выполнено";
+$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
+$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
+$a->strings["Permission denied"] = "Доступ запрещен";
+$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
+$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
+$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
+$a->strings["Visible To"] = "Видимый для";
+$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
+$a->strings["Account approved."] = "Аккаунт утвержден.";
+$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
+$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
+$a->strings["Remove My Account"] = "Удалить мой аккаунт";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
+$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
+$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты.";
+$a->strings["Error"] = "Ошибка";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s подписан %2\$s's %3\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.";
+$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
+$a->strings["Tag removed"] = "Ключевое слово удалено";
+$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
+$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.";
+$a->strings["Import"] = "Импорт";
+$a->strings["Move account"] = "Удалить аккаунт";
+$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica.";
+$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"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora";
+$a->strings["Account file"] = "Файл аккаунта";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"";
+$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
+$a->strings["No contacts."] = "Нет контактов.";
+$a->strings["Access denied."] = "Доступ запрещен.";
+$a->strings["Invalid request."] = "Неверный запрос.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Или вы пытались загрузить пустой файл?";
+$a->strings["File exceeds size limit of %s"] = "Файл превышает лимит размера в %s";
+$a->strings["File upload failed."] = "Загрузка файла не удалась.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено..";
+$a->strings["No recipient selected."] = "Не выбран получатель.";
+$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение.";
+$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
+$a->strings["Message collection failure."] = "Неудача коллекции сообщения.";
+$a->strings["Message sent."] = "Сообщение отправлено.";
+$a->strings["No recipient."] = "Без адресата.";
+$a->strings["Send Private Message"] = "Отправить личное сообщение";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать личные сообщения от неизвестных отправителей.";
+$a->strings["To:"] = "Кому:";
+$a->strings["Subject:"] = "Тема:";
+$a->strings["Source (bbcode) text:"] = "Код (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Код (Diaspora) для конвертации в BBcode:";
+$a->strings["Source input: "] = "Ввести код:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Ввод кода (формат Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["View"] = "Смотреть";
+$a->strings["Previous"] = "Назад";
+$a->strings["Next"] = "Далее";
+$a->strings["list"] = "список";
+$a->strings["User not found"] = "Пользователь не найден";
+$a->strings["This calendar format is not supported"] = "Этот формат календарей не поддерживается";
+$a->strings["No exportable data found"] = "Нет данных для экспорта";
+$a->strings["calendar"] = "календарь";
+$a->strings["Not available."] = "Недоступно.";
+$a->strings["No results."] = "Нет результатов.";
+$a->strings["Profile not found."] = "Профиль не найден.";
+$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."] = "Ответ от удаленного сайта не был понят.";
+$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
+$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено.";
+$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз.";
+$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван.";
+$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта.";
+$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
+$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."] = "Публичный ключ недоступен в записи о контакте по ссылке %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
+$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 присоединился %2\$s";
+$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
+$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d требуемый параметр не был найден в заданном месте",
+       1 => "%d требуемых параметров не были найдены в заданном месте",
+       2 => "%d требуемых параметров не были найдены в заданном месте",
+       3 => "%d требуемых параметров не были найдены в заданном месте",
+);
+$a->strings["Introduction complete."] = "Запрос создан.";
+$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
+$a->strings["Profile unavailable."] = "Профиль недоступен.";
+$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение.";
+$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа.";
+$a->strings["Invalid locator"] = "Недопустимый локатор";
+$a->strings["Invalid email address."] = "Неверный адрес электронной почты.";
+$a->strings["This account has not been configured for email. Request failed."] = "Этот аккаунт не настроен для электронной почты. Запрос не удался.";
+$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
+$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
+$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
+$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе.";
+$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
+$a->strings["Confirm"] = "Подтвердить";
+$a->strings["Hide this contact"] = "Скрыть этот контакт";
+$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Если вы еще не являетесь членом свободной социальной сети, перейдите по <a href=\"%s/siteinfo\"> этой ссылке, чтобы найти публичный сервер Friendica и присоединиться к нам сейчас </a>.";
+$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
+$a->strings["Does %s know you?"] = "%s знает вас?";
+$a->strings["Add a personal note:"] = "Добавить личную заметку:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "Участники сети Diaspora: пожалуйста, не пользуйтесь этой формой. Вместо этого введите  %s в строке поиска Diaspora";
+$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
+$a->strings["Submit Request"] = "Отправить запрос";
+$a->strings["People Search - %s"] = "Поиск по людям - %s";
+$a->strings["Forum Search - %s"] = "Поиск по форумам - %s";
+$a->strings["Event can not end before it has started."] = "Эвент не может закончится до старта.";
+$a->strings["Event title and start time are required."] = "Название мероприятия и время начала обязательны для заполнения.";
+$a->strings["Create New Event"] = "Создать новое мероприятие";
+$a->strings["Event details"] = "Сведения о мероприятии";
+$a->strings["Starting date and Title are required."] = "Необходима дата старта и заголовок.";
+$a->strings["Event Starts:"] = "Начало мероприятия:";
+$a->strings["Required"] = "Требуется";
+$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
+$a->strings["Event Finishes:"] = "Окончание мероприятия:";
+$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
+$a->strings["Description:"] = "Описание:";
+$a->strings["Title:"] = "Титул:";
+$a->strings["Share this event"] = "Поделитесь этим мероприятием";
+$a->strings["Failed to remove event"] = "";
+$a->strings["Event removed"] = "";
+$a->strings["You already added this contact."] = "Вы уже добавили этот контакт.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Поддержка Diaspora не включена. Контакт не может быть добавлен.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "Поддержка OStatus выключена. Контакт не может быть добавлен.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Тип сети не может быть определен. Контакт не может быть добавлен.";
+$a->strings["Contact added"] = "Контакт добавлен";
+$a->strings["This is Friendica, version"] = "Это Friendica, версия";
+$a->strings["running at web location"] = "работает на веб-узле";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Пожалуйста, посетите сайт <a href=\"http://friendica.com\">Friendica.com</a>, чтобы узнать больше о проекте Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
+$a->strings["the bugtracker at github"] = "багтрекер на github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
+$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:";
+$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
+$a->strings["On this server the following remote servers are blocked."] = "";
+$a->strings["Reason for the block"] = "";
+$a->strings["Group created."] = "Группа создана.";
+$a->strings["Could not create group."] = "Не удалось создать группу.";
+$a->strings["Group not found."] = "Группа не найдена.";
+$a->strings["Group name changed."] = "Название группы изменено.";
+$a->strings["Save Group"] = "Сохранить группу";
+$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
+$a->strings["Group removed."] = "Группа удалена.";
+$a->strings["Unable to remove group."] = "Не удается удалить группу.";
+$a->strings["Delete Group"] = "";
+$a->strings["Group Editor"] = "Редактор групп";
+$a->strings["Edit Group Name"] = "";
+$a->strings["Members"] = "Участники";
+$a->strings["Remove Contact"] = "";
+$a->strings["Add Contact"] = "";
+$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
+$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: "] = "Выберите идентификацию для управления: ";
+$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
+$a->strings["Do you really want to delete this message?"] = "Вы действительно хотите удалить это сообщение?";
+$a->strings["Message deleted."] = "Сообщение удалено.";
+$a->strings["Conversation removed."] = "Беседа удалена.";
+$a->strings["No messages."] = "Нет сообщений.";
+$a->strings["Message not available."] = "Сообщение не доступно.";
+$a->strings["Delete message"] = "Удалить сообщение";
+$a->strings["Delete conversation"] = "Удалить историю общения";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Невозможно защищённое соединение. Вы <strong>имеете</strong> возможность ответить со страницы профиля отправителя.";
+$a->strings["Send Reply"] = "Отправить ответ";
+$a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s";
+$a->strings["You and %s"] = "Вы и %s";
+$a->strings["%s and You"] = "%s и Вы";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d сообщение",
+       1 => "%d сообщений",
+       2 => "%d сообщений",
+       3 => "%d сообщений",
+);
+$a->strings["Remove term"] = "Удалить элемент";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Внимание: в группе %s пользователь из сети, которая не поддерживает непубличные сообщения.",
+       1 => "Внимание: в группе %s пользователя из сети, которая не поддерживает непубличные сообщения.",
+       2 => "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения.",
+       3 => "Внимание: в группе %s пользователей из сети, которая не поддерживает непубличные сообщения.",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "Сообщения в этой группе не будут отправлены следующим получателям.";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
+$a->strings["Invalid contact."] = "Недопустимый контакт.";
+$a->strings["Commented Order"] = "Последние комментарии";
+$a->strings["Sort by Comment Date"] = "Сортировать по дате комментария";
+$a->strings["Posted Order"] = "Лента записей";
+$a->strings["Sort by Post Date"] = "Сортировать по дате отправки";
+$a->strings["Posts that mention or involve you"] = "Посты которые упоминают вас или в которых вы участвуете";
+$a->strings["New"] = "Новое";
+$a->strings["Activity Stream - by date"] = "Лента активности - по дате";
+$a->strings["Shared Links"] = "Ссылки, которыми поделились";
+$a->strings["Interesting Links"] = "Интересные ссылки";
+$a->strings["Starred"] = "Избранное";
+$a->strings["Favourite Posts"] = "Избранные посты";
+$a->strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Не возвращён ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
 $a->strings["Recent Photos"] = "Последние фото";
 $a->strings["Upload New Photos"] = "Загрузить новые фото";
 $a->strings["everybody"] = "каждый";
@@ -1650,10 +1308,7 @@ $a->strings["Delete Photo"] = "Удалить фото";
 $a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?";
 $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s отмечен/а/ в %2\$s by %3\$s";
 $a->strings["a photo"] = "фото";
-$a->strings["Image exceeds size limit of %s"] = "Изображение превышает лимит размера в %s";
 $a->strings["Image file is empty."] = "Файл изображения пуст.";
-$a->strings["Unable to process image."] = "Невозможно обработать фото.";
-$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
 $a->strings["No photos selected"] = "Не выбрано фото.";
 $a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f возможных для хранения фотографий.";
@@ -1688,29 +1343,8 @@ $a->strings["Private photo"] = "Личное фото";
 $a->strings["Public photo"] = "Публичное фото";
 $a->strings["Map"] = "Карта";
 $a->strings["View Album"] = "Просмотреть альбом";
-$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
-$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
-$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
-$a->strings["Poke/Prod"] = "Потыкать/Потолкать";
-$a->strings["poke, prod or do other things to somebody"] = "Потыкать, потолкать или сделать что-то еще с кем-то";
-$a->strings["Recipient"] = "Получатель";
-$a->strings["Choose what you wish to do to recipient"] = "Выберите действия для получателя";
-$a->strings["Make this post private"] = "Сделать эту запись личной";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
 $a->strings["Tips for New Members"] = "Советы для новых участников";
-$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
-$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
-$a->strings["Unable to process image"] = "Не удается обработать изображение";
-$a->strings["Upload File:"] = "Загрузить файл:";
-$a->strings["Select a profile:"] = "Выбрать этот профиль:";
-$a->strings["Upload"] = "Загрузить";
-$a->strings["or"] = "или";
-$a->strings["skip this step"] = "пропустить этот шаг";
-$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
-$a->strings["Crop Image"] = "Обрезать изображение";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
-$a->strings["Done Editing"] = "Редактирование выполнено";
-$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
 $a->strings["Profile deleted."] = "Профиль удален.";
 $a->strings["Profile-"] = "Профиль-";
 $a->strings["New profile created."] = "Новый профиль создан.";
@@ -1784,16 +1418,11 @@ $a->strings["Work/employment"] = "Работа / занятость";
 $a->strings["School/education"] = "Школа / образование";
 $a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети";
 $a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
-$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
-$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
-$a->strings["Visible To"] = "Видимый для";
-$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
 $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."] = "Ошибка отправки письма. Вот ваши учетные данные: <br> логин: %s<br> пароль: %s<br><br>Вы сможете изменить пароль после входа.";
 $a->strings["Registration successful."] = "Регистрация успешна.";
 $a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
 $a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.";
 $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
 $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
 $a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
@@ -1802,6 +1431,7 @@ $a->strings["Note for the admin"] = "Сообщение для админист
 $a->strings["Leave a message for the admin, why you want to join this node"] = "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\"";
 $a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
 $a->strings["Your invitation ID: "] = "ID вашего приглашения:";
+$a->strings["Registration"] = "Регистрация";
 $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Ваше полное имя (например, Иван Иванов):";
 $a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
 $a->strings["New Password:"] = "Новый пароль:";
@@ -1809,22 +1439,16 @@ $a->strings["Leave empty for an auto generated password."] = "Оставьте 
 $a->strings["Confirm:"] = "Подтвердите:";
 $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
 $a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
-$a->strings["Import"] = "Импорт";
 $a->strings["Import your profile to this friendica instance"] = "Импорт своего профиля в этот экземпляр friendica";
-$a->strings["Account approved."] = "Аккаунт утвержден.";
-$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
-$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
-$a->strings["Remove My Account"] = "Удалить мой аккаунт";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
-$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
-$a->strings["Resubscribing to OStatus contacts"] = "Переподписаться на OStatus-контакты.";
-$a->strings["Error"] = "Ошибка";
 $a->strings["Only logged in users are permitted to perform a search."] = "Только зарегистрированные пользователи могут использовать поиск.";
 $a->strings["Too Many Requests"] = "Слишком много запросов";
 $a->strings["Only one search per minute is permitted for not logged in users."] = "Незарегистрированные пользователи могут выполнять поиск раз в минуту.";
 $a->strings["Items tagged with: %s"] = "Элементы с тегами: %s";
+$a->strings["Account"] = "Аккаунт";
+$a->strings["Additional features"] = "Дополнительные возможности";
 $a->strings["Display"] = "Внешний вид";
 $a->strings["Social Networks"] = "Социальные сети";
+$a->strings["Plugins"] = "Плагины";
 $a->strings["Connected apps"] = "Подключенные приложения";
 $a->strings["Export personal data"] = "Экспорт личных данных";
 $a->strings["Remove account"] = "Удалить аккаунт";
@@ -1846,6 +1470,7 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
 $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Частный форум не имеет настроек приватности и не имеет групп приватности по умолчанию.";
 $a->strings["Settings updated."] = "Настройки обновлены.";
 $a->strings["Add application"] = "Добавить приложения";
+$a->strings["Save Settings"] = "Сохранить настройки";
 $a->strings["Consumer Key"] = "Consumer Key";
 $a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Перенаправление";
@@ -1857,6 +1482,8 @@ $a->strings["No name"] = "Нет имени";
 $a->strings["Remove authorization"] = "Удалить авторизацию";
 $a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
 $a->strings["Plugin Settings"] = "Настройки плагина";
+$a->strings["Off"] = "Выкл.";
+$a->strings["On"] = "Вкл.";
 $a->strings["Additional Features"] = "Дополнительные возможности";
 $a->strings["General Social Media Settings"] = "Общие настройки социальных медиа";
 $a->strings["Disable intelligent shortening"] = "Отключить умное сокращение";
@@ -1886,6 +1513,7 @@ $a->strings["Send public posts to all email contacts:"] = "Отправлять
 $a->strings["Action after import:"] = "Действие после импорта:";
 $a->strings["Move to folder"] = "Переместить в папку";
 $a->strings["Move to folder:"] = "Переместить в папку:";
+$a->strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств";
 $a->strings["Display Settings"] = "Параметры дисплея";
 $a->strings["Display Theme:"] = "Показать тему:";
 $a->strings["Mobile Theme:"] = "Мобильная тема:";
@@ -1932,6 +1560,7 @@ $a->strings["Private forum - approved members only"] = "Приватный фо
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
 $a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
+$a->strings["Your profile may be visible in public."] = "";
 $a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
 $a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Если включено, то мы не сможем отправлять публичные сообщения в Diaspora или другую сеть.";
@@ -1995,40 +1624,421 @@ $a->strings["Change the behaviour of this account for special situations"] = "И
 $a->strings["Relocate"] = "Перемещение";
 $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["%1\$s is following %2\$s's %3\$s"] = "%1\$s подписан %2\$s's %3\$s";
-$a->strings["Do you really want to delete this suggestion?"] = "Вы действительно хотите удалить это предложение?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа.";
-$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
-$a->strings["Tag removed"] = "Ключевое слово удалено";
-$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
-$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
 $a->strings["Export account"] = "Экспорт аккаунта";
 $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."] = "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер.";
 $a->strings["Export all"] = "Экспорт всего";
 $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)"] = "Экспорт информации вашего аккаунта, контактов и всех ваших пунктов, как JSON. Может получиться очень большой файл и это может занять много времени. Используйте, чтобы создать полную резервную копию вашего аккаунта (фото не экспортируются)";
-$a->strings["Move account"] = "Удалить аккаунт";
-$a->strings["You can import an account from another Friendica server."] = "Вы можете импортировать учетную запись с другого сервера Friendica.";
-$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"] = "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora";
-$a->strings["Account file"] = "Файл аккаунта";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"";
-$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
 $a->strings["Do you really want to delete this video?"] = "Вы действительно хотите удалить видео?";
 $a->strings["Delete Video"] = "Удалить видео";
 $a->strings["No videos selected"] = "Видео не выбрано";
 $a->strings["Recent Videos"] = "Последние видео";
 $a->strings["Upload New Videos"] = "Загрузить новые видео";
-$a->strings["No contacts."] = "Нет контактов.";
-$a->strings["Access denied."] = "Доступ запрещен.";
-$a->strings["Invalid request."] = "Неверный запрос.";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP";
-$a->strings["Or - did you try to upload an empty file?"] = "Или вы пытались загрузить пустой файл?";
-$a->strings["File exceeds size limit of %s"] = "Файл превышает лимит размера в %s";
-$a->strings["File upload failed."] = "Загрузка файла не удалась.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Количество ежедневных сообщений на стене %s превышено. Сообщение отменено..";
-$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение.";
-$a->strings["No recipient."] = "Без адресата.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Если Вы хотите ответить %s, пожалуйста, проверьте, позволяют ли настройки конфиденциальности на Вашем сайте принимать персональную почту от неизвестных отправителей.";
+$a->strings["Friendica Communications Server - Setup"] = "Коммуникационный сервер Friendica - Доступ";
+$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
+$a->strings["Could not create table."] = "Не удалось создать таблицу.";
+$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "База данных уже используется.";
+$a->strings["System check"] = "Проверить систему";
+$a->strings["Check again"] = "Проверить еще раз";
+$a->strings["Database connection"] = "Подключение к базе данных";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.";
+$a->strings["Database Server Name"] = "Имя сервера базы данных";
+$a->strings["Database Login Name"] = "Логин базы данных";
+$a->strings["Database Login Password"] = "Пароль базы данных";
+$a->strings["For security reasons the password must not be empty"] = "Для безопасности пароль не должен быть пустым";
+$a->strings["Database Name"] = "Имя базы данных";
+$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора.";
+$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
+$a->strings["Site settings"] = "Настройки сайта";
+$a->strings["System Language:"] = "Язык системы:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Язык по-умолчанию для интерфейса Friendica и для отправки писем.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "";
+$a->strings["PHP executable path"] = "PHP executable path";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку.";
+$a->strings["Command line PHP"] = "Command line PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)";
+$a->strings["Found PHP version: "] = "Найденная PHP версия: ";
+$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."] = "Не включено \"register_argc_argv\" в установках PHP.";
+$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений.";
+$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"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей";
+$a->strings["libCurl PHP module"] = "libCurl PHP модуль";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
+$a->strings["PDO or MySQLi PHP module"] = "";
+$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
+$a->strings["XML PHP module"] = "XML PHP модуль";
+$a->strings["iconv module"] = "Модуль iconv";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Ошибка: необходим PHP модуль iconv, но он не установлен.";
+$a->strings["Error, XML PHP module required but not installed."] = "Ошибка, необходим PHP модуль XML, но он не установлен";
+$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."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
+$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."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
+$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."] = "В конце этой процедуры, мы дадим вам текст, для сохранения в файле с именем .htconfig.php в корневой папке, где установлена Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.txt\" для получения инструкций.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки.";
+$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."] = "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке.";
+$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."] = "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 доступен для записи";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite в .htaccess не работает. Проверьте конфигурацию вашего сервера..";
+$a->strings["Url rewrite is working"] = "Url rewrite работает";
+$a->strings["ImageMagick PHP extension is not installed"] = "Модуль PHP ImageMagick не установлен";
+$a->strings["ImageMagick PHP extension is installed"] = "Модуль PHP ImageMagick установлен";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick поддерживает 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."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
+$a->strings["<h1>What next</h1>"] = "<h1>Что далее</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
+$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
+$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
+$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Это сообщение было отправлено вам %s, участником социальной сети Friendica.";
+$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %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 отправил/а/ обновление.";
+$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
+$a->strings["Discard"] = "Отказаться";
+$a->strings["Network Notifications"] = "Уведомления сети";
+$a->strings["Personal Notifications"] = "Личные уведомления";
+$a->strings["Home Notifications"] = "Уведомления";
+$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
+$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
+$a->strings["Notification type: "] = "Тип уведомления: ";
+$a->strings["suggested by %s"] = "предложено юзером %s";
+$a->strings["Post a new friend activity"] = "Настроение";
+$a->strings["if applicable"] = "если требуется";
+$a->strings["Approve"] = "Одобрить";
+$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
+$a->strings["yes"] = "да";
+$a->strings["no"] = "нет";
+$a->strings["Shall your connection be bidirectional or not?"] = "Должно ли ваше соединение быть двухсторонним или нет?";
+$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."] = "Принимая %s как друга вы позволяете %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."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него.";
+$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."] = "Принимая %s как подписчика вы позволяете читать ему свои посты, но вы не получите оных от него.";
+$a->strings["Friend"] = "Друг";
+$a->strings["Sharer"] = "Участник";
+$a->strings["Subscriber"] = "Подписант";
+$a->strings["No introductions."] = "Запросов нет.";
+$a->strings["Show unread"] = "Показать непрочитанные";
+$a->strings["Show all"] = "Показать все";
+$a->strings["No more %s notifications."] = "Больше нет уведомлений о %s.";
+$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
+$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
+$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
+$a->strings["Theme settings updated."] = "Настройки темы обновлены.";
+$a->strings["Site"] = "Сайт";
+$a->strings["Users"] = "Пользователи";
+$a->strings["Themes"] = "Темы";
+$a->strings["DB updates"] = "Обновление БД";
+$a->strings["Inspect Queue"] = "";
+$a->strings["Server Blocklist"] = "";
+$a->strings["Federation Statistics"] = "";
+$a->strings["Logs"] = "Журналы";
+$a->strings["View Logs"] = "Просмотр логов";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "";
+$a->strings["Plugin Features"] = "Возможности плагина";
+$a->strings["diagnostics"] = "Диагностика";
+$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
+$a->strings["The blocked domain"] = "";
+$a->strings["The reason why you blocked this domain."] = "";
+$a->strings["Delete domain"] = "";
+$a->strings["Check to delete this entry from the blocklist"] = "";
+$a->strings["Administration"] = "Администрация";
+$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "";
+$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"] = "";
+$a->strings["Server Domain"] = "";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "";
+$a->strings["Add Entry"] = "";
+$a->strings["Save changes to the blocklist"] = "";
+$a->strings["Current Entries in the Blocklist"] = "";
+$a->strings["Delete entry from blocklist"] = "";
+$a->strings["Delete entry from blocklist?"] = "";
+$a->strings["Server added to blocklist."] = "";
+$a->strings["Site blocklist updated."] = "";
+$a->strings["unknown"] = "";
+$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 from the following platforms:"] = "";
+$a->strings["ID"] = "";
+$a->strings["Recipient Name"] = "";
+$a->strings["Recipient Profile"] = "";
+$a->strings["Created"] = "";
+$a->strings["Last Tried"] = "";
+$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 include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "";
+$a->strings["Normal Account"] = "Обычный аккаунт";
+$a->strings["Soapbox Account"] = "Аккаунт Витрина";
+$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
+$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт";
+$a->strings["Blog Account"] = "Аккаунт блога";
+$a->strings["Private Forum"] = "Личный форум";
+$a->strings["Message queues"] = "Очереди сообщений";
+$a->strings["Summary"] = "Резюме";
+$a->strings["Registered users"] = "Зарегистрированные пользователи";
+$a->strings["Pending registrations"] = "Ожидающие регистрации";
+$a->strings["Version"] = "Версия";
+$a->strings["Active plugins"] = "Активные плагины";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Невозможно определить базовый URL. Он должен иметь следующий вид - <scheme>://<domain>";
+$a->strings["Site settings updated."] = "Установки сайта обновлены.";
+$a->strings["No community page"] = "";
+$a->strings["Public postings from users of this site"] = "";
+$a->strings["Global community page"] = "";
+$a->strings["At post arrival"] = "";
+$a->strings["Users, Global Contacts"] = "";
+$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["One month"] = "Один месяц";
+$a->strings["Three months"] = "Три месяца";
+$a->strings["Half a year"] = "Пол года";
+$a->strings["One year"] = "Один год";
+$a->strings["Multi user instance"] = "Многопользовательский вид";
+$a->strings["Closed"] = "Закрыто";
+$a->strings["Requires approval"] = "Требуется подтверждение";
+$a->strings["Open"] = "Открыто";
+$a->strings["No SSL policy, links will track page SSL state"] = "Нет режима SSL, состояние SSL не будет отслеживаться";
+$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Само-подписанный сертификат, использовать SSL только локально (не рекомендуется)";
+$a->strings["File upload"] = "Загрузка файлов";
+$a->strings["Policies"] = "Политики";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Производительность";
+$a->strings["Worker"] = "";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Переместить - ПРЕДУПРЕЖДЕНИЕ: расширеная функция. Может сделать этот сервер недоступным.";
+$a->strings["Site name"] = "Название сайта";
+$a->strings["Host name"] = "Имя хоста";
+$a->strings["Sender Email"] = "Системный Email";
+$a->strings["The email address your server shall use to send notification emails from."] = "Адрес с которого будут приходить письма пользователям.";
+$a->strings["Banner/Logo"] = "Баннер/Логотип";
+$a->strings["Shortcut icon"] = "";
+$a->strings["Link to an icon that will be used for browsers."] = "";
+$a->strings["Touch icon"] = "";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
+$a->strings["Additional Info"] = "Дополнительная информация";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "";
+$a->strings["System language"] = "Системный язык";
+$a->strings["System theme"] = "Системная тема";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Тема системы по умолчанию - может быть переопределена пользователем - <a href='#' id='cnftheme'>изменить настройки темы</a>";
+$a->strings["Mobile system theme"] = "Мобильная тема системы";
+$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств";
+$a->strings["SSL link policy"] = "Политика SSL";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
+$a->strings["Force SSL"] = "SSL принудительно";
+$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"] = "Однопользовательский режим";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя";
+$a->strings["Maximum image size"] = "Максимальный размер изображения";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер в байтах для загружаемых изображений. По умолчанию 0, что означает отсутствие ограничений.";
+$a->strings["Maximum image length"] = "Максимальная длина картинки";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений.";
+$a->strings["JPEG image quality"] = "Качество JPEG изображения";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество.";
+$a->strings["Register policy"] = "Политика регистрация";
+$a->strings["Maximum Daily Registrations"] = "Максимальное число регистраций в день";
+$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"] = "Текст регистрации";
+$a->strings["Will be displayed prominently on the registration page."] = "Будет находиться на видном месте на странице регистрации.";
+$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.";
+$a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
+$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"] = "Разрешенные почтовые домены";
+$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["Block public"] = "Блокировать общественный доступ";
+$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"] = "";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Allow threaded items"] = "Разрешить темы в обсуждении";
+$a->strings["Allow infinite level threading for items on this site."] = "Разрешить бесконечный уровень для тем на этом сайте.";
+$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"] = "Не включать текст сообщения в email-оповещение.";
+$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"] = "Не вставлять личные картинки в постах";
+$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"] = "Разрешить пользователям установить 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";
+$a->strings["OpenID support for registration and logins."] = "OpenID поддержка для регистрации и входа в систему.";
+$a->strings["Fullname check"] = "Проверка полного имени";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Принудить пользователей регистрироваться с пробелом между именем и фамилией в строке \"полное имя\". Антиспам мера.";
+$a->strings["Community Page Style"] = "";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
+$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"] = "Включить поддержку OStatus";
+$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["OStatus conversation completion interval"] = "";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Как часто процессы должны проверять наличие новых записей в OStatus разговорах? Это может быть очень ресурсоёмкой задачей.";
+$a->strings["Only import OStatus threads from our contacts"] = "";
+$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."] = "";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "";
+$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Обеспечить встроенную поддержку сети Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Позвольть только  Friendica контакты";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены.";
+$a->strings["Verify SSL"] = "Проверка 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."] = "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат.";
+$a->strings["Proxy user"] = "Прокси пользователь";
+$a->strings["Proxy URL"] = "Прокси URL";
+$a->strings["Network timeout"] = "Тайм-аут сети";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется).";
+$a->strings["Maximum Load Average"] = "Средняя максимальная нагрузка";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка на систему перед приостановкой процессов доставки и опросов - по умолчанию 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 poller. 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"] = "";
+$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"] = "";
+$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["Suppress Tags"] = "";
+$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"] = "";
+$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"] = "Новый базовый url";
+$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Сменить адрес этого сервера. Отсылает сообщение о перемещении всем DFRN контактам всех пользователей.";
+$a->strings["RINO Encryption"] = "RINO шифрование";
+$a->strings["Encryption layer between nodes."] = "Слой шифрования между узлами.";
+$a->strings["Maximum number of parallel workers"] = "Максимальное число параллельно работающих worker'ов";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "Он shared-хостингах установите параметр в 2. На больших системах можно установить 10 или более. По-умолчанию 4.";
+$a->strings["Don't use 'proc_open' with the worker"] = "Не использовать 'proc_open' с 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 poller calls in your crontab."] = "";
+$a->strings["Enable fastlane"] = "Включить 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"] = "Включить frontend worker";
+$a->strings["When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call yourdomain.tld/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server. The worker background process needs to be activated for this."] = "";
+$a->strings["Update has been marked successful"] = "Обновление было успешно отмечено";
+$a->strings["Database structure update %s was successfully applied."] = "Обновление базы данных %s успешно применено.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Выполнение обновления базы данных %s завершено с ошибкой: %s";
+$a->strings["Executing %s failed with error: %s"] = "Выполнение %s завершено с ошибкой: %s";
+$a->strings["Update %s was successfully applied."] = "Обновление %s успешно применено.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет.";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "Неудавшихся обновлений нет.";
+$a->strings["Check database structure"] = "Проверить структуру базы данных";
+$a->strings["Failed Updates"] = "Неудавшиеся обновления";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Эта цифра не включает обновления до 1139, которое не возвращает статус.";
+$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\tThank you and welcome to %4\$s."] = "";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s пользователь заблокирован/разблокирован",
+       1 => "%s пользователей заблокировано/разблокировано",
+       2 => "%s пользователей заблокировано/разблокировано",
+       3 => "%s пользователей заблокировано/разблокировано",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s человек удален",
+       1 => "%s чел. удалено",
+       2 => "%s чел. удалено",
+       3 => "%s чел. удалено",
+);
+$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
+$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
+$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
+$a->strings["Register date"] = "Дата регистрации";
+$a->strings["Last login"] = "Последний вход";
+$a->strings["Last item"] = "Последний пункт";
+$a->strings["Add User"] = "Добавить пользователя";
+$a->strings["select all"] = "выбрать все";
+$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
+$a->strings["User waiting for permanent deletion"] = "Пользователь ожидает окончательного удаления";
+$a->strings["Request date"] = "Запрос даты";
+$a->strings["No registrations."] = "Нет регистраций.";
+$a->strings["Note from the user"] = "Сообщение от пользователя";
+$a->strings["Deny"] = "Отклонить";
+$a->strings["Site admin"] = "Админ сайта";
+$a->strings["Account expired"] = "Аккаунт просрочен";
+$a->strings["New User"] = "Новый пользователь";
+$a->strings["Deleted since"] = "Удалён с";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
+$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?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
+$a->strings["Name of the new user."] = "Имя нового пользователя.";
+$a->strings["Nickname"] = "Ник";
+$a->strings["Nickname of the new user."] = "Ник нового пользователя.";
+$a->strings["Email address of the new user."] = "Email адрес нового пользователя.";
+$a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
+$a->strings["Plugin %s enabled."] = "Плагин %s включен.";
+$a->strings["Disable"] = "Отключить";
+$a->strings["Enable"] = "Включить";
+$a->strings["Toggle"] = "Переключить";
+$a->strings["Author: "] = "Автор:";
+$a->strings["Maintainer: "] = "Программа обслуживания: ";
+$a->strings["Reload active plugins"] = "Перезагрузить активные плагины";
+$a->strings["There are currently no plugins available on your node. You can find the official plugin repository at %1\$s and might find other interesting plugins in the open plugin registry at %2\$s"] = "";
+$a->strings["No themes found."] = "Темы не найдены.";
+$a->strings["Screenshot"] = "Скриншот";
+$a->strings["Reload active themes"] = "Перезагрузить активные темы";
+$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Не найдено тем. Они должны быть расположены в %1\$s";
+$a->strings["[Experimental]"] = "[экспериментально]";
+$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
+$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
+$a->strings["PHP log currently enabled."] = "Лог PHP включен.";
+$a->strings["PHP log currently disabled."] = "Лог PHP выключен.";
+$a->strings["Clear"] = "Очистить";
+$a->strings["Enable Debugging"] = "Включить отладку";
+$a->strings["Log file"] = "Лог-файл";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня.";
+$a->strings["Log level"] = "Уровень лога";
+$a->strings["PHP logging"] = "PHP логирование";
+$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["Lock feature %s"] = "Заблокировать %s";
+$a->strings["Manage Additional Features"] = "Управление дополнительными возможностями";
 $a->strings["via"] = "через";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2073,3 +2083,16 @@ $a->strings["Find Friends"] = "Найти друзей";
 $a->strings["Last users"] = "Последние пользователи";
 $a->strings["Local Directory"] = "Локальный каталог";
 $a->strings["Quick Start"] = "Быстрый запуск";
+$a->strings["toggle mobile"] = "мобильная версия";
+$a->strings["Delete this item?"] = "Удалить этот элемент?";
+$a->strings["show fewer"] = "показать меньше";
+$a->strings["Update %s failed. See error logs."] = "Обновление %s не удалось. Смотрите журнал ошибок.";
+$a->strings["Create a New Account"] = "Создать новый аккаунт";
+$a->strings["Password: "] = "Пароль: ";
+$a->strings["Remember me"] = "Запомнить";
+$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: ";
+$a->strings["Forgot your password?"] = "Забыли пароль?";
+$a->strings["Website Terms of Service"] = "Правила сайта";
+$a->strings["terms of service"] = "правила";
+$a->strings["Website Privacy Policy"] = "Политика конфиденциальности сервера";
+$a->strings["privacy policy"] = "политика конфиденциальности";