]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #5567 from JeroenED/feature/queues-localtime
authorMichael Vogel <icarus@dabo.de>
Tue, 7 Aug 2018 12:19:15 +0000 (14:19 +0200)
committerGitHub <noreply@github.com>
Tue, 7 Aug 2018 12:19:15 +0000 (14:19 +0200)
Converting timezone in admin queues

15 files changed:
index.php
mod/friendica.php
src/Core/L10n.php
src/Database/PostUpdate.php
src/Model/Item.php
src/Model/Profile.php
src/Protocol/PortableContact.php
src/Worker/Delivery.php
util/messages.po
view/lang/cs/messages.po
view/lang/cs/strings.php
view/lang/pl/messages.po
view/lang/pl/strings.php
view/theme/frio/templates/nav.tpl
view/theme/vier/style.css

index 41e177ce3bedf76da20f0d9b46a0d78287ed5c8e..8b0bd472513fd9c5a1ca9bbd457a60ce963682d3 100644 (file)
--- a/index.php
+++ b/index.php
@@ -107,7 +107,7 @@ if (x($_SESSION, 'language') && ($_SESSION['language'] !== $lang)) {
        L10n::loadTranslationTable($lang);
 }
 
-if ((x($_GET,'zrl')) && $a->mode == App::MODE_NORMAL) {
+if (!empty($_GET['zrl']) && $a->mode == App::MODE_NORMAL) {
        $a->query_string = Profile::stripZrls($a->query_string);
        if (!local_user()) {
                // Only continue when the given profile link seems valid
index 05a76b44da1b55aad6c5fb237b079159bec6372f..f2cb5c50b6fe1b55f9ad07053da15d1d2dcc03c0 100644 (file)
@@ -75,8 +75,9 @@ function friendica_content(App $a)
 {
        $o = '<h1>Friendica</h1>' . PHP_EOL;
        $o .= '<p>';
-       $o .= L10n::t('This is Friendica, version') . ' <strong>' . FRIENDICA_VERSION . '</strong> ';
-       $o .= L10n::t('running at web location') . ' ' . System::baseUrl();
+       $o .= L10n::t('This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.',
+               '<strong>' . FRIENDICA_VERSION . '</strong>', System::baseUrl(), '<strong>' . DB_UPDATE_VERSION . '</strong>',
+               '<strong>' . Config::get("system", "post_update_version") . '</strong>');
        $o .= '</p>' . PHP_EOL;
 
        $o .= '<p>';
index 7470f698738aceda99174f8a392db7079f2699f3..7420f98c98ba9abdc0e85a48cd58f233e8ad8997 100644 (file)
@@ -180,6 +180,8 @@ class L10n extends BaseObject
         */
        public static function tt($singular, $plural, $count)
        {
+               $a = self::getApp();
+
                $lang = Config::get('system', 'language');
 
                if (!empty($a->strings[$singular])) {
index 5cc892d095c822a5600599a9146eb1ea49fdbfa3..8805961153d736315b2c3c51220de9e6fd32782b 100644 (file)
@@ -7,6 +7,7 @@ namespace Friendica\Database;
 use Friendica\Core\Config;
 use Friendica\Model\Contact;
 use Friendica\Model\Item;
+use Friendica\Model\ItemURI;
 use Friendica\Model\PermissionSet;
 use Friendica\Database\DBA;
 
@@ -34,6 +35,9 @@ class PostUpdate
                if (!self::update1279()) {
                        return;
                }
+               if (!self::update1281()) {
+                       return;
+               }
        }
 
        /**
@@ -363,4 +367,81 @@ class PostUpdate
 
                $item['language'] = json_encode($lang_arr);
        }
+
+       /**
+        * @brief update item-uri data. Prerequisite for the next item structure update.
+        *
+        * @return bool "true" when the job is done
+        */
+       private static function update1281()
+       {
+               // Was the script completed?
+               if (Config::get("system", "post_update_version") >= 1281) {
+                       return true;
+               }
+
+               $id = Config::get("system", "post_update_version_1281_id", 0);
+
+               logger("Start from item " . $id, LOGGER_DEBUG);
+
+               $fields = ['id', 'guid', 'uri', 'uri-id', 'parent-uri', 'parent-uri-id', 'thr-parent', 'thr-parent-id'];
+
+               $start_id = $id;
+               $rows = 0;
+               $condition = ["`id` > ?", $id];
+               $params = ['order' => ['id'], 'limit' => 10000];
+               $items = DBA::select('item', $fields, $condition, $params);
+               while ($item = DBA::fetch($items)) {
+                       $id = $item['id'];
+
+                       if (empty($item['uri'])) {
+                               // Should not happen
+                               continue;
+                       } elseif (empty($item['uri-id'])) {
+                               $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
+                       }
+
+                       if (empty($item['parent-uri'])) {
+                               $item['parent-uri-id'] = $item['uri-id'];
+                       } elseif (empty($item['parent-uri-id'])) {
+                               $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
+                       }
+
+                       // Very old items don't have this field
+                       if (empty($item['thr-parent'])) {
+                               $item['thr-parent-id'] = $item['parent-uri-id'];
+                       } elseif (empty($item['thr-parent-id'])) {
+                               $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
+                       }
+
+                       unset($item['id']);
+                       unset($item['guid']);
+                       unset($item['uri']);
+                       unset($item['parent-uri']);
+                       unset($item['thr-parent']);
+
+                       DBA::update('item', $item, ['id' => $id]);
+
+                       ++$rows;
+               }
+               DBA::close($items);
+
+               Config::set("system", "post_update_version_1281_id", $id);
+
+               logger("Processed rows: " . $rows . " - last processed item:  " . $id, LOGGER_DEBUG);
+
+               if ($start_id == $id) {
+                       logger("Updating item-uri in item-activity", LOGGER_DEBUG);
+                       DBA::e("UPDATE `item-activity` INNER JOIN `item-uri` ON `item-uri`.`uri` = `item-activity`.`uri` SET `item-activity`.`uri-id` = `item-uri`.`id` WHERE `item-activity`.`uri-id` IS NULL");
+
+                       logger("Updating item-uri in item-content", LOGGER_DEBUG);
+                       DBA::e("UPDATE `item-content` INNER JOIN `item-uri` ON `item-uri`.`uri` = `item-content`.`uri` SET `item-content`.`uri-id` = `item-uri`.`id` WHERE `item-content`.`uri-id` IS NULL");
+
+                       Config::set("system", "post_update_version", 1281);
+                       logger("Done", LOGGER_DEBUG);
+                       return true;
+               }
+
+               return false;
+       }
 }
index d082d02c1b1143afec3426480b80aec529948f72..6d0b1901bdc9fbc4b2ced855ccd5591e515cc60f 100644 (file)
@@ -1888,7 +1888,7 @@ class Item extends BaseObject
                }
 
                $fields = ['uri' => $item['uri'], 'activity' => $activity_index,
-                       'uri-hash' => $item['uri-hash']];
+                       'uri-hash' => $item['uri-hash'], 'uri-id' => $item['uri-id']];
 
                // We just remove everything that is content
                foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
@@ -1927,7 +1927,8 @@ class Item extends BaseObject
         */
        private static function insertContent(&$item)
        {
-               $fields = ['uri' => $item['uri'], 'uri-plink-hash' => $item['uri-hash']];
+               $fields = ['uri' => $item['uri'], 'uri-plink-hash' => $item['uri-hash'],
+                       'uri-id' => $item['uri-id']];
 
                foreach (array_merge(self::CONTENT_FIELDLIST, self::MIXED_CONTENT_FIELDLIST) as $field) {
                        if (isset($item[$field])) {
index 8d859b7905bfc1733d74a07b354242b603b96613..29601ad32daa77f7b2ae88e06df57bbb4a431dbf 100644 (file)
@@ -1050,7 +1050,11 @@ class Profile
                                $basepath = $urlarr[0];
 
                                if ($basepath != System::baseUrl() && !strstr($dest, '/magic') && !strstr($dest, '/rmagic')) {
-                                       goaway($basepath . '/magic' . '?f=&owa=1&dest=' . $dest);
+                                       $magic_path = $basepath . '/magic' . '?f=&owa=1&dest=' . $dest;
+                                       $serverret = Network::curl($magic_path);
+                                       if (!empty($serverret['success'])) {
+                                               goaway($magic_path);
+                                       }
                                }
                        }
                }
index 172991cd3bea0bd008b5a1f0598251d694a31bf3..a94affd0470398e8f898ba66cb51147ca04a1eb4 100644 (file)
@@ -1471,7 +1471,9 @@ class PortableContact
                        $tags = [];
                        foreach ($data['tags'] as $tag) {
                                $tag = mb_strtolower($tag);
-                               $tags[$tag] = $tag;
+                               if (count($tag) < 100) {
+                                       $tags[$tag] = $tag;
+                               }
                        }
 
                        foreach ($tags as $tag) {
index a938969b5988d02faf507d3bb7206bb4498106b0..32bcdfcc40c137b8cea6d42fa32d11fc5d73c256 100644 (file)
@@ -275,6 +275,12 @@ class Delivery extends BaseObject
 
                        $user = DBA::selectFirst('user', [], ['uid' => $target_uid]);
 
+                       // This should also never fail
+                       if (!DBA::isResult($user)) {
+                               logger('No user found for uid ' . $target_uid);
+                               return;
+                       }
+
                        $target_importer = array_merge($target_importer, $user);
 
                        // Set the user id. This is important if this is a public contact
index 3d0b23c81669010ac9a3e0fb6b738a56b77b3e2d..632bf3b0186c5d9fe1e5d6322b3956174c82c231 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-19 06:28+0200\n"
+"POT-Creation-Date: 2018-08-07 09:58+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,773 +18,719 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: include/conversation.php:148 include/conversation.php:284
-#: include/text.php:1629
+#: include/api.php:1138
+#, php-format
+msgid "Daily posting limit of %d post reached. The post was rejected."
+msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/api.php:1152
+#, php-format
+msgid "Weekly posting limit of %d post reached. The post was rejected."
+msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/api.php:1166
+#, php-format
+msgid "Monthly posting limit of %d post reached. The post was rejected."
+msgstr ""
+
+#: include/api.php:4232 mod/photos.php:89 mod/photos.php:198 mod/photos.php:717
+#: mod/photos.php:1145 mod/photos.php:1162 mod/photos.php:1648
+#: mod/profile_photo.php:84 mod/profile_photo.php:93 mod/profile_photo.php:102
+#: mod/profile_photo.php:211 mod/profile_photo.php:300
+#: mod/profile_photo.php:310 src/Model/User.php:592 src/Model/User.php:600
+#: src/Model/User.php:608
+msgid "Profile Photos"
+msgstr ""
+
+#: include/conversation.php:150 include/conversation.php:286
+#: include/text.php:1630
 msgid "event"
 msgstr ""
 
-#: include/conversation.php:151 include/conversation.php:161
-#: include/conversation.php:287 include/conversation.php:296
+#: include/conversation.php:153 include/conversation.php:163
+#: include/conversation.php:289 include/conversation.php:298
 #: mod/subthread.php:97 mod/tagger.php:70
 msgid "status"
 msgstr ""
 
-#: include/conversation.php:156 include/conversation.php:292
-#: include/text.php:1631 mod/subthread.php:97 mod/tagger.php:70
+#: include/conversation.php:158 include/conversation.php:294
+#: include/text.php:1632 mod/subthread.php:97 mod/tagger.php:70
 msgid "photo"
 msgstr ""
 
-#: include/conversation.php:168
+#: include/conversation.php:170
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:170
+#: include/conversation.php:172
 #, php-format
 msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:172
+#: include/conversation.php:174
 #, php-format
 msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:174
+#: include/conversation.php:176
 #, php-format
 msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:176
+#: include/conversation.php:178
 #, php-format
 msgid "%1$s attends maybe %2$s's %3$s"
 msgstr ""
 
-#: include/conversation.php:211
+#: include/conversation.php:213
 #, php-format
 msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: include/conversation.php:252
+#: include/conversation.php:254
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr ""
 
-#: include/conversation.php:306 mod/tagger.php:108
+#: include/conversation.php:308 mod/tagger.php:108
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: include/conversation.php:328
+#: include/conversation.php:330
 msgid "post/item"
 msgstr ""
 
-#: include/conversation.php:329
+#: include/conversation.php:331
 #, php-format
 msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/conversation.php:515 mod/profiles.php:355 mod/photos.php:1467
+#: include/conversation.php:521 mod/photos.php:1477 mod/profiles.php:352
 msgid "Likes"
 msgstr ""
 
-#: include/conversation.php:515 mod/profiles.php:359 mod/photos.php:1467
+#: include/conversation.php:521 mod/photos.php:1477 mod/profiles.php:356
 msgid "Dislikes"
 msgstr ""
 
-#: include/conversation.php:516 include/conversation.php:1474
-#: mod/photos.php:1468
+#: include/conversation.php:522 include/conversation.php:1481
+#: mod/photos.php:1478
 msgid "Attending"
 msgid_plural "Attending"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/conversation.php:516 mod/photos.php:1468
+#: include/conversation.php:522 mod/photos.php:1478
 msgid "Not attending"
 msgstr ""
 
-#: include/conversation.php:516 mod/photos.php:1468
+#: include/conversation.php:522 mod/photos.php:1478
 msgid "Might attend"
 msgstr ""
 
-#: include/conversation.php:606 mod/photos.php:1524 src/Object/Post.php:194
+#: include/conversation.php:612 mod/photos.php:1534 src/Object/Post.php:194
 msgid "Select"
 msgstr ""
 
-#: include/conversation.php:607 mod/contacts.php:829 mod/contacts.php:1035
-#: mod/photos.php:1525 mod/admin.php:1882 mod/settings.php:729
+#: include/conversation.php:613 mod/admin.php:1883 mod/contacts.php:831
+#: mod/contacts.php:1043 mod/photos.php:1535 mod/settings.php:736
 msgid "Delete"
 msgstr ""
 
-#: include/conversation.php:641 src/Object/Post.php:359 src/Object/Post.php:360
+#: include/conversation.php:647 src/Object/Post.php:361 src/Object/Post.php:362
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/conversation.php:653 src/Object/Post.php:347
+#: include/conversation.php:659 src/Object/Post.php:349
 msgid "Categories:"
 msgstr ""
 
-#: include/conversation.php:654 src/Object/Post.php:348
+#: include/conversation.php:660 src/Object/Post.php:350
 msgid "Filed under:"
 msgstr ""
 
-#: include/conversation.php:661 src/Object/Post.php:373
+#: include/conversation.php:667 src/Object/Post.php:375
 #, php-format
 msgid "%s from %s"
 msgstr ""
 
-#: include/conversation.php:676
+#: include/conversation.php:682
 msgid "View in context"
 msgstr ""
 
-#: include/conversation.php:678 include/conversation.php:1149
-#: mod/wallmessage.php:145 mod/editpost.php:111 mod/message.php:247
-#: mod/message.php:415 mod/photos.php:1439 src/Object/Post.php:398
+#: include/conversation.php:684 include/conversation.php:1155
+#: mod/editpost.php:115 mod/message.php:263 mod/message.php:431
+#: mod/photos.php:1450 mod/wallmessage.php:145 src/Object/Post.php:400
 msgid "Please wait"
 msgstr ""
 
-#: include/conversation.php:751
+#: include/conversation.php:757
 msgid "remove"
 msgstr ""
 
-#: include/conversation.php:755
+#: include/conversation.php:761
 msgid "Delete Selected Items"
 msgstr ""
 
-#: include/conversation.php:855 view/theme/frio/theme.php:357
+#: include/conversation.php:861 view/theme/frio/theme.php:357
 msgid "Follow Thread"
 msgstr ""
 
-#: include/conversation.php:856 src/Model/Contact.php:662
+#: include/conversation.php:862 src/Model/Contact.php:728
 msgid "View Status"
 msgstr ""
 
-#: include/conversation.php:857 include/conversation.php:873
-#: mod/allfriends.php:73 mod/match.php:89 mod/suggest.php:82
-#: mod/directory.php:160 mod/dirfind.php:216 src/Model/Contact.php:602
-#: src/Model/Contact.php:615 src/Model/Contact.php:663
+#: include/conversation.php:863 include/conversation.php:879
+#: mod/allfriends.php:75 mod/directory.php:164 mod/dirfind.php:220
+#: mod/match.php:89 mod/suggest.php:84 src/Model/Contact.php:668
+#: src/Model/Contact.php:681 src/Model/Contact.php:729
 msgid "View Profile"
 msgstr ""
 
-#: include/conversation.php:858 src/Model/Contact.php:664
+#: include/conversation.php:864 src/Model/Contact.php:730
 msgid "View Photos"
 msgstr ""
 
-#: include/conversation.php:859 src/Model/Contact.php:665
+#: include/conversation.php:865 src/Model/Contact.php:731
 msgid "Network Posts"
 msgstr ""
 
-#: include/conversation.php:860 src/Model/Contact.php:666
+#: include/conversation.php:866 src/Model/Contact.php:732
 msgid "View Contact"
 msgstr ""
 
-#: include/conversation.php:861 src/Model/Contact.php:668
+#: include/conversation.php:867 src/Model/Contact.php:734
 msgid "Send PM"
 msgstr ""
 
-#: include/conversation.php:865 src/Model/Contact.php:669
+#: include/conversation.php:871 src/Model/Contact.php:735
 msgid "Poke"
 msgstr ""
 
-#: include/conversation.php:870 mod/follow.php:143 mod/allfriends.php:74
-#: mod/match.php:90 mod/suggest.php:83 mod/contacts.php:595 mod/dirfind.php:217
-#: view/theme/vier/theme.php:203 src/Content/Widget.php:61
-#: src/Model/Contact.php:616
+#: include/conversation.php:876 mod/allfriends.php:76 mod/contacts.php:597
+#: mod/dirfind.php:221 mod/follow.php:144 mod/match.php:90 mod/suggest.php:85
+#: view/theme/vier/theme.php:199 src/Content/Widget.php:60
+#: src/Model/Contact.php:682
 msgid "Connect/Follow"
 msgstr ""
 
-#: include/conversation.php:988
+#: include/conversation.php:994
 #, php-format
 msgid "%s likes this."
 msgstr ""
 
-#: include/conversation.php:991
+#: include/conversation.php:997
 #, php-format
 msgid "%s doesn't like this."
 msgstr ""
 
-#: include/conversation.php:994
+#: include/conversation.php:1000
 #, php-format
 msgid "%s attends."
 msgstr ""
 
-#: include/conversation.php:997
+#: include/conversation.php:1003
 #, php-format
 msgid "%s doesn't attend."
 msgstr ""
 
-#: include/conversation.php:1000
+#: include/conversation.php:1006
 #, php-format
 msgid "%s attends maybe."
 msgstr ""
 
-#: include/conversation.php:1011
+#: include/conversation.php:1017
 msgid "and"
 msgstr ""
 
-#: include/conversation.php:1017
+#: include/conversation.php:1023
 #, php-format
 msgid "and %d other people"
 msgstr ""
 
-#: include/conversation.php:1026
+#: include/conversation.php:1032
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: include/conversation.php:1027
+#: include/conversation.php:1033
 #, php-format
 msgid "%s like this."
 msgstr ""
 
-#: include/conversation.php:1030
+#: include/conversation.php:1036
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: include/conversation.php:1031
+#: include/conversation.php:1037
 #, php-format
 msgid "%s don't like this."
 msgstr ""
 
-#: include/conversation.php:1034
+#: include/conversation.php:1040
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: include/conversation.php:1035
+#: include/conversation.php:1041
 #, php-format
 msgid "%s attend."
 msgstr ""
 
-#: include/conversation.php:1038
+#: include/conversation.php:1044
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: include/conversation.php:1039
+#: include/conversation.php:1045
 #, php-format
 msgid "%s don't attend."
 msgstr ""
 
-#: include/conversation.php:1042
+#: include/conversation.php:1048
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: include/conversation.php:1043
+#: include/conversation.php:1049
 #, php-format
 msgid "%s attend maybe."
 msgstr ""
 
-#: include/conversation.php:1073 include/conversation.php:1089
+#: include/conversation.php:1079 include/conversation.php:1095
 msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: include/conversation.php:1074 include/conversation.php:1090
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:183
-#: mod/message.php:190 mod/message.php:328 mod/message.php:335
+#: include/conversation.php:1080 include/conversation.php:1096
+#: mod/message.php:199 mod/message.php:206 mod/message.php:344
+#: mod/message.php:351 mod/wallmessage.php:120 mod/wallmessage.php:127
 msgid "Please enter a link URL:"
 msgstr ""
 
-#: include/conversation.php:1075 include/conversation.php:1091
+#: include/conversation.php:1081 include/conversation.php:1097
 msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: include/conversation.php:1076 include/conversation.php:1092
+#: include/conversation.php:1082 include/conversation.php:1098
 msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: include/conversation.php:1077 include/conversation.php:1093
+#: include/conversation.php:1083 include/conversation.php:1099
 msgid "Tag term:"
 msgstr ""
 
-#: include/conversation.php:1078 include/conversation.php:1094 mod/filer.php:34
+#: include/conversation.php:1084 include/conversation.php:1100 mod/filer.php:34
 msgid "Save to Folder:"
 msgstr ""
 
-#: include/conversation.php:1079 include/conversation.php:1095
+#: include/conversation.php:1085 include/conversation.php:1101
 msgid "Where are you right now?"
 msgstr ""
 
-#: include/conversation.php:1080
+#: include/conversation.php:1086
 msgid "Delete item(s)?"
 msgstr ""
 
-#: include/conversation.php:1127
+#: include/conversation.php:1133
 msgid "New Post"
 msgstr ""
 
-#: include/conversation.php:1130
+#: include/conversation.php:1136
 msgid "Share"
 msgstr ""
 
-#: include/conversation.php:1131 mod/wallmessage.php:143 mod/editpost.php:97
-#: mod/message.php:245 mod/message.php:412
+#: include/conversation.php:1137 mod/editpost.php:101 mod/message.php:261
+#: mod/message.php:428 mod/wallmessage.php:143
 msgid "Upload photo"
 msgstr ""
 
-#: include/conversation.php:1132 mod/editpost.php:98
+#: include/conversation.php:1138 mod/editpost.php:102
 msgid "upload photo"
 msgstr ""
 
-#: include/conversation.php:1133 mod/editpost.php:99
+#: include/conversation.php:1139 mod/editpost.php:103
 msgid "Attach file"
 msgstr ""
 
-#: include/conversation.php:1134 mod/editpost.php:100
+#: include/conversation.php:1140 mod/editpost.php:104
 msgid "attach file"
 msgstr ""
 
-#: include/conversation.php:1135 mod/wallmessage.php:144 mod/editpost.php:101
-#: mod/message.php:246 mod/message.php:413
+#: include/conversation.php:1141 mod/editpost.php:105 mod/message.php:262
+#: mod/message.php:429 mod/wallmessage.php:144
 msgid "Insert web link"
 msgstr ""
 
-#: include/conversation.php:1136 mod/editpost.php:102
+#: include/conversation.php:1142 mod/editpost.php:106
 msgid "web link"
 msgstr ""
 
-#: include/conversation.php:1137 mod/editpost.php:103
+#: include/conversation.php:1143 mod/editpost.php:107
 msgid "Insert video link"
 msgstr ""
 
-#: include/conversation.php:1138 mod/editpost.php:104
+#: include/conversation.php:1144 mod/editpost.php:108
 msgid "video link"
 msgstr ""
 
-#: include/conversation.php:1139 mod/editpost.php:105
+#: include/conversation.php:1145 mod/editpost.php:109
 msgid "Insert audio link"
 msgstr ""
 
-#: include/conversation.php:1140 mod/editpost.php:106
+#: include/conversation.php:1146 mod/editpost.php:110
 msgid "audio link"
 msgstr ""
 
-#: include/conversation.php:1141 mod/editpost.php:107
+#: include/conversation.php:1147 mod/editpost.php:111
 msgid "Set your location"
 msgstr ""
 
-#: include/conversation.php:1142 mod/editpost.php:108
+#: include/conversation.php:1148 mod/editpost.php:112
 msgid "set location"
 msgstr ""
 
-#: include/conversation.php:1143 mod/editpost.php:109
+#: include/conversation.php:1149 mod/editpost.php:113
 msgid "Clear browser location"
 msgstr ""
 
-#: include/conversation.php:1144 mod/editpost.php:110
+#: include/conversation.php:1150 mod/editpost.php:114
 msgid "clear location"
 msgstr ""
 
-#: include/conversation.php:1146 mod/editpost.php:124
+#: include/conversation.php:1152 mod/editpost.php:129
 msgid "Set title"
 msgstr ""
 
-#: include/conversation.php:1148 mod/editpost.php:126
+#: include/conversation.php:1154 mod/editpost.php:131
 msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: include/conversation.php:1150 mod/editpost.php:112
+#: include/conversation.php:1156 mod/editpost.php:116
 msgid "Permission settings"
 msgstr ""
 
-#: include/conversation.php:1151 mod/editpost.php:141
+#: include/conversation.php:1157 mod/editpost.php:146
 msgid "permissions"
 msgstr ""
 
-#: include/conversation.php:1159 mod/editpost.php:121
+#: include/conversation.php:1166 mod/editpost.php:126
 msgid "Public post"
 msgstr ""
 
-#: include/conversation.php:1163 mod/events.php:529 mod/editpost.php:132
-#: mod/photos.php:1458 mod/photos.php:1497 mod/photos.php:1558
-#: src/Object/Post.php:801
+#: include/conversation.php:1170 mod/editpost.php:137 mod/events.php:530
+#: mod/photos.php:1468 mod/photos.php:1507 mod/photos.php:1567
+#: src/Object/Post.php:803
 msgid "Preview"
 msgstr ""
 
-#: include/conversation.php:1167 include/items.php:386 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/follow.php:161 mod/videos.php:147
-#: mod/editpost.php:135 mod/suggest.php:41 mod/tagrm.php:19 mod/tagrm.php:91
-#: mod/unfollow.php:117 mod/contacts.php:475 mod/message.php:141
-#: mod/photos.php:246 mod/photos.php:315 mod/dfrn_request.php:657
-#: mod/settings.php:669 mod/settings.php:695
+#: include/conversation.php:1174 include/items.php:401 mod/contacts.php:474
+#: mod/dfrn_request.php:654 mod/editpost.php:140 mod/fbrowser.php:104
+#: mod/fbrowser.php:135 mod/follow.php:162 mod/message.php:157
+#: mod/photos.php:254 mod/photos.php:323 mod/settings.php:676
+#: mod/settings.php:702 mod/suggest.php:42 mod/tagrm.php:19 mod/tagrm.php:91
+#: mod/unfollow.php:118 mod/videos.php:146
 msgid "Cancel"
 msgstr ""
 
-#: include/conversation.php:1172
+#: include/conversation.php:1179
 msgid "Post to Groups"
 msgstr ""
 
-#: include/conversation.php:1173
+#: include/conversation.php:1180
 msgid "Post to Contacts"
 msgstr ""
 
-#: include/conversation.php:1174
+#: include/conversation.php:1181
 msgid "Private post"
 msgstr ""
 
-#: include/conversation.php:1179 mod/editpost.php:139 src/Model/Profile.php:340
+#: include/conversation.php:1186 mod/editpost.php:144 src/Model/Profile.php:340
 msgid "Message"
 msgstr ""
 
-#: include/conversation.php:1180 mod/editpost.php:140
+#: include/conversation.php:1187 mod/editpost.php:145
 msgid "Browser"
 msgstr ""
 
-#: include/conversation.php:1445
+#: include/conversation.php:1452
 msgid "View all"
 msgstr ""
 
-#: include/conversation.php:1468
+#: include/conversation.php:1475
 msgid "Like"
 msgid_plural "Likes"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/conversation.php:1471
+#: include/conversation.php:1478
 msgid "Dislike"
 msgid_plural "Dislikes"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/conversation.php:1477
+#: include/conversation.php:1484
 msgid "Not Attending"
 msgid_plural "Not Attending"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/conversation.php:1480 src/Content/ContactSelector.php:125
+#: include/conversation.php:1487 src/Content/ContactSelector.php:123
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/items.php:344 mod/notice.php:22 mod/viewsrc.php:22 mod/admin.php:281
-#: mod/admin.php:1938 mod/admin.php:2186 mod/display.php:70 mod/display.php:245
-#: mod/display.php:342
-msgid "Item not found."
-msgstr ""
-
-#: include/items.php:381
-msgid "Do you really want to delete this item?"
-msgstr ""
-
-#: include/items.php:383 mod/api.php:110 mod/follow.php:150
-#: mod/profiles.php:543 mod/profiles.php:546 mod/profiles.php:568
-#: mod/suggest.php:38 mod/contacts.php:472 mod/message.php:138
-#: mod/dfrn_request.php:647 mod/register.php:236 mod/settings.php:1093
-#: mod/settings.php:1099 mod/settings.php:1106 mod/settings.php:1110
-#: mod/settings.php:1114 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1146 mod/settings.php:1147
-#: mod/settings.php:1148 mod/settings.php:1149 mod/settings.php:1150
-msgid "Yes"
-msgstr ""
-
-#: include/items.php:400 mod/api.php:35 mod/api.php:40 mod/attach.php:38
-#: mod/common.php:26 mod/repair_ostatus.php:13 mod/manage.php:131
-#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
-#: mod/wallmessage.php:103 mod/fsuggest.php:80 mod/cal.php:304
-#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
-#: mod/ostatus_subscribe.php:16 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/crepair.php:98 mod/dfrn_confirm.php:68
-#: mod/events.php:194 mod/profiles.php:182 mod/profiles.php:513
-#: mod/allfriends.php:21 mod/editpost.php:19 mod/suggest.php:60
-#: mod/unfollow.php:15 mod/unfollow.php:57 mod/unfollow.php:90
-#: mod/viewcontacts.php:57 mod/contacts.php:386 mod/dirfind.php:24
-#: mod/group.php:26 mod/message.php:59 mod/message.php:104 mod/network.php:32
-#: mod/nogroup.php:23 mod/notifications.php:65 mod/photos.php:177
-#: mod/photos.php:1036 mod/poke.php:146 mod/wall_attach.php:75
-#: mod/wall_attach.php:78 mod/wall_upload.php:103 mod/wall_upload.php:106
-#: mod/invite.php:20 mod/invite.php:111 mod/item.php:160 mod/notes.php:31
-#: mod/profile_photo.php:30 mod/profile_photo.php:173 mod/profile_photo.php:187
-#: mod/profile_photo.php:199 mod/register.php:52 mod/regmod.php:107
-#: mod/settings.php:43 mod/settings.php:142 mod/settings.php:658
-#: mod/uimport.php:28 index.php:430
-msgid "Permission denied."
-msgstr ""
-
-#: include/items.php:472 src/Content/Feature.php:96
-msgid "Archives"
-msgstr ""
-
-#: include/items.php:478 view/theme/vier/theme.php:260
-#: src/Content/ForumManager.php:131 src/Content/Widget.php:317
-#: src/Object/Post.php:426 src/App.php:787
-msgid "show more"
-msgstr ""
-
-#: include/api.php:1141
-#, php-format
-msgid "Daily posting limit of %d post reached. The post was rejected."
-msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/api.php:1155
-#, php-format
-msgid "Weekly posting limit of %d post reached. The post was rejected."
-msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/api.php:1169
-#, php-format
-msgid "Monthly posting limit of %d post reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:4238 mod/photos.php:89 mod/photos.php:192 mod/photos.php:706
-#: mod/photos.php:1134 mod/photos.php:1151 mod/photos.php:1638
-#: mod/profile_photo.php:82 mod/profile_photo.php:91 mod/profile_photo.php:100
-#: mod/profile_photo.php:209 mod/profile_photo.php:299
-#: mod/profile_photo.php:309 src/Model/User.php:593 src/Model/User.php:601
-#: src/Model/User.php:609
-msgid "Profile Photos"
-msgstr ""
-
-#: include/enotify.php:32
+#: include/enotify.php:38
 msgid "Friendica Notification"
 msgstr ""
 
-#: include/enotify.php:35
+#: include/enotify.php:41
 msgid "Thank You,"
 msgstr ""
 
-#: include/enotify.php:38
+#: include/enotify.php:44
 #, php-format
 msgid "%1$s, %2$s Administrator"
 msgstr ""
 
-#: include/enotify.php:40
+#: include/enotify.php:46
 #, php-format
 msgid "%s Administrator"
 msgstr ""
 
-#: include/enotify.php:98
+#: include/enotify.php:109
 #, php-format
 msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: include/enotify.php:100
+#: include/enotify.php:111
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: include/enotify.php:101
+#: include/enotify.php:112
 msgid "a private message"
 msgstr ""
 
-#: include/enotify.php:101
+#: include/enotify.php:112
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: include/enotify.php:103
+#: include/enotify.php:114
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: include/enotify.php:141
+#: include/enotify.php:152
 #, php-format
 msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: include/enotify.php:149
+#: include/enotify.php:160
 #, php-format
 msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: include/enotify.php:159
+#: include/enotify.php:170
 #, php-format
 msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: include/enotify.php:171
+#: include/enotify.php:182
 #, php-format
 msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: include/enotify.php:173
+#: include/enotify.php:184
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: include/enotify.php:176 include/enotify.php:191 include/enotify.php:206
-#: include/enotify.php:221 include/enotify.php:240 include/enotify.php:256
+#: include/enotify.php:187 include/enotify.php:202 include/enotify.php:217
+#: include/enotify.php:232 include/enotify.php:251 include/enotify.php:267
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: include/enotify.php:183
+#: include/enotify.php:194
 #, php-format
 msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: include/enotify.php:185
+#: include/enotify.php:196
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: include/enotify.php:186
+#: include/enotify.php:197
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: include/enotify.php:198
+#: include/enotify.php:209
 #, php-format
 msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: include/enotify.php:200
+#: include/enotify.php:211
 #, php-format
 msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: include/enotify.php:201
+#: include/enotify.php:212
 #, php-format
 msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: include/enotify.php:213
+#: include/enotify.php:224
 #, php-format
 msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: include/enotify.php:215
+#: include/enotify.php:226
 #, php-format
 msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: include/enotify.php:216
+#: include/enotify.php:227
 #, php-format
 msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: include/enotify.php:228
+#: include/enotify.php:239
 #, php-format
 msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: include/enotify.php:230
+#: include/enotify.php:241
 #, php-format
 msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: include/enotify.php:231
+#: include/enotify.php:242
 #, php-format
 msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: include/enotify.php:248
+#: include/enotify.php:259
 #, php-format
 msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: include/enotify.php:250
+#: include/enotify.php:261
 #, php-format
 msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: include/enotify.php:251
+#: include/enotify.php:262
 #, php-format
 msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: include/enotify.php:263
+#: include/enotify.php:274
 msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: include/enotify.php:265
+#: include/enotify.php:276
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: include/enotify.php:266
+#: include/enotify.php:277
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: include/enotify.php:271 include/enotify.php:317
+#: include/enotify.php:282 include/enotify.php:328
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr ""
 
-#: include/enotify.php:273
+#: include/enotify.php:284
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: include/enotify.php:280
+#: include/enotify.php:291
 msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: include/enotify.php:282 include/enotify.php:283
+#: include/enotify.php:293 include/enotify.php:294
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: include/enotify.php:290
+#: include/enotify.php:301
 msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: include/enotify.php:292 include/enotify.php:293
+#: include/enotify.php:303 include/enotify.php:304
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: include/enotify.php:306
+#: include/enotify.php:317
 msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: include/enotify.php:308
+#: include/enotify.php:319
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: include/enotify.php:309
+#: include/enotify.php:320
 #, php-format
 msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: include/enotify.php:315
+#: include/enotify.php:326
 msgid "Name:"
 msgstr ""
 
-#: include/enotify.php:316
+#: include/enotify.php:327
 msgid "Photo:"
 msgstr ""
 
-#: include/enotify.php:319
+#: include/enotify.php:330
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: include/enotify.php:327 include/enotify.php:342
+#: include/enotify.php:338 include/enotify.php:353
 msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: include/enotify.php:329 include/enotify.php:344
+#: include/enotify.php:340 include/enotify.php:355
 #, php-format
 msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: include/enotify.php:330 include/enotify.php:345
+#: include/enotify.php:341 include/enotify.php:356
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: include/enotify.php:335
+#: include/enotify.php:346
 msgid ""
 "You are now mutual friends and may exchange status updates, photos, and "
 "email without restriction."
 msgstr ""
 
-#: include/enotify.php:337
+#: include/enotify.php:348
 #, php-format
 msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/enotify.php:350
+#: include/enotify.php:361
 #, php-format
 msgid ""
 "'%1$s' has chosen to accept you a fan, which restricts some forms of "
@@ -793,37 +739,37 @@ msgid ""
 "automatically."
 msgstr ""
 
-#: include/enotify.php:352
+#: include/enotify.php:363
 #, 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:354
+#: include/enotify.php:365
 #, php-format
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/enotify.php:364 mod/removeme.php:47
+#: include/enotify.php:375 mod/removeme.php:47
 msgid "[Friendica System Notify]"
 msgstr ""
 
-#: include/enotify.php:364
+#: include/enotify.php:375
 msgid "registration request"
 msgstr ""
 
-#: include/enotify.php:366
+#: include/enotify.php:377
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: include/enotify.php:367
+#: include/enotify.php:378
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: include/enotify.php:372
+#: include/enotify.php:383
 #, php-format
 msgid ""
 "Full Name:\t%s\n"
@@ -831,381 +777,407 @@ msgid ""
 "Login Name:\t%s (%s)"
 msgstr ""
 
-#: include/enotify.php:378
+#: include/enotify.php:389
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/security.php:81
+#: include/items.php:358 mod/admin.php:282 mod/admin.php:1940
+#: mod/admin.php:2188 mod/display.php:70 mod/display.php:245
+#: mod/display.php:342 mod/notice.php:22 mod/viewsrc.php:22
+msgid "Item not found."
+msgstr ""
+
+#: include/items.php:396
+msgid "Do you really want to delete this item?"
+msgstr ""
+
+#: include/items.php:398 mod/api.php:110 mod/contacts.php:471
+#: mod/dfrn_request.php:644 mod/follow.php:151 mod/message.php:154
+#: mod/profiles.php:541 mod/profiles.php:544 mod/profiles.php:566
+#: mod/register.php:237 mod/settings.php:1100 mod/settings.php:1106
+#: mod/settings.php:1113 mod/settings.php:1117 mod/settings.php:1121
+#: mod/settings.php:1125 mod/settings.php:1129 mod/settings.php:1133
+#: mod/settings.php:1153 mod/settings.php:1154 mod/settings.php:1155
+#: mod/settings.php:1156 mod/settings.php:1157 mod/suggest.php:39
+msgid "Yes"
+msgstr ""
+
+#: include/items.php:415 mod/ostatus_subscribe.php:16 mod/uimport.php:28
+#: mod/allfriends.php:23 mod/api.php:35 mod/api.php:40 mod/attach.php:39
+#: mod/cal.php:306 mod/common.php:28 mod/contacts.php:385 mod/crepair.php:99
+#: mod/delegate.php:26 mod/delegate.php:44 mod/delegate.php:55
+#: mod/dfrn_confirm.php:65 mod/dirfind.php:26 mod/editpost.php:19
+#: mod/events.php:195 mod/follow.php:18 mod/follow.php:55 mod/follow.php:119
+#: mod/fsuggest.php:80 mod/group.php:26 mod/invite.php:21 mod/invite.php:112
+#: mod/item.php:165 mod/manage.php:131 mod/message.php:60 mod/message.php:105
+#: mod/network.php:33 mod/nogroup.php:23 mod/notes.php:32
+#: mod/notifications.php:66 mod/photos.php:183 mod/photos.php:1047
+#: mod/poke.php:145 mod/profile_photo.php:29 mod/profile_photo.php:176
+#: mod/profile_photo.php:198 mod/profiles.php:179 mod/profiles.php:511
+#: mod/register.php:53 mod/regmod.php:107 mod/repair_ostatus.php:15
+#: mod/settings.php:43 mod/settings.php:149 mod/settings.php:665
+#: mod/suggest.php:60 mod/unfollow.php:16 mod/unfollow.php:58
+#: mod/unfollow.php:91 mod/viewcontacts.php:59 mod/wall_attach.php:76
+#: mod/wall_attach.php:79 mod/wall_upload.php:104 mod/wall_upload.php:107
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 index.php:432
+msgid "Permission denied."
+msgstr ""
+
+#: include/items.php:486 src/Content/Feature.php:96
+msgid "Archives"
+msgstr ""
+
+#: include/items.php:492 view/theme/vier/theme.php:256
+#: src/Content/ForumManager.php:130 src/Content/Widget.php:316
+#: src/Object/Post.php:428 src/App.php:784
+msgid "show more"
+msgstr ""
+
+#: include/security.php:83
 msgid "Welcome "
 msgstr ""
 
-#: include/security.php:82
+#: include/security.php:84
 msgid "Please upload a profile photo."
 msgstr ""
 
-#: include/security.php:84
+#: include/security.php:86
 msgid "Welcome back "
 msgstr ""
 
-#: include/security.php:451
+#: include/security.php:428
 msgid ""
 "The form security token was not correct. This probably happened because the "
 "form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
-#: include/text.php:302
+#: include/text.php:301
 msgid "newer"
 msgstr ""
 
-#: include/text.php:303
+#: include/text.php:302
 msgid "older"
 msgstr ""
 
-#: include/text.php:308
+#: include/text.php:307
 msgid "first"
 msgstr ""
 
-#: include/text.php:309
+#: include/text.php:308
 msgid "prev"
 msgstr ""
 
-#: include/text.php:343
+#: include/text.php:342
 msgid "next"
 msgstr ""
 
-#: include/text.php:344
+#: include/text.php:343
 msgid "last"
 msgstr ""
 
-#: include/text.php:398
+#: include/text.php:397
 msgid "Loading more entries..."
 msgstr ""
 
-#: include/text.php:399
+#: include/text.php:398
 msgid "The end"
 msgstr ""
 
-#: include/text.php:765
+#: include/text.php:766
 msgid "No contacts"
 msgstr ""
 
-#: include/text.php:789
+#: include/text.php:790
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/text.php:802
+#: include/text.php:803
 msgid "View Contacts"
 msgstr ""
 
-#: include/text.php:887 mod/editpost.php:96 mod/filer.php:35 mod/notes.php:53
+#: include/text.php:888 mod/filer.php:35 mod/editpost.php:100 mod/notes.php:54
 msgid "Save"
 msgstr ""
 
-#: include/text.php:887
+#: include/text.php:888
 msgid "Follow"
 msgstr ""
 
-#: include/text.php:893 mod/search.php:161 src/Content/Nav.php:142
+#: include/text.php:894 mod/search.php:162 src/Content/Nav.php:142
 msgid "Search"
 msgstr ""
 
-#: include/text.php:896 src/Content/Nav.php:58
+#: include/text.php:897 src/Content/Nav.php:58
 msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/text.php:902 src/Content/Nav.php:145
+#: include/text.php:903 src/Content/Nav.php:145
 msgid "Full Text"
 msgstr ""
 
-#: include/text.php:903 src/Content/Widget/TagCloud.php:54
+#: include/text.php:904 src/Content/Widget/TagCloud.php:53
 #: src/Content/Nav.php:146
 msgid "Tags"
 msgstr ""
 
-#: include/text.php:904 mod/viewcontacts.php:122 mod/contacts.php:813
-#: mod/contacts.php:874 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:213 src/Model/Profile.php:963 src/Model/Profile.php:966
+#: include/text.php:905 mod/contacts.php:815 mod/contacts.php:876
+#: mod/viewcontacts.php:124 view/theme/frio/theme.php:270
+#: src/Content/Nav.php:147 src/Content/Nav.php:213 src/Model/Profile.php:963
+#: src/Model/Profile.php:966
 msgid "Contacts"
 msgstr ""
 
-#: include/text.php:907 view/theme/vier/theme.php:255
-#: src/Content/ForumManager.php:126 src/Content/Nav.php:151
+#: include/text.php:908 view/theme/vier/theme.php:251
+#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
 msgid "Forums"
 msgstr ""
 
-#: include/text.php:951
+#: include/text.php:952
 msgid "poke"
 msgstr ""
 
-#: include/text.php:951
+#: include/text.php:952
 msgid "poked"
 msgstr ""
 
-#: include/text.php:952
+#: include/text.php:953
 msgid "ping"
 msgstr ""
 
-#: include/text.php:952
+#: include/text.php:953
 msgid "pinged"
 msgstr ""
 
-#: include/text.php:953
+#: include/text.php:954
 msgid "prod"
 msgstr ""
 
-#: include/text.php:953
+#: include/text.php:954
 msgid "prodded"
 msgstr ""
 
-#: include/text.php:954
+#: include/text.php:955
 msgid "slap"
 msgstr ""
 
-#: include/text.php:954
+#: include/text.php:955
 msgid "slapped"
 msgstr ""
 
-#: include/text.php:955
+#: include/text.php:956
 msgid "finger"
 msgstr ""
 
-#: include/text.php:955
+#: include/text.php:956
 msgid "fingered"
 msgstr ""
 
-#: include/text.php:956
+#: include/text.php:957
 msgid "rebuff"
 msgstr ""
 
-#: include/text.php:956
+#: include/text.php:957
 msgid "rebuffed"
 msgstr ""
 
-#: include/text.php:970 mod/settings.php:934 src/Model/Event.php:379
+#: include/text.php:971 mod/settings.php:941 src/Model/Event.php:388
 msgid "Monday"
 msgstr ""
 
-#: include/text.php:970 src/Model/Event.php:380
+#: include/text.php:971 src/Model/Event.php:389
 msgid "Tuesday"
 msgstr ""
 
-#: include/text.php:970 src/Model/Event.php:381
+#: include/text.php:971 src/Model/Event.php:390
 msgid "Wednesday"
 msgstr ""
 
-#: include/text.php:970 src/Model/Event.php:382
+#: include/text.php:971 src/Model/Event.php:391
 msgid "Thursday"
 msgstr ""
 
-#: include/text.php:970 src/Model/Event.php:383
+#: include/text.php:971 src/Model/Event.php:392
 msgid "Friday"
 msgstr ""
 
-#: include/text.php:970 src/Model/Event.php:384
+#: include/text.php:971 src/Model/Event.php:393
 msgid "Saturday"
 msgstr ""
 
-#: include/text.php:970 mod/settings.php:934 src/Model/Event.php:378
+#: include/text.php:971 mod/settings.php:941 src/Model/Event.php:387
 msgid "Sunday"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:399
+#: include/text.php:975 src/Model/Event.php:408
 msgid "January"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:400
+#: include/text.php:975 src/Model/Event.php:409
 msgid "February"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:401
+#: include/text.php:975 src/Model/Event.php:410
 msgid "March"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:402
+#: include/text.php:975 src/Model/Event.php:411
 msgid "April"
 msgstr ""
 
-#: include/text.php:974 include/text.php:991 src/Model/Event.php:390
-#: src/Model/Event.php:403
+#: include/text.php:975 include/text.php:992 src/Model/Event.php:399
+#: src/Model/Event.php:412
 msgid "May"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:404
+#: include/text.php:975 src/Model/Event.php:413
 msgid "June"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:405
+#: include/text.php:975 src/Model/Event.php:414
 msgid "July"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:406
+#: include/text.php:975 src/Model/Event.php:415
 msgid "August"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:407
+#: include/text.php:975 src/Model/Event.php:416
 msgid "September"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:408
+#: include/text.php:975 src/Model/Event.php:417
 msgid "October"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:409
+#: include/text.php:975 src/Model/Event.php:418
 msgid "November"
 msgstr ""
 
-#: include/text.php:974 src/Model/Event.php:410
+#: include/text.php:975 src/Model/Event.php:419
 msgid "December"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:371
+#: include/text.php:989 src/Model/Event.php:380
 msgid "Mon"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:372
+#: include/text.php:989 src/Model/Event.php:381
 msgid "Tue"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:373
+#: include/text.php:989 src/Model/Event.php:382
 msgid "Wed"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:374
+#: include/text.php:989 src/Model/Event.php:383
 msgid "Thu"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:375
+#: include/text.php:989 src/Model/Event.php:384
 msgid "Fri"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:376
+#: include/text.php:989 src/Model/Event.php:385
 msgid "Sat"
 msgstr ""
 
-#: include/text.php:988 src/Model/Event.php:370
+#: include/text.php:989 src/Model/Event.php:379
 msgid "Sun"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:386
+#: include/text.php:992 src/Model/Event.php:395
 msgid "Jan"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:387
+#: include/text.php:992 src/Model/Event.php:396
 msgid "Feb"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:388
+#: include/text.php:992 src/Model/Event.php:397
 msgid "Mar"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:389
+#: include/text.php:992 src/Model/Event.php:398
 msgid "Apr"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:392
+#: include/text.php:992 src/Model/Event.php:401
 msgid "Jul"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:393
+#: include/text.php:992 src/Model/Event.php:402
 msgid "Aug"
 msgstr ""
 
-#: include/text.php:991
+#: include/text.php:992
 msgid "Sep"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:395
+#: include/text.php:992 src/Model/Event.php:404
 msgid "Oct"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:396
+#: include/text.php:992 src/Model/Event.php:405
 msgid "Nov"
 msgstr ""
 
-#: include/text.php:991 src/Model/Event.php:397
+#: include/text.php:992 src/Model/Event.php:406
 msgid "Dec"
 msgstr ""
 
-#: include/text.php:1137
+#: include/text.php:1138
 #, php-format
 msgid "Content warning: %s"
 msgstr ""
 
-#: include/text.php:1202 mod/videos.php:380
+#: include/text.php:1203 mod/videos.php:373
 msgid "View Video"
 msgstr ""
 
-#: include/text.php:1219
+#: include/text.php:1220
 msgid "bytes"
 msgstr ""
 
-#: include/text.php:1252 include/text.php:1263 include/text.php:1298
+#: include/text.php:1253 include/text.php:1264 include/text.php:1299
 msgid "Click to open/close"
 msgstr ""
 
-#: include/text.php:1413
+#: include/text.php:1414
 msgid "View on separate page"
 msgstr ""
 
-#: include/text.php:1414
+#: include/text.php:1415
 msgid "view on separate page"
 msgstr ""
 
-#: include/text.php:1419 include/text.php:1426 src/Model/Event.php:597
+#: include/text.php:1420 include/text.php:1427 src/Model/Event.php:606
 msgid "link to source"
 msgstr ""
 
-#: include/text.php:1633
+#: include/text.php:1634
 msgid "activity"
 msgstr ""
 
-#: include/text.php:1635 src/Object/Post.php:425 src/Object/Post.php:437
+#: include/text.php:1636 src/Object/Post.php:427 src/Object/Post.php:439
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/text.php:1638
+#: include/text.php:1639
 msgid "post"
 msgstr ""
 
-#: include/text.php:1793
+#: include/text.php:1794
 msgid "Item filed"
 msgstr ""
 
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr ""
-
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr ""
-
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr ""
-
-#: mod/api.php:109
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
-msgstr ""
-
-#: mod/api.php:111 mod/follow.php:150 mod/profiles.php:543 mod/profiles.php:547
-#: mod/profiles.php:568 mod/dfrn_request.php:647 mod/register.php:237
-#: mod/settings.php:1093 mod/settings.php:1099 mod/settings.php:1106
-#: mod/settings.php:1110 mod/settings.php:1114 mod/settings.php:1118
-#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1146
-#: mod/settings.php:1147 mod/settings.php:1148 mod/settings.php:1149
-#: mod/settings.php:1150
-msgid "No"
-msgstr ""
-
-#: mod/apps.php:14 index.php:259
+#: mod/apps.php:14 index.php:261
 msgid "You must be logged in to use addons. "
 msgstr ""
 
@@ -1217,22 +1189,6 @@ msgstr ""
 msgid "No installed applications."
 msgstr ""
 
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr ""
-
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr ""
-
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr ""
-
-#: mod/common.php:140 mod/contacts.php:885
-msgid "Common Friends"
-msgstr ""
-
 #: mod/credits.php:18
 msgid "Credits"
 msgstr ""
@@ -1244,34 +1200,6 @@ msgid ""
 "code or the translation of Friendica. Thank you all!"
 msgstr ""
 
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:900
-msgid "Photos"
-msgstr ""
-
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:192
-#: mod/photos.php:1047 mod/photos.php:1134 mod/photos.php:1151
-#: mod/photos.php:1613 mod/photos.php:1627 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr ""
-
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:246
-msgid "Upload"
-msgstr ""
-
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr ""
-
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr ""
-
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr ""
-
 #: mod/maintenance.php:24
 msgid "System down for maintenance"
 msgstr ""
@@ -1307,8 +1235,8 @@ msgid ""
 "join."
 msgstr ""
 
-#: mod/newmember.php:19 mod/admin.php:1990 mod/admin.php:2260
-#: mod/settings.php:124 view/theme/frio/theme.php:269 src/Content/Nav.php:207
+#: mod/newmember.php:19 mod/admin.php:1992 mod/admin.php:2262
+#: mod/settings.php:131 view/theme/frio/theme.php:269 src/Content/Nav.php:207
 msgid "Settings"
 msgstr ""
 
@@ -1331,14 +1259,14 @@ msgid ""
 "potential friends know exactly how to find you."
 msgstr ""
 
-#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:670
-#: mod/contacts.php:862 view/theme/frio/theme.php:260 src/Content/Nav.php:101
+#: mod/newmember.php:24 mod/contacts.php:672 mod/contacts.php:864
+#: mod/profperm.php:113 view/theme/frio/theme.php:260 src/Content/Nav.php:101
 #: src/Model/Profile.php:726 src/Model/Profile.php:859
 #: src/Model/Profile.php:892
 msgid "Profile"
 msgstr ""
 
-#: mod/newmember.php:26 mod/profiles.php:598 mod/profile_photo.php:245
+#: mod/newmember.php:26 mod/profile_photo.php:246 mod/profiles.php:598
 msgid "Upload Profile Photo"
 msgstr ""
 
@@ -1421,7 +1349,7 @@ msgid ""
 "hours."
 msgstr ""
 
-#: mod/newmember.php:43 src/Model/Group.php:414
+#: mod/newmember.php:43 src/Model/Group.php:413
 msgid "Groups"
 msgstr ""
 
@@ -1461,49 +1389,7 @@ msgid ""
 "features and resources."
 msgstr ""
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
-msgstr ""
-
-#: mod/repair_ostatus.php:34
-msgid "Error"
-msgstr ""
-
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
-msgstr ""
-
-#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
-msgid "Keep this window open until done."
-msgstr ""
-
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr ""
-
-#: mod/manage.php:181
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr ""
-
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr ""
-
-#: mod/manage.php:184 mod/localtime.php:56 mod/fsuggest.php:114
-#: mod/crepair.php:148 mod/events.php:531 mod/profiles.php:579
-#: mod/contacts.php:609 mod/message.php:248 mod/message.php:414
-#: mod/photos.php:1065 mod/photos.php:1145 mod/photos.php:1411
-#: mod/photos.php:1457 mod/photos.php:1496 mod/photos.php:1557 mod/poke.php:196
-#: mod/install.php:193 mod/install.php:231 mod/invite.php:154
-#: view/theme/duepuntozero/config.php:71 view/theme/frio/config.php:118
-#: view/theme/quattro/config.php:73 view/theme/vier/config.php:119
-#: src/Object/Post.php:792
-msgid "Submit"
-msgstr ""
-
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:817
+#: mod/localtime.php:19 src/Model/Event.php:34 src/Model/Event.php:826
 msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
@@ -1536,4983 +1422,4925 @@ msgstr ""
 msgid "Please select your timezone:"
 msgstr ""
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr ""
-
-#: mod/notify.php:81 mod/notifications.php:104
-msgid "System Notifications"
+#: mod/localtime.php:56 mod/contacts.php:611 mod/crepair.php:149
+#: mod/events.php:532 mod/fsuggest.php:114 mod/install.php:193
+#: mod/install.php:231 mod/invite.php:155 mod/manage.php:184
+#: mod/message.php:264 mod/message.php:430 mod/photos.php:1076
+#: mod/photos.php:1156 mod/photos.php:1422 mod/photos.php:1467
+#: mod/photos.php:1506 mod/photos.php:1566 mod/poke.php:195
+#: mod/profiles.php:577 view/theme/duepuntozero/config.php:71
+#: view/theme/frio/config.php:118 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:119 src/Object/Post.php:794
+msgid "Submit"
 msgstr ""
 
-#: mod/probe.php:13 mod/webfinger.php:16 mod/videos.php:199
-#: mod/viewcontacts.php:45 mod/community.php:27 mod/directory.php:42
-#: mod/photos.php:916 mod/search.php:104 mod/search.php:110
-#: mod/dfrn_request.php:601 mod/display.php:194
+#: mod/webfinger.php:16 mod/community.php:27 mod/dfrn_request.php:598
+#: mod/directory.php:42 mod/display.php:194 mod/photos.php:927 mod/probe.php:13
+#: mod/search.php:105 mod/search.php:111 mod/videos.php:198
+#: mod/viewcontacts.php:47
 msgid "Public access denied."
 msgstr ""
 
-#: mod/probe.php:14 mod/webfinger.php:17
+#: mod/webfinger.php:17 mod/probe.php:14
 msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
 
-#: mod/profperm.php:28 mod/group.php:83 index.php:429
-msgid "Permission denied"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
 msgstr ""
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
 msgstr ""
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: mod/profperm.php:115 mod/group.php:276
-msgid "Click on a contact to add or remove."
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: mod/profperm.php:124
-msgid "Visible To"
+#: mod/ostatus_subscribe.php:64 mod/repair_ostatus.php:50
+msgid "Done"
 msgstr ""
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
+#: mod/ostatus_subscribe.php:78
+msgid "success"
 msgstr ""
 
-#: mod/uexport.php:44
-msgid "Export account"
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
 msgstr ""
 
-#: mod/uexport.php:44
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: mod/ostatus_subscribe.php:83 src/Object/Post.php:275
+msgid "ignored"
 msgstr ""
 
-#: mod/uexport.php:45
-msgid "Export all"
+#: mod/ostatus_subscribe.php:88 mod/repair_ostatus.php:56
+msgid "Keep this window open until done."
 msgstr ""
 
-#: mod/uexport.php:45
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: mod/babel.php:22
+msgid "Source input"
 msgstr ""
 
-#: mod/uexport.php:52 mod/settings.php:108
-msgid "Export personal data"
+#: mod/babel.php:28
+msgid "BBCode::toPlaintext"
 msgstr ""
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: mod/babel.php:34
+msgid "BBCode::convert (raw HTML)"
 msgstr ""
 
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
+#: mod/babel.php:39
+msgid "BBCode::convert"
 msgstr ""
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
+#: mod/babel.php:45
+msgid "BBCode::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
+#: mod/babel.php:51
+msgid "BBCode::toMarkdown"
 msgstr ""
 
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
+#: mod/babel.php:57
+msgid "BBCode::toMarkdown => Markdown::convert"
 msgstr ""
 
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
+#: mod/babel.php:63
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
 msgstr ""
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
+#: mod/babel.php:69
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 msgstr ""
 
-#: mod/wallmessage.php:132 mod/message.php:233
-msgid "Send Private Message"
+#: mod/babel.php:76
+msgid "Source input \\x28Diaspora format\\x29"
 msgstr ""
 
-#: mod/wallmessage.php:133
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+#: mod/babel.php:82
+msgid "Markdown::toBBCode"
 msgstr ""
 
-#: mod/wallmessage.php:134 mod/message.php:234 mod/message.php:403
-msgid "To:"
+#: mod/babel.php:89
+msgid "Raw HTML input"
 msgstr ""
 
-#: mod/wallmessage.php:135 mod/message.php:238 mod/message.php:405
-msgid "Subject:"
+#: mod/babel.php:94
+msgid "HTML Input"
 msgstr ""
 
-#: mod/wallmessage.php:141 mod/message.php:242 mod/message.php:408
-#: mod/invite.php:149
-msgid "Your message:"
+#: mod/babel.php:100
+msgid "HTML::toBBCode"
 msgstr ""
 
-#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
-#: mod/dfrn_confirm.php:129 mod/redir.php:28 mod/redir.php:126
-msgid "Contact not found."
+#: mod/babel.php:106
+msgid "HTML::toPlaintext"
 msgstr ""
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
+#: mod/babel.php:114
+msgid "Source text"
 msgstr ""
 
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
+#: mod/babel.php:115
+msgid "BBCode"
 msgstr ""
 
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
+#: mod/babel.php:116
+msgid "Markdown"
 msgstr ""
 
-#: mod/cal.php:142 mod/display.php:303 mod/profile.php:174
-msgid "Access to this profile has been restricted."
+#: mod/babel.php:117
+msgid "HTML"
 msgstr ""
 
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:170 src/Model/Profile.php:920 src/Model/Profile.php:931
-msgid "Events"
+#: mod/update_community.php:23 mod/update_display.php:24
+#: mod/update_network.php:29 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
+#: mod/bookmarklet.php:24 src/Content/Nav.php:114 src/Module/Login.php:312
+msgid "Login"
 msgstr ""
 
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
+#: mod/bookmarklet.php:52
+msgid "The post was created"
 msgstr ""
 
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:154
-msgid "Next"
+#: mod/filer.php:34
+msgid "- select -"
 msgstr ""
 
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
+#: mod/help.php:49
+msgid "Help:"
 msgstr ""
 
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
+#: mod/help.php:56 view/theme/vier/theme.php:295 src/Content/Nav.php:134
+msgid "Help"
 msgstr ""
 
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
+#: mod/help.php:62 mod/fetch.php:19 mod/fetch.php:46 mod/fetch.php:53
+#: index.php:308
+msgid "Not Found"
 msgstr ""
 
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
+#: mod/help.php:65 index.php:313
+msgid "Page not found."
 msgstr ""
 
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
 msgstr ""
 
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:69 src/Model/User.php:222
-msgid "User not found"
+#: mod/uimport.php:55 mod/register.php:191
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
+#: mod/uimport.php:70 mod/register.php:287
+msgid "Import"
 msgstr ""
 
-#: mod/cal.php:315
-msgid "No exportable data found"
+#: mod/uimport.php:72
+msgid "Move account"
 msgstr ""
 
-#: mod/cal.php:332
-msgid "calendar"
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
+#: mod/uimport.php:74
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
-#: mod/delegate.php:144
-msgid "No parent user"
+#: mod/uimport.php:75
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
 msgstr ""
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
+#: mod/uimport.php:76
+msgid "Account file"
 msgstr ""
 
-#: mod/delegate.php:159
+#: mod/uimport.php:76
 msgid ""
-"Please enter the password of the parent account to legitimize your request."
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: mod/delegate.php:164
-msgid "Parent User"
+#: mod/admin.php:108
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
+#: mod/admin.php:181 src/Content/Nav.php:175
+msgid "Information"
 msgstr ""
 
-#: mod/delegate.php:168 mod/admin.php:315 mod/admin.php:1405 mod/admin.php:2049
-#: mod/admin.php:2303 mod/admin.php:2377 mod/admin.php:2524
-#: mod/settings.php:668 mod/settings.php:775 mod/settings.php:863
-#: mod/settings.php:952 mod/settings.php:1182
-msgid "Save Settings"
+#: mod/admin.php:182
+msgid "Overview"
 msgstr ""
 
-#: mod/delegate.php:169 src/Content/Nav.php:205
-msgid "Delegate Page Management"
+#: mod/admin.php:183 mod/admin.php:722
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/delegate.php:170
-msgid "Delegates"
+#: mod/admin.php:184
+msgid "Configuration"
 msgstr ""
 
-#: mod/delegate.php:172
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: mod/admin.php:185 mod/admin.php:1405
+msgid "Site"
 msgstr ""
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
+#: mod/admin.php:186 mod/admin.php:1334 mod/admin.php:1873 mod/admin.php:1890
+msgid "Users"
 msgstr ""
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
+#: mod/admin.php:187 mod/admin.php:1990 mod/admin.php:2050 mod/settings.php:94
+msgid "Addons"
 msgstr ""
 
-#: mod/delegate.php:177 mod/tagrm.php:90
-msgid "Remove"
+#: mod/admin.php:188 mod/admin.php:2260 mod/admin.php:2304
+msgid "Themes"
 msgstr ""
 
-#: mod/delegate.php:178
-msgid "Add"
+#: mod/admin.php:189 mod/settings.php:72
+msgid "Additional features"
 msgstr ""
 
-#: mod/delegate.php:179
-msgid "No entries."
+#: mod/admin.php:190 mod/admin.php:309 mod/register.php:290
+#: src/Content/Nav.php:178 src/Module/Tos.php:70
+msgid "Terms of Service"
 msgstr ""
 
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
+#: mod/admin.php:191
+msgid "Database"
 msgstr ""
 
-#: mod/feedtest.php:48
-msgid "Source URL"
+#: mod/admin.php:192
+msgid "DB updates"
 msgstr ""
 
-#: mod/oexchange.php:30
-msgid "Post successful."
+#: mod/admin.php:193 mod/admin.php:757
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
+#: mod/admin.php:194
+msgid "Inspect worker Queue"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
+#: mod/admin.php:195
+msgid "Tools"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
+#: mod/admin.php:196
+msgid "Contact Blocklist"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
+#: mod/admin.php:197 mod/admin.php:371
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
+#: mod/admin.php:198 mod/admin.php:530
+msgid "Delete Item"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
+#: mod/admin.php:199 mod/admin.php:200 mod/admin.php:2379
+msgid "Logs"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:275
-msgid "ignored"
+#: mod/admin.php:201 mod/admin.php:2446
+msgid "View Logs"
 msgstr ""
 
-#: mod/follow.php:45
-msgid "The contact could not be added."
+#: mod/admin.php:203
+msgid "Diagnostics"
 msgstr ""
 
-#: mod/follow.php:62 mod/unfollow.php:65 mod/dfrn_request.php:656
-msgid "Submit Request"
+#: mod/admin.php:204
+msgid "PHP Info"
 msgstr ""
 
-#: mod/follow.php:73
-msgid "You already added this contact."
+#: mod/admin.php:205
+msgid "probe address"
 msgstr ""
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/admin.php:206
+msgid "check webfinger"
 msgstr ""
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/admin.php:225 src/Content/Nav.php:218
+msgid "Admin"
 msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/admin.php:226
+msgid "Addon Features"
 msgstr ""
 
-#: mod/follow.php:149 mod/dfrn_request.php:646
-msgid "Please answer the following:"
+#: mod/admin.php:227
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/follow.php:150 mod/dfrn_request.php:647
-#, php-format
-msgid "Does %s know you?"
+#: mod/admin.php:308 mod/admin.php:370 mod/admin.php:487 mod/admin.php:529
+#: mod/admin.php:721 mod/admin.php:756 mod/admin.php:794 mod/admin.php:894
+#: mod/admin.php:1404 mod/admin.php:1872 mod/admin.php:1989 mod/admin.php:2049
+#: mod/admin.php:2259 mod/admin.php:2303 mod/admin.php:2378 mod/admin.php:2445
+msgid "Administration"
 msgstr ""
 
-#: mod/follow.php:151 mod/dfrn_request.php:648
-msgid "Add a personal note:"
+#: mod/admin.php:310
+msgid "Display Terms of Service"
 msgstr ""
 
-#: mod/follow.php:157 mod/unfollow.php:113 mod/dfrn_request.php:654
-msgid "Your Identity Address:"
+#: mod/admin.php:310
+msgid ""
+"Enable the Terms of Service page. If this is enabled a link to the terms "
+"will be added to the registration form and the general information page."
 msgstr ""
 
-#: mod/follow.php:166 mod/unfollow.php:122 mod/contacts.php:655
-#: mod/notifications.php:168 mod/notifications.php:257 mod/admin.php:498
-#: mod/admin.php:508
-msgid "Profile URL"
+#: mod/admin.php:311
+msgid "Display Privacy Statement"
 msgstr ""
 
-#: mod/follow.php:174 mod/contacts.php:665 mod/notifications.php:251
-#: src/Model/Profile.php:790
-msgid "Tags:"
+#: mod/admin.php:311
+#, php-format
+msgid ""
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 msgstr ""
 
-#: mod/follow.php:186 mod/unfollow.php:132 mod/contacts.php:857
-#: src/Model/Profile.php:887
-msgid "Status Messages and Posts"
+#: mod/admin.php:312
+msgid "Privacy Statement Preview"
 msgstr ""
 
-#: mod/babel.php:22
-msgid "Source input"
+#: mod/admin.php:314
+msgid "The Terms of Service"
 msgstr ""
 
-#: mod/babel.php:28
-msgid "BBCode::toPlaintext"
+#: mod/admin.php:314
+msgid ""
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
 msgstr ""
 
-#: mod/babel.php:34
-msgid "BBCode::convert (raw HTML)"
+#: mod/admin.php:316 mod/admin.php:1406 mod/admin.php:2051 mod/admin.php:2305
+#: mod/admin.php:2380 mod/admin.php:2527 mod/delegate.php:169
+#: mod/settings.php:675 mod/settings.php:782 mod/settings.php:870
+#: mod/settings.php:959 mod/settings.php:1189
+msgid "Save Settings"
 msgstr ""
 
-#: mod/babel.php:39
-msgid "BBCode::convert"
+#: mod/admin.php:362 mod/admin.php:380 mod/dfrn_request.php:344
+#: mod/friendica.php:130 src/Model/Contact.php:1338
+msgid "Blocked domain"
 msgstr ""
 
-#: mod/babel.php:45
-msgid "BBCode::convert => HTML::toBBCode"
+#: mod/admin.php:362
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown"
+#: mod/admin.php:363 mod/admin.php:381 mod/friendica.php:130
+msgid "Reason for the block"
 msgstr ""
 
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::convert"
+#: mod/admin.php:363 mod/admin.php:376
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/admin.php:364
+msgid "Delete domain"
 msgstr ""
 
-#: mod/babel.php:69
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: mod/admin.php:364
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/babel.php:76
-msgid "Source input \\x28Diaspora format\\x29"
+#: mod/admin.php:372
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote server."
 msgstr ""
 
-#: mod/babel.php:82
-msgid "Markdown::toBBCode"
+#: mod/admin.php:373
+msgid ""
+"The list of blocked servers will be made publically available on the /"
+"friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
 msgstr ""
 
-#: mod/babel.php:89
-msgid "Raw HTML input"
+#: mod/admin.php:374
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/babel.php:94
-msgid "HTML Input"
+#: mod/admin.php:375
+msgid "Server Domain"
 msgstr ""
 
-#: mod/babel.php:100
-msgid "HTML::toBBCode"
+#: mod/admin.php:375
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 msgstr ""
 
-#: mod/babel.php:106
-msgid "HTML::toPlaintext"
+#: mod/admin.php:376
+msgid "Block reason"
 msgstr ""
 
-#: mod/babel.php:114
-msgid "Source text"
+#: mod/admin.php:377
+msgid "Add Entry"
 msgstr ""
 
-#: mod/babel.php:115
-msgid "BBCode"
+#: mod/admin.php:378
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/babel.php:116
-msgid "Markdown"
+#: mod/admin.php:379
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/babel.php:117
-msgid "HTML"
+#: mod/admin.php:382
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
+#: mod/admin.php:385
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
+#: mod/admin.php:411
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/crepair.php:114
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: mod/admin.php:427
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/crepair.php:115
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+#: mod/admin.php:450 src/Core/Console/GlobalCommunityBlock.php:68
+msgid "The contact has been blocked from the node"
 msgstr ""
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
+#: mod/admin.php:452 src/Core/Console/GlobalCommunityBlock.php:65
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
 msgstr ""
 
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr ""
+#: mod/admin.php:459
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
+#: mod/admin.php:488
+msgid "Remote Contact Blocklist"
 msgstr ""
 
-#: mod/crepair.php:144
-msgid "Return to contact editor"
+#: mod/admin.php:489
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
 msgstr ""
 
-#: mod/crepair.php:146
-msgid "Refetch contact data"
+#: mod/admin.php:490
+msgid "Block Remote Contact"
 msgstr ""
 
-#: mod/crepair.php:149
-msgid "Remote Self"
+#: mod/admin.php:491 mod/admin.php:1875
+msgid "select all"
 msgstr ""
 
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
+#: mod/admin.php:492
+msgid "select none"
 msgstr ""
 
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: mod/admin.php:493 mod/admin.php:1884 mod/contacts.php:638
+#: mod/contacts.php:828 mod/contacts.php:1019
+msgid "Block"
 msgstr ""
 
-#: mod/crepair.php:158 mod/admin.php:498 mod/admin.php:1866 mod/admin.php:1877
-#: mod/admin.php:1890 mod/admin.php:1906 mod/settings.php:670
-#: mod/settings.php:696
-msgid "Name"
+#: mod/admin.php:494 mod/admin.php:1886 mod/contacts.php:638
+#: mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unblock"
 msgstr ""
 
-#: mod/crepair.php:159
-msgid "Account Nickname"
+#: mod/admin.php:495
+msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
+#: mod/admin.php:497
+msgid "Blocked Remote Contacts"
 msgstr ""
 
-#: mod/crepair.php:161
-msgid "Account URL"
+#: mod/admin.php:498
+msgid "Block New Remote Contact"
 msgstr ""
 
-#: mod/crepair.php:162
-msgid "Friend Request URL"
+#: mod/admin.php:499
+msgid "Photo"
 msgstr ""
 
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
+#: mod/admin.php:499 mod/admin.php:1867 mod/admin.php:1878 mod/admin.php:1892
+#: mod/admin.php:1908 mod/crepair.php:159 mod/settings.php:677
+#: mod/settings.php:703
+msgid "Name"
 msgstr ""
 
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
+#: mod/admin.php:499 mod/profiles.php:391
+msgid "Address"
 msgstr ""
 
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
+#: mod/admin.php:499 mod/admin.php:509 mod/contacts.php:657 mod/follow.php:167
+#: mod/notifications.php:169 mod/notifications.php:258 mod/unfollow.php:123
+msgid "Profile URL"
 msgstr ""
 
-#: mod/crepair.php:166
-msgid "New photo from this URL"
+#: mod/admin.php:507
+#, php-format
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:509
+msgid "URL of the remote contact to block."
 msgstr ""
 
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:525
-msgid "Profile not found."
+#: mod/admin.php:531
+msgid "Delete this Item"
 msgstr ""
 
-#: mod/dfrn_confirm.php:130
+#: mod/admin.php:532
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
 msgstr ""
 
-#: mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
+#: mod/admin.php:533
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
 msgstr ""
 
-#: mod/dfrn_confirm.php:247 mod/dfrn_confirm.php:252
-msgid "Unexpected response from remote site: "
+#: mod/admin.php:534
+msgid "GUID"
 msgstr ""
 
-#: mod/dfrn_confirm.php:261
-msgid "Confirmation completed successfully."
+#: mod/admin.php:534
+msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: mod/dfrn_confirm.php:273
-msgid "Temporary failure. Please wait and try again."
+#: mod/admin.php:568
+msgid "Item marked for deletion."
 msgstr ""
 
-#: mod/dfrn_confirm.php:276
-msgid "Introduction failed or was revoked."
+#: mod/admin.php:639
+msgid "unknown"
 msgstr ""
 
-#: mod/dfrn_confirm.php:281
-msgid "Remote site reported: "
+#: mod/admin.php:715
+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/dfrn_confirm.php:392
-msgid "Unable to set contact photo."
+#: mod/admin.php:716
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/dfrn_confirm.php:450
+#: mod/admin.php:728
 #, php-format
-msgid "No user record found for '%s' "
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
 msgstr ""
 
-#: mod/dfrn_confirm.php:460
-msgid "Our site encryption key is apparently messed up."
+#: mod/admin.php:759 mod/admin.php:797
+msgid "ID"
 msgstr ""
 
-#: mod/dfrn_confirm.php:471
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: mod/admin.php:760
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/dfrn_confirm.php:487
-msgid "Contact record was not found for you on our site."
+#: mod/admin.php:761
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/dfrn_confirm.php:501
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: mod/admin.php:762 view/theme/frio/theme.php:266
+#: src/Core/NotificationsManager.php:176 src/Content/Nav.php:183
+msgid "Network"
 msgstr ""
 
-#: mod/dfrn_confirm.php:517
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+#: mod/admin.php:763 mod/admin.php:799
+msgid "Created"
 msgstr ""
 
-#: mod/dfrn_confirm.php:528
-msgid "Unable to set your contact credentials on our system."
+#: mod/admin.php:764
+msgid "Last Tried"
 msgstr ""
 
-#: mod/dfrn_confirm.php:583
-msgid "Unable to update your contact profile details on our system"
+#: mod/admin.php:765
+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/dfrn_confirm.php:613 mod/dfrn_request.php:563 src/Model/Contact.php:1570
-msgid "[Name Withheld]"
+#: mod/admin.php:795
+msgid "Inspect Worker Queue"
 msgstr ""
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
+#: mod/admin.php:798
+msgid "Job Parameters"
 msgstr ""
 
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
+#: mod/admin.php:800
+msgid "Priority"
 msgstr ""
 
-#: mod/events.php:393
-msgid "Create New Event"
+#: mod/admin.php:801
+msgid ""
+"This page lists the currently queued worker jobs. These jobs are handled by "
+"the worker cronjob you've set up during install."
 msgstr ""
 
-#: mod/events.php:507
-msgid "Event details"
+#: mod/admin.php:825
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php bin/"
+"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/events.php:508
-msgid "Starting date and Title are required."
+#: mod/admin.php:832
+#, php-format
+msgid ""
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
 msgstr ""
 
-#: mod/events.php:509 mod/events.php:510
-msgid "Event Starts:"
+#: mod/admin.php:842
+msgid ""
+"The database update failed. Please run \"php bin/console.php dbstructure "
+"update\" from the command line and have a look at the errors that might "
+"appear."
 msgstr ""
 
-#: mod/events.php:509 mod/events.php:521 mod/profiles.php:607
-msgid "Required"
+#: mod/admin.php:848
+msgid "The worker was never executed. Please check your database structure!"
 msgstr ""
 
-#: mod/events.php:511 mod/events.php:527
-msgid "Finish date/time is not known or not relevant"
+#: mod/admin.php:851
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please "
+"check your crontab settings."
 msgstr ""
 
-#: mod/events.php:513 mod/events.php:514
-msgid "Event Finishes:"
+#: mod/admin.php:857
+#, php-format
+msgid ""
+"Friendica's configuration now is stored in config/local.ini.php, please copy "
+"config/local-sample.ini.php and move your config from <code>.htconfig.php</"
+"code>. See <a href=\"%s\">the Config help page</a> for help with the "
+"transition."
 msgstr ""
 
-#: mod/events.php:515 mod/events.php:528
-msgid "Adjust for viewer timezone"
+#: mod/admin.php:862
+msgid "Normal Account"
 msgstr ""
 
-#: mod/events.php:517
-msgid "Description:"
+#: mod/admin.php:863
+msgid "Automatic Follower Account"
 msgstr ""
 
-#: mod/events.php:519 mod/directory.php:149 mod/contacts.php:659
-#: mod/notifications.php:247 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:898 src/Model/Profile.php:415
-msgid "Location:"
+#: mod/admin.php:864
+msgid "Public Forum Account"
 msgstr ""
 
-#: mod/events.php:521 mod/events.php:523
-msgid "Title:"
+#: mod/admin.php:865
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/events.php:524 mod/events.php:525
-msgid "Share this event"
+#: mod/admin.php:866
+msgid "Blog Account"
 msgstr ""
 
-#: mod/events.php:532 src/Model/Profile.php:860
-msgid "Basic"
+#: mod/admin.php:867
+msgid "Private Forum Account"
 msgstr ""
 
-#: mod/events.php:533 mod/contacts.php:894 mod/admin.php:1410
-#: src/Model/Profile.php:861
-msgid "Advanced"
+#: mod/admin.php:889
+msgid "Message queues"
 msgstr ""
 
-#: mod/events.php:534 mod/photos.php:1083 mod/photos.php:1407
-#: src/Core/ACL.php:318
-msgid "Permissions"
+#: mod/admin.php:895
+msgid "Summary"
 msgstr ""
 
-#: mod/events.php:553
-msgid "Failed to remove event"
+#: mod/admin.php:897
+msgid "Registered users"
 msgstr ""
 
-#: mod/events.php:555
-msgid "Event removed"
+#: mod/admin.php:899
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/profiles.php:58
-msgid "Profile deleted."
+#: mod/admin.php:900
+msgid "Version"
 msgstr ""
 
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
+#: mod/admin.php:905
+msgid "Active addons"
 msgstr ""
 
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
+#: mod/admin.php:936
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
+#: mod/admin.php:1269
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/profiles.php:206
-msgid "Profile Name is required."
+#: mod/admin.php:1296 mod/settings.php:903
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/profiles.php:347
-msgid "Marital Status"
+#: mod/admin.php:1325
+msgid "No community page for local users"
 msgstr ""
 
-#: mod/profiles.php:351
-msgid "Romantic Partner"
+#: mod/admin.php:1326
+msgid "No community page"
 msgstr ""
 
-#: mod/profiles.php:363
-msgid "Work/Employment"
+#: mod/admin.php:1327
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/profiles.php:366
-msgid "Religion"
+#: mod/admin.php:1328
+msgid "Public postings from the federated network"
 msgstr ""
 
-#: mod/profiles.php:370
-msgid "Political Views"
+#: mod/admin.php:1329
+msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: mod/profiles.php:374
-msgid "Gender"
+#: mod/admin.php:1333 mod/admin.php:1500 mod/admin.php:1510
+#: mod/contacts.php:573
+msgid "Disabled"
 msgstr ""
 
-#: mod/profiles.php:378
-msgid "Sexual Preference"
+#: mod/admin.php:1335
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/profiles.php:382
-msgid "XMPP"
+#: mod/admin.php:1336
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/profiles.php:386
-msgid "Homepage"
+#: mod/admin.php:1340
+msgid "One month"
 msgstr ""
 
-#: mod/profiles.php:390 mod/profiles.php:593
-msgid "Interests"
+#: mod/admin.php:1341
+msgid "Three months"
 msgstr ""
 
-#: mod/profiles.php:394 mod/admin.php:498
-msgid "Address"
+#: mod/admin.php:1342
+msgid "Half a year"
 msgstr ""
 
-#: mod/profiles.php:401 mod/profiles.php:589
-msgid "Location"
+#: mod/admin.php:1343
+msgid "One year"
 msgstr ""
 
-#: mod/profiles.php:483
-msgid "Profile updated."
+#: mod/admin.php:1348
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/profiles.php:540
-msgid "Hide contacts and friends:"
+#: mod/admin.php:1374
+msgid "Closed"
 msgstr ""
 
-#: mod/profiles.php:545
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/admin.php:1375
+msgid "Requires approval"
 msgstr ""
 
-#: mod/profiles.php:565
-msgid "Show more profile fields:"
+#: mod/admin.php:1376
+msgid "Open"
 msgstr ""
 
-#: mod/profiles.php:577
-msgid "Profile Actions"
+#: mod/admin.php:1380
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/profiles.php:578
-msgid "Edit Profile Details"
+#: mod/admin.php:1381
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/profiles.php:580
-msgid "Change Profile Photo"
+#: mod/admin.php:1382
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/profiles.php:581
-msgid "View this profile"
+#: mod/admin.php:1386
+msgid "Don't check"
 msgstr ""
 
-#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:391
-msgid "Edit visibility"
+#: mod/admin.php:1387
+msgid "check the stable version"
 msgstr ""
 
-#: mod/profiles.php:583
-msgid "Create a new profile using these settings"
+#: mod/admin.php:1388
+msgid "check the development version"
 msgstr ""
 
-#: mod/profiles.php:584
-msgid "Clone this profile"
+#: mod/admin.php:1407
+msgid "Republish users to directory"
 msgstr ""
 
-#: mod/profiles.php:585
-msgid "Delete this profile"
+#: mod/admin.php:1408 mod/register.php:266
+msgid "Registration"
 msgstr ""
 
-#: mod/profiles.php:587
-msgid "Basic information"
+#: mod/admin.php:1409
+msgid "File upload"
 msgstr ""
 
-#: mod/profiles.php:588
-msgid "Profile picture"
+#: mod/admin.php:1410
+msgid "Policies"
 msgstr ""
 
-#: mod/profiles.php:590
-msgid "Preferences"
+#: mod/admin.php:1411 mod/contacts.php:896 mod/events.php:534
+#: src/Model/Profile.php:861
+msgid "Advanced"
 msgstr ""
 
-#: mod/profiles.php:591
-msgid "Status information"
+#: mod/admin.php:1412
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/profiles.php:592
-msgid "Additional information"
+#: mod/admin.php:1413
+msgid "Performance"
 msgstr ""
 
-#: mod/profiles.php:594 mod/network.php:958
-#: src/Core/NotificationsManager.php:187
-msgid "Personal"
+#: mod/admin.php:1414
+msgid "Worker"
 msgstr ""
 
-#: mod/profiles.php:595
-msgid "Relation"
+#: mod/admin.php:1415
+msgid "Message Relay"
 msgstr ""
 
-#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
+#: mod/admin.php:1416
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/profiles.php:599
-msgid "Your Gender:"
+#: mod/admin.php:1419
+msgid "Site name"
 msgstr ""
 
-#: mod/profiles.php:600
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/admin.php:1420
+msgid "Host name"
 msgstr ""
 
-#: mod/profiles.php:601 src/Model/Profile.php:778
-msgid "Sexual Preference:"
+#: mod/admin.php:1421
+msgid "Sender Email"
 msgstr ""
 
-#: mod/profiles.php:602
-msgid "Example: fishing photography software"
+#: mod/admin.php:1421
+msgid ""
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/profiles.php:607
-msgid "Profile Name:"
+#: mod/admin.php:1422
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/profiles.php:609
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: mod/admin.php:1423
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/profiles.php:610
-msgid "Your Full Name:"
+#: mod/admin.php:1423
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/profiles.php:611
-msgid "Title/Description:"
+#: mod/admin.php:1424
+msgid "Touch icon"
 msgstr ""
 
-#: mod/profiles.php:614
-msgid "Street Address:"
+#: mod/admin.php:1424
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/profiles.php:615
-msgid "Locality/City:"
+#: mod/admin.php:1425
+msgid "Additional Info"
 msgstr ""
 
-#: mod/profiles.php:616
-msgid "Region/State:"
+#: mod/admin.php:1425
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
 msgstr ""
 
-#: mod/profiles.php:617
-msgid "Postal/Zip Code:"
+#: mod/admin.php:1426
+msgid "System language"
 msgstr ""
 
-#: mod/profiles.php:618
-msgid "Country:"
+#: mod/admin.php:1427
+msgid "System theme"
 msgstr ""
 
-#: mod/profiles.php:619 src/Util/Temporal.php:149
-msgid "Age: "
+#: mod/admin.php:1427
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/profiles.php:622
-msgid "Who: (if applicable)"
+#: mod/admin.php:1428
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/profiles.php:622
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:1428
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/profiles.php:623
-msgid "Since [date]:"
+#: mod/admin.php:1429
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/profiles.php:625
-msgid "Tell us about yourself..."
+#: mod/admin.php:1429
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/profiles.php:626
-msgid "XMPP (Jabber) address:"
+#: mod/admin.php:1430
+msgid "Force SSL"
 msgstr ""
 
-#: mod/profiles.php:626
+#: mod/admin.php:1430
 msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/profiles.php:627
-msgid "Homepage URL:"
+#: mod/admin.php:1431
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/profiles.php:628 src/Model/Profile.php:786
-msgid "Hometown:"
+#: mod/admin.php:1431
+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:629 src/Model/Profile.php:794
-msgid "Political Views:"
+#: mod/admin.php:1432
+msgid "Single user instance"
 msgstr ""
 
-#: mod/profiles.php:630
-msgid "Religious Views:"
+#: mod/admin.php:1432
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/profiles.php:631
-msgid "Public Keywords:"
+#: mod/admin.php:1433
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/profiles.php:631
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/admin.php:1433
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/profiles.php:632
-msgid "Private Keywords:"
+#: mod/admin.php:1434
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/profiles.php:632
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/admin.php:1434
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/profiles.php:633 src/Model/Profile.php:810
-msgid "Likes:"
+#: mod/admin.php:1435
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/profiles.php:634 src/Model/Profile.php:814
-msgid "Dislikes:"
+#: mod/admin.php:1435
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/profiles.php:635
-msgid "Musical interests"
+#: mod/admin.php:1437
+msgid "Register policy"
 msgstr ""
 
-#: mod/profiles.php:636
-msgid "Books, literature"
+#: mod/admin.php:1438
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/profiles.php:637
-msgid "Television"
+#: mod/admin.php:1438
+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:638
-msgid "Film/dance/culture/entertainment"
+#: mod/admin.php:1439
+msgid "Register text"
 msgstr ""
 
-#: mod/profiles.php:639
-msgid "Hobbies/Interests"
+#: mod/admin.php:1439
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
 msgstr ""
 
-#: mod/profiles.php:640
-msgid "Love/romance"
+#: mod/admin.php:1440
+msgid "Forbidden Nicknames"
 msgstr ""
 
-#: mod/profiles.php:641
-msgid "Work/employment"
+#: mod/admin.php:1440
+msgid ""
+"Comma separated list of nicknames that are forbidden from registration. "
+"Preset is a list of role names according RFC 2142."
 msgstr ""
 
-#: mod/profiles.php:642
-msgid "School/education"
+#: mod/admin.php:1441
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/profiles.php:643
-msgid "Contact information and Social Networks"
+#: mod/admin.php:1441
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/profiles.php:674 src/Model/Profile.php:387
-msgid "Profile Image"
+#: mod/admin.php:1442
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/profiles.php:676 src/Model/Profile.php:390
-msgid "visible to everybody"
+#: mod/admin.php:1442
+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:683
-msgid "Edit/Manage Profiles"
+#: mod/admin.php:1443
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/profiles.php:684 src/Model/Profile.php:377 src/Model/Profile.php:399
-msgid "Change profile photo"
+#: mod/admin.php:1443
+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:685 src/Model/Profile.php:378
-msgid "Create New Profile"
+#: mod/admin.php:1444
+msgid "No OEmbed rich content"
 msgstr ""
 
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
+#: mod/admin.php:1444
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
 msgstr ""
 
-#: mod/videos.php:144
-msgid "Delete Video"
+#: mod/admin.php:1445
+msgid "Allowed OEmbed domains"
 msgstr ""
 
-#: mod/videos.php:207
-msgid "No videos selected"
+#: mod/admin.php:1445
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
 msgstr ""
 
-#: mod/videos.php:309 mod/photos.php:1021
-msgid "Access to this item is restricted."
+#: mod/admin.php:1446
+msgid "Block public"
 msgstr ""
 
-#: mod/videos.php:387 mod/photos.php:1659
-msgid "View Album"
+#: mod/admin.php:1446
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
+#: mod/admin.php:1447
+msgid "Force publish"
 msgstr ""
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
+#: mod/admin.php:1447
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/allfriends.php:51
-msgid "No friends to display."
+#: mod/admin.php:1447
+msgid "Enabling this may violate privacy laws like the GDPR"
 msgstr ""
 
-#: mod/allfriends.php:90 mod/match.php:105 mod/suggest.php:101
-#: mod/dirfind.php:214 src/Content/Widget.php:37 src/Model/Profile.php:293
-msgid "Connect"
+#: mod/admin.php:1448
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/editpost.php:26 mod/editpost.php:34
-msgid "Item not found"
+#: mod/admin.php:1448
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/editpost.php:41
-msgid "Edit post"
+#: mod/admin.php:1449
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/editpost.php:120 src/Core/ACL.php:315
-msgid "CC: email addresses"
+#: mod/admin.php:1449
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/editpost.php:127 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
+#: mod/admin.php:1450
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
+#: mod/admin.php:1450
+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/match.php:104
-msgid "is interested in:"
+#: mod/admin.php:1451
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/match.php:120
-msgid "Profile Match"
+#: mod/admin.php:1451
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/match.php:125 mod/dirfind.php:252
-msgid "No matches"
+#: mod/admin.php:1452
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
+#: mod/admin.php:1452
+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/suggest.php:73
+#: mod/admin.php:1453
+msgid "Explicit Content"
+msgstr ""
+
+#: mod/admin.php:1453
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+"Set this to announce that your node is used mostly for explicit content that "
+"might not be suited for minors. This information will be published in the "
+"node information and might be used, e.g. by the global directory, to filter "
+"your node from listings of nodes to join. Additionally a note about this "
+"will be shown at the user registration page."
 msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
+#: mod/admin.php:1454
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/suggest.php:114 view/theme/vier/theme.php:206 src/Content/Widget.php:64
-msgid "Friend Suggestions"
+#: mod/admin.php:1454
+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/tagrm.php:43
-msgid "Tag removed"
+#: mod/admin.php:1455
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/tagrm.php:77
-msgid "Remove Item Tag"
+#: mod/admin.php:1455
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/tagrm.php:79
-msgid "Select a tag to remove: "
+#: mod/admin.php:1456
+msgid "OpenID support"
 msgstr ""
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
+#: mod/admin.php:1456
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
+#: mod/admin.php:1457
+msgid "Fullname check"
 msgstr ""
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
+#: mod/admin.php:1457
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
+#: mod/admin.php:1458
+msgid "Community pages for visitors"
 msgstr ""
 
-#: mod/unfollow.php:100 mod/contacts.php:598
-msgid "Disconnect/Unfollow"
+#: mod/admin.php:1458
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
 msgstr ""
 
-#: mod/update_community.php:23 mod/update_display.php:24
-#: mod/update_network.php:29 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
+#: mod/admin.php:1459
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
+#: mod/admin.php:1459
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/viewcontacts.php:103 mod/contacts.php:618 mod/contacts.php:958
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: mod/admin.php:1460
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/viewsrc.php:13 mod/community.php:34
-msgid "Access denied."
+#: mod/admin.php:1460
+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/community.php:51
-msgid "Community option not available."
+#: mod/admin.php:1461
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/community.php:68
-msgid "Not available."
+#: mod/admin.php:1461
+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/community.php:81
-msgid "Local Community"
+#: mod/admin.php:1462
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/community.php:84
-msgid "Posts from local users on this server"
+#: mod/admin.php:1464
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/community.php:92
-msgid "Global Community"
+#: mod/admin.php:1465
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/community.php:95
-msgid "Posts from users of the whole federated network"
+#: mod/admin.php:1465
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/community.php:141 mod/search.php:239
-msgid "No results."
+#: mod/admin.php:1466
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/community.php:185
+#: mod/admin.php:1466
 msgid ""
-"This community stream shows all public posts received by this node. They may "
-"not reflect the opinions of this node’s users."
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/dfrn_poll.php:124 mod/dfrn_poll.php:541
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: mod/admin.php:1467
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/directory.php:152 mod/notifications.php:253 src/Model/Profile.php:418
-#: src/Model/Profile.php:741
-msgid "Gender:"
+#: mod/admin.php:1467
+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/directory.php:153 src/Model/Profile.php:419 src/Model/Profile.php:765
-msgid "Status:"
+#: mod/admin.php:1468
+msgid "Proxy user"
 msgstr ""
 
-#: mod/directory.php:154 src/Model/Profile.php:420 src/Model/Profile.php:782
-msgid "Homepage:"
+#: mod/admin.php:1469
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/directory.php:155 mod/contacts.php:663 mod/notifications.php:249
-#: src/Model/Profile.php:421 src/Model/Profile.php:802
-msgid "About:"
+#: mod/admin.php:1470
+msgid "Network timeout"
 msgstr ""
 
-#: mod/directory.php:203 view/theme/vier/theme.php:210
-#: src/Content/Widget.php:68
-msgid "Global Directory"
+#: mod/admin.php:1470
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/directory.php:205
-msgid "Find on this site"
+#: mod/admin.php:1471
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/directory.php:207
-msgid "Results for:"
+#: mod/admin.php:1471
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/directory.php:209
-msgid "Site Directory"
+#: mod/admin.php:1472
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/directory.php:210 mod/contacts.php:819 view/theme/vier/theme.php:205
-#: src/Content/Widget.php:63
-msgid "Find"
+#: mod/admin.php:1472
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/directory.php:214
-msgid "No entries (some entries may be hidden)."
+#: mod/admin.php:1473
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/contacts.php:71 mod/notifications.php:260 src/Model/Profile.php:518
-msgid "Network:"
+#: mod/admin.php:1473
+msgid ""
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
 msgstr ""
 
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
+#: mod/admin.php:1474
+msgid "Maximum table size for optimization"
+msgstr ""
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
+#: mod/admin.php:1474
+msgid ""
+"Maximum table size (in MB) for the automatic optimization. Enter -1 to "
+"disable it."
 msgstr ""
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
+#: mod/admin.php:1475
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/contacts.php:228
-msgid "Contact updated."
+#: mod/admin.php:1475
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/contacts.php:230 mod/dfrn_request.php:414
-msgid "Failed to update contact record."
+#: mod/admin.php:1477
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
+#: mod/admin.php:1477
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
+#: mod/admin.php:1478
+msgid "Days between requery"
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
+#: mod/admin.php:1478
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
+#: mod/admin.php:1479
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
+#: mod/admin.php:1479
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
 msgstr ""
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
+#: mod/admin.php:1480
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/contacts.php:467
-msgid "Drop contact"
+#: mod/admin.php:1480
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
 msgstr ""
 
-#: mod/contacts.php:470 mod/contacts.php:822
-msgid "Do you really want to delete this contact?"
+#: mod/admin.php:1481
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
+#: mod/admin.php:1481
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
 msgstr ""
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/admin.php:1483
+msgid "Publish server information"
 msgstr ""
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
+#: mod/admin.php:1483
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
+#: mod/admin.php:1485
+msgid "Check upstream version"
 msgstr ""
 
-#: mod/contacts.php:546
-msgid "Private communications are not available for this contact."
+#: mod/admin.php:1485
+msgid ""
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
 msgstr ""
 
-#: mod/contacts.php:548
-msgid "Never"
+#: mod/admin.php:1486
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/contacts.php:551
-msgid "(Update was successful)"
+#: mod/admin.php:1486
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/contacts.php:551
-msgid "(Update was not successful)"
+#: mod/admin.php:1487
+msgid "Clean database"
 msgstr ""
 
-#: mod/contacts.php:553 mod/contacts.php:992
-msgid "Suggest friends"
+#: mod/admin.php:1487
+msgid ""
+"Remove old remote items, orphaned database records and old content from some "
+"other helper tables."
 msgstr ""
 
-#: mod/contacts.php:557
-#, php-format
-msgid "Network type: %s"
+#: mod/admin.php:1488
+msgid "Lifespan of remote items"
 msgstr ""
 
-#: mod/contacts.php:562
-msgid "Communications lost with this contact!"
+#: mod/admin.php:1488
+msgid ""
+"When the database cleanup is enabled, this defines the days after which "
+"remote items will be deleted. Own items, and marked or filed items are "
+"always kept. 0 disables this behaviour."
 msgstr ""
 
-#: mod/contacts.php:568
-msgid "Fetch further information for feeds"
+#: mod/admin.php:1489
+msgid "Lifespan of unclaimed items"
 msgstr ""
 
-#: mod/contacts.php:570
+#: mod/admin.php:1489
 msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
+"When the database cleanup is enabled, this defines the days after which "
+"unclaimed remote items (mostly content from the relay) will be deleted. "
+"Default value is 90 days. Defaults to the general lifespan value of remote "
+"items if set to 0."
 msgstr ""
 
-#: mod/contacts.php:571 mod/admin.php:1332 mod/admin.php:1499
-#: mod/admin.php:1509
-msgid "Disabled"
+#: mod/admin.php:1490
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/contacts.php:572
-msgid "Fetch information"
+#: mod/admin.php:1490
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/contacts.php:573
-msgid "Fetch keywords"
+#: mod/admin.php:1491
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/contacts.php:574
-msgid "Fetch information and keywords"
+#: mod/admin.php:1491
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: mod/contacts.php:607
-msgid "Contact"
+#: mod/admin.php:1492
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/contacts.php:610
-msgid "Profile Visibility"
+#: mod/admin.php:1492
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/contacts.php:611
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: mod/admin.php:1493
+msgid "Temp path"
 msgstr ""
 
-#: mod/contacts.php:612
-msgid "Contact Information / Notes"
+#: mod/admin.php:1493
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/contacts.php:613
-msgid "Their personal note"
+#: mod/admin.php:1494
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/contacts.php:615
-msgid "Edit contact notes"
+#: mod/admin.php:1494
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the "
+"correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
 msgstr ""
 
-#: mod/contacts.php:619
-msgid "Block/Unblock contact"
+#: mod/admin.php:1495
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/contacts.php:620
-msgid "Ignore contact"
+#: mod/admin.php:1495
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwidth."
 msgstr ""
 
-#: mod/contacts.php:621
-msgid "Repair URL settings"
+#: mod/admin.php:1496
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/contacts.php:622
-msgid "View conversations"
+#: mod/admin.php:1496
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/contacts.php:627
-msgid "Last update:"
+#: mod/admin.php:1498
+msgid "New base url"
 msgstr ""
 
-#: mod/contacts.php:629
-msgid "Update public posts"
+#: mod/admin.php:1498
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and "
+"Diaspora* contacts of all users."
 msgstr ""
 
-#: mod/contacts.php:631 mod/contacts.php:1002
-msgid "Update now"
+#: mod/admin.php:1500
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/contacts.php:636 mod/contacts.php:826 mod/contacts.php:1011
-#: mod/admin.php:493 mod/admin.php:1884
-msgid "Unblock"
+#: mod/admin.php:1500
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/contacts.php:636 mod/contacts.php:826 mod/contacts.php:1011
-#: mod/admin.php:492 mod/admin.php:1883
-msgid "Block"
+#: mod/admin.php:1500
+msgid "Enabled"
 msgstr ""
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1019
-msgid "Unignore"
+#: mod/admin.php:1502
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1019
-#: mod/notifications.php:55 mod/notifications.php:176 mod/notifications.php:265
-msgid "Ignore"
+#: mod/admin.php:1502
+#, php-format
+msgid ""
+"On shared hosters set this to %d. On larger systems, values of %d are great. "
+"Default value is %d."
 msgstr ""
 
-#: mod/contacts.php:641
-msgid "Currently blocked"
+#: mod/admin.php:1503
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/contacts.php:642
-msgid "Currently ignored"
+#: mod/admin.php:1503
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of worker calls in your crontab."
 msgstr ""
 
-#: mod/contacts.php:643
-msgid "Currently archived"
+#: mod/admin.php:1504
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/contacts.php:644
-msgid "Awaiting connection acknowledge"
+#: mod/admin.php:1504
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/contacts.php:645 mod/notifications.php:170 mod/notifications.php:254
-msgid "Hide this contact from others"
+#: mod/admin.php:1505
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/contacts.php:645
+#: mod/admin.php:1505
+#, php-format
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+"When enabled the Worker process is triggered when backend access is "
+"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
+"might want to call %s/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs "
+"on your server."
 msgstr ""
 
-#: mod/contacts.php:646
-msgid "Notification for new posts"
+#: mod/admin.php:1507
+msgid "Subscribe to relay"
 msgstr ""
 
-#: mod/contacts.php:646
-msgid "Send a notification of every new post of this contact"
+#: mod/admin.php:1507
+msgid ""
+"Enables the receiving of public posts from the relay. They will be included "
+"in the search, subscribed tags and on the global community page."
 msgstr ""
 
-#: mod/contacts.php:649
-msgid "Blacklisted keywords"
+#: mod/admin.php:1508
+msgid "Relay server"
 msgstr ""
 
-#: mod/contacts.php:649
+#: mod/admin.php:1508
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
 msgstr ""
 
-#: mod/contacts.php:661 src/Model/Profile.php:422
-msgid "XMPP:"
+#: mod/admin.php:1509
+msgid "Direct relay transfer"
 msgstr ""
 
-#: mod/contacts.php:666
-msgid "Actions"
+#: mod/admin.php:1509
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/contacts.php:668 mod/contacts.php:854 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:884
-msgid "Status"
+#: mod/admin.php:1510
+msgid "Relay scope"
 msgstr ""
 
-#: mod/contacts.php:669
-msgid "Contact Settings"
+#: mod/admin.php:1510
+msgid ""
+"Can be 'all' or 'tags'. 'all' means that every public post should be "
+"received. 'tags' means that only posts with selected tags should be received."
 msgstr ""
 
-#: mod/contacts.php:710
-msgid "Suggestions"
+#: mod/admin.php:1510
+msgid "all"
 msgstr ""
 
-#: mod/contacts.php:713
-msgid "Suggest potential friends"
+#: mod/admin.php:1510
+msgid "tags"
 msgstr ""
 
-#: mod/contacts.php:718 mod/group.php:244
-msgid "All Contacts"
+#: mod/admin.php:1511
+msgid "Server tags"
 msgstr ""
 
-#: mod/contacts.php:721
-msgid "Show all contacts"
+#: mod/admin.php:1511
+msgid "Comma separated list of tags for the 'tags' subscription."
 msgstr ""
 
-#: mod/contacts.php:726
-msgid "Unblocked"
+#: mod/admin.php:1512
+msgid "Allow user tags"
 msgstr ""
 
-#: mod/contacts.php:729
-msgid "Only show unblocked contacts"
+#: mod/admin.php:1512
+msgid ""
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
 msgstr ""
 
-#: mod/contacts.php:734
-msgid "Blocked"
+#: mod/admin.php:1515
+msgid "Start Relocation"
 msgstr ""
 
-#: mod/contacts.php:737
-msgid "Only show blocked contacts"
+#: mod/admin.php:1541
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/contacts.php:742
-msgid "Ignored"
+#: mod/admin.php:1548
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/contacts.php:745
-msgid "Only show ignored contacts"
+#: mod/admin.php:1551
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/contacts.php:750
-msgid "Archived"
+#: mod/admin.php:1567
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/contacts.php:753
-msgid "Only show archived contacts"
+#: mod/admin.php:1569
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/contacts.php:758
-msgid "Hidden"
+#: mod/admin.php:1572
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/contacts.php:761
-msgid "Only show hidden contacts"
+#: mod/admin.php:1575
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/contacts.php:817
-msgid "Search your contacts"
+#: mod/admin.php:1598
+msgid "No failed updates."
 msgstr ""
 
-#: mod/contacts.php:818 mod/search.php:247
-#, php-format
-msgid "Results for: %s"
+#: mod/admin.php:1599
+msgid "Check database structure"
 msgstr ""
 
-#: mod/contacts.php:825 mod/settings.php:169 mod/settings.php:694
-msgid "Update"
+#: mod/admin.php:1604
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/contacts.php:828 mod/contacts.php:1027
-msgid "Archive"
+#: mod/admin.php:1605
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/contacts.php:828 mod/contacts.php:1027
-msgid "Unarchive"
+#: mod/admin.php:1606
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/contacts.php:831
-msgid "Batch Actions"
+#: mod/admin.php:1607
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/contacts.php:865 src/Model/Profile.php:895
-msgid "Profile Details"
+#: mod/admin.php:1646
+#, 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/contacts.php:877
-msgid "View all contacts"
+#: mod/admin.php:1649
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default "
+"profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tIf you ever want to delete your account, you can do so at %1$s/"
+"removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: mod/contacts.php:888
-msgid "View all common friends"
+#: mod/admin.php:1683 src/Model/User.php:702
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: mod/contacts.php:897
-msgid "Advanced Contact Settings"
-msgstr ""
+#: mod/admin.php:1693
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/contacts.php:929
-msgid "Mutual Friendship"
-msgstr ""
+#: mod/admin.php:1699
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/contacts.php:933
-msgid "is a fan of yours"
+#: mod/admin.php:1746
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/contacts.php:937
-msgid "you are a fan of"
+#: mod/admin.php:1754
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/contacts.php:952 mod/photos.php:1454 mod/photos.php:1493
-#: mod/photos.php:1554 src/Object/Post.php:789
-msgid "This is you"
+#: mod/admin.php:1754
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/contacts.php:959
-msgid "Edit contact"
+#: mod/admin.php:1811 mod/settings.php:1064
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
+#: mod/admin.php:1812 mod/settings.php:1068
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
+#: mod/admin.php:1813 mod/settings.php:1072
+msgid "Public Forum"
 msgstr ""
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
+#: mod/admin.php:1814 mod/settings.php:1076
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
+#: mod/admin.php:1815
+msgid "Private Forum"
 msgstr ""
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "People Search - %s"
+#: mod/admin.php:1818 mod/settings.php:1048
+msgid "Personal Page"
 msgstr ""
 
-#: mod/dirfind.php:59
-#, php-format
-msgid "Forum Search - %s"
+#: mod/admin.php:1819 mod/settings.php:1052
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/fetch.php:19 mod/fetch.php:46 mod/fetch.php:53 mod/help.php:62
-#: index.php:306
-msgid "Not Found"
+#: mod/admin.php:1820 mod/settings.php:1056
+msgid "News Page"
 msgstr ""
 
-#: mod/group.php:36
-msgid "Group created."
+#: mod/admin.php:1821 mod/settings.php:1060
+msgid "Community Forum"
 msgstr ""
 
-#: mod/group.php:42
-msgid "Could not create group."
+#: mod/admin.php:1867 mod/admin.php:1878 mod/admin.php:1892 mod/admin.php:1910
+#: src/Content/ContactSelector.php:80
+msgid "Email"
 msgstr ""
 
-#: mod/group.php:56 mod/group.php:185
-msgid "Group not found."
+#: mod/admin.php:1867 mod/admin.php:1892
+msgid "Register date"
 msgstr ""
 
-#: mod/group.php:70
-msgid "Group name changed."
+#: mod/admin.php:1867 mod/admin.php:1892
+msgid "Last login"
 msgstr ""
 
-#: mod/group.php:101
-msgid "Save Group"
+#: mod/admin.php:1867 mod/admin.php:1892
+msgid "Last item"
 msgstr ""
 
-#: mod/group.php:102
-msgid "Filter"
+#: mod/admin.php:1867
+msgid "Type"
 msgstr ""
 
-#: mod/group.php:107
-msgid "Create a group of contacts/friends."
+#: mod/admin.php:1874
+msgid "Add User"
 msgstr ""
 
-#: mod/group.php:108 mod/group.php:132 mod/group.php:227
-#: src/Model/Group.php:422
-msgid "Group Name: "
+#: mod/admin.php:1876
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/group.php:123 src/Model/Group.php:419
-msgid "Contacts not in any group"
+#: mod/admin.php:1877
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/group.php:155
-msgid "Group removed."
+#: mod/admin.php:1878
+msgid "Request date"
 msgstr ""
 
-#: mod/group.php:157
-msgid "Unable to remove group."
+#: mod/admin.php:1879
+msgid "No registrations."
 msgstr ""
 
-#: mod/group.php:220
-msgid "Delete Group"
+#: mod/admin.php:1880
+msgid "Note from the user"
 msgstr ""
 
-#: mod/group.php:231
-msgid "Edit Group Name"
+#: mod/admin.php:1881 mod/notifications.php:174 mod/notifications.php:264
+msgid "Approve"
 msgstr ""
 
-#: mod/group.php:242
-msgid "Members"
+#: mod/admin.php:1882
+msgid "Deny"
 msgstr ""
 
-#: mod/group.php:245 mod/network.php:637
-msgid "Group is empty"
+#: mod/admin.php:1885
+msgid "User blocked"
 msgstr ""
 
-#: mod/group.php:258
-msgid "Remove contact from group"
+#: mod/admin.php:1887
+msgid "Site admin"
 msgstr ""
 
-#: mod/group.php:290
-msgid "Add contact to group"
+#: mod/admin.php:1888
+msgid "Account expired"
 msgstr ""
 
-#: mod/message.php:30 src/Content/Nav.php:199
-msgid "New Message"
+#: mod/admin.php:1891
+msgid "New User"
 msgstr ""
 
-#: mod/message.php:77
-msgid "Unable to locate contact information."
+#: mod/admin.php:1892
+msgid "Deleted since"
 msgstr ""
 
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:196
-msgid "Messages"
+#: mod/admin.php:1897
+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/message.php:136
-msgid "Do you really want to delete this message?"
+#: mod/admin.php:1898
+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/message.php:153
-msgid "Message deleted."
+#: mod/admin.php:1908
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/message.php:168
-msgid "Conversation removed."
+#: mod/admin.php:1909
+msgid "Nickname"
 msgstr ""
 
-#: mod/message.php:274
-msgid "No messages."
+#: mod/admin.php:1909
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/message.php:315
-msgid "Message not available."
+#: mod/admin.php:1910
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/message.php:379
-msgid "Delete message"
+#: mod/admin.php:1952
+#, php-format
+msgid "Addon %s disabled."
 msgstr ""
 
-#: mod/message.php:381 mod/message.php:482
-msgid "D, d M Y - g:i A"
+#: mod/admin.php:1956
+#, php-format
+msgid "Addon %s enabled."
 msgstr ""
 
-#: mod/message.php:396 mod/message.php:479
-msgid "Delete conversation"
+#: mod/admin.php:1966 mod/admin.php:2215
+msgid "Disable"
 msgstr ""
 
-#: mod/message.php:398
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: mod/admin.php:1969 mod/admin.php:2218
+msgid "Enable"
 msgstr ""
 
-#: mod/message.php:402
-msgid "Send Reply"
+#: mod/admin.php:1991 mod/admin.php:2261
+msgid "Toggle"
 msgstr ""
 
-#: mod/message.php:453
-#, php-format
-msgid "Unknown sender - %s"
+#: mod/admin.php:1999 mod/admin.php:2270
+msgid "Author: "
 msgstr ""
 
-#: mod/message.php:455
-#, php-format
-msgid "You and %s"
+#: mod/admin.php:2000 mod/admin.php:2271
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/message.php:457
-#, php-format
-msgid "%s and You"
+#: mod/admin.php:2052
+msgid "Reload active addons"
 msgstr ""
 
-#: mod/message.php:485
+#: mod/admin.php:2057
 #, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
+msgid ""
+"There are currently no addons available on your node. You can find the "
+"official addon repository at %1$s and might find other interesting addons in "
+"the open addon registry at %2$s"
+msgstr ""
 
-#: mod/network.php:192 mod/search.php:38
-msgid "Remove term"
+#: mod/admin.php:2177
+msgid "No themes found."
 msgstr ""
 
-#: mod/network.php:199 mod/search.php:47 src/Content/Feature.php:100
-msgid "Saved Searches"
+#: mod/admin.php:2252
+msgid "Screenshot"
 msgstr ""
 
-#: mod/network.php:200 src/Model/Group.php:413
-msgid "add"
+#: mod/admin.php:2306
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/network.php:544
+#: mod/admin.php:2311
 #, 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] ""
+msgid "No themes found on the system. They should be placed in %1$s"
+msgstr ""
 
-#: mod/network.php:547
-msgid "Messages in this group won't be send to these receivers."
+#: mod/admin.php:2312
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/network.php:616
-msgid "No such group"
+#: mod/admin.php:2313
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/network.php:641
-#, php-format
-msgid "Group: %s"
+#: mod/admin.php:2337
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/network.php:667
-msgid "Private messages to this person are at risk of public disclosure."
+#: mod/admin.php:2370
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/network.php:670
-msgid "Invalid contact."
+#: mod/admin.php:2372
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/network.php:939
-msgid "Commented Order"
+#: mod/admin.php:2381
+msgid "Clear"
 msgstr ""
 
-#: mod/network.php:942
-msgid "Sort by Comment Date"
+#: mod/admin.php:2385
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/network.php:947
-msgid "Posted Order"
+#: mod/admin.php:2386
+msgid "Log file"
 msgstr ""
 
-#: mod/network.php:950
-msgid "Sort by Post Date"
+#: mod/admin.php:2386
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/network.php:961
-msgid "Posts that mention or involve you"
+#: mod/admin.php:2387
+msgid "Log level"
 msgstr ""
 
-#: mod/network.php:969
-msgid "New"
+#: mod/admin.php:2389
+msgid "PHP logging"
 msgstr ""
 
-#: mod/network.php:972
-msgid "Activity Stream - by date"
+#: mod/admin.php:2390
+msgid ""
+"To temporarily enable logging of PHP errors and warnings you can prepend the "
+"following to the index.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/network.php:980
-msgid "Shared Links"
+#: mod/admin.php:2421
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/network.php:983
-msgid "Interesting Links"
+#: mod/admin.php:2425
+#, php-format
+msgid ""
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
+"%1$s is readable."
 msgstr ""
 
-#: mod/network.php:991
-msgid "Starred"
+#: mod/admin.php:2516 mod/admin.php:2517 mod/settings.php:773
+msgid "Off"
 msgstr ""
 
-#: mod/network.php:994
-msgid "Favourite Posts"
+#: mod/admin.php:2516 mod/admin.php:2517 mod/settings.php:773
+msgid "On"
 msgstr ""
 
-#: mod/notifications.php:33
-msgid "Invalid request identifier."
+#: mod/admin.php:2517
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/notifications.php:42 mod/notifications.php:177 mod/notifications.php:229
-msgid "Discard"
+#: mod/admin.php:2525
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/notifications.php:91 src/Content/Nav.php:191
-msgid "Notifications"
+#: mod/allfriends.php:53
+msgid "No friends to display."
 msgstr ""
 
-#: mod/notifications.php:99
-msgid "Network Notifications"
+#: mod/allfriends.php:92 mod/dirfind.php:218 mod/match.php:105
+#: mod/suggest.php:103 src/Content/Widget.php:36 src/Model/Profile.php:293
+msgid "Connect"
 msgstr ""
 
-#: mod/notifications.php:109
-msgid "Personal Notifications"
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
 msgstr ""
 
-#: mod/notifications.php:114
-msgid "Home Notifications"
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: mod/notifications.php:142
-msgid "Show Ignored Requests"
+#: mod/api.php:95
+msgid "Please login to continue."
 msgstr ""
 
-#: mod/notifications.php:142
-msgid "Hide Ignored Requests"
+#: mod/api.php:109
+msgid ""
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
 msgstr ""
 
-#: mod/notifications.php:155 mod/notifications.php:237
-msgid "Notification type:"
+#: mod/api.php:111 mod/dfrn_request.php:644 mod/follow.php:151
+#: mod/profiles.php:541 mod/profiles.php:545 mod/profiles.php:566
+#: mod/register.php:238 mod/settings.php:1100 mod/settings.php:1106
+#: mod/settings.php:1113 mod/settings.php:1117 mod/settings.php:1121
+#: mod/settings.php:1125 mod/settings.php:1129 mod/settings.php:1133
+#: mod/settings.php:1153 mod/settings.php:1154 mod/settings.php:1155
+#: mod/settings.php:1156 mod/settings.php:1157
+msgid "No"
 msgstr ""
 
-#: mod/notifications.php:158
-msgid "Suggested by:"
+#: mod/attach.php:16
+msgid "Item not available."
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:263 mod/admin.php:1880
-msgid "Approve"
+#: mod/attach.php:26
+msgid "Item was not found."
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "Claims to be known to you: "
+#: mod/cal.php:36 mod/community.php:34 mod/viewcontacts.php:23
+#: mod/viewsrc.php:13
+msgid "Access denied."
 msgstr ""
 
-#: mod/notifications.php:197
-msgid "yes"
+#: mod/cal.php:144 mod/display.php:303 mod/profile.php:175
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: mod/notifications.php:197
-msgid "no"
+#: mod/cal.php:276 mod/events.php:392 view/theme/frio/theme.php:263
+#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
+#: src/Content/Nav.php:170 src/Model/Profile.php:920 src/Model/Profile.php:931
+msgid "Events"
 msgstr ""
 
-#: mod/notifications.php:198 mod/notifications.php:203
-msgid "Shall your connection be bidirectional or not?"
+#: mod/cal.php:277 mod/events.php:393
+msgid "View"
 msgstr ""
 
-#: mod/notifications.php:199 mod/notifications.php:204
-#, 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/cal.php:278 mod/events.php:395
+msgid "Previous"
 msgstr ""
 
-#: mod/notifications.php:200
-#, 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/cal.php:279 mod/events.php:396 mod/install.php:154
+msgid "Next"
 msgstr ""
 
-#: mod/notifications.php:205
-#, 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/cal.php:282 mod/events.php:401 src/Model/Event.php:421
+msgid "today"
 msgstr ""
 
-#: mod/notifications.php:216
-msgid "Friend"
+#: mod/cal.php:283 mod/events.php:402 src/Util/Temporal.php:304
+#: src/Model/Event.php:422
+msgid "month"
 msgstr ""
 
-#: mod/notifications.php:217
-msgid "Sharer"
+#: mod/cal.php:284 mod/events.php:403 src/Util/Temporal.php:305
+#: src/Model/Event.php:423
+msgid "week"
 msgstr ""
 
-#: mod/notifications.php:217
-msgid "Subscriber"
+#: mod/cal.php:285 mod/events.php:404 src/Util/Temporal.php:306
+#: src/Model/Event.php:424
+msgid "day"
 msgstr ""
 
-#: mod/notifications.php:274
-msgid "No introductions."
+#: mod/cal.php:286 mod/events.php:405
+msgid "list"
 msgstr ""
 
-#: mod/notifications.php:312
-msgid "Show unread"
+#: mod/cal.php:299 src/Core/Console/NewPassword.php:68 src/Model/User.php:218
+msgid "User not found"
 msgstr ""
 
-#: mod/notifications.php:312
-msgid "Show all"
+#: mod/cal.php:315
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/notifications.php:317
-#, php-format
-msgid "No more %s notifications."
+#: mod/cal.php:317
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/photos.php:111 src/Model/Profile.php:903
-msgid "Photo Albums"
+#: mod/cal.php:334
+msgid "calendar"
 msgstr ""
 
-#: mod/photos.php:112 mod/photos.php:1668
-msgid "Recent Photos"
+#: mod/common.php:93
+msgid "No contacts in common."
 msgstr ""
 
-#: mod/photos.php:115 mod/photos.php:1195 mod/photos.php:1670
-msgid "Upload New Photos"
+#: mod/common.php:142 mod/contacts.php:887
+msgid "Common Friends"
 msgstr ""
 
-#: mod/photos.php:129 mod/settings.php:51
-msgid "everybody"
+#: mod/community.php:51
+msgid "Community option not available."
 msgstr ""
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
+#: mod/community.php:68
+msgid "Not available."
 msgstr ""
 
-#: mod/photos.php:202
-msgid "Album not found."
+#: mod/community.php:81
+msgid "Local Community"
 msgstr ""
 
-#: mod/photos.php:232 mod/photos.php:243 mod/photos.php:1146
-msgid "Delete Album"
+#: mod/community.php:84
+msgid "Posts from local users on this server"
 msgstr ""
 
-#: mod/photos.php:241
-msgid "Do you really want to delete this photo album and all its photos?"
+#: mod/community.php:92
+msgid "Global Community"
 msgstr ""
 
-#: mod/photos.php:301 mod/photos.php:312 mod/photos.php:1412
-msgid "Delete Photo"
+#: mod/community.php:95
+msgid "Posts from users of the whole federated network"
 msgstr ""
 
-#: mod/photos.php:310
-msgid "Do you really want to delete this photo?"
+#: mod/community.php:141 mod/search.php:240
+msgid "No results."
 msgstr ""
 
-#: mod/photos.php:651
-msgid "a photo"
+#: mod/community.php:185
+msgid ""
+"This community stream shows all public posts received by this node. They may "
+"not reflect the opinions of this node’s users."
 msgstr ""
 
-#: mod/photos.php:651
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: mod/contacts.php:70 mod/notifications.php:261 src/Model/Profile.php:518
+msgid "Network:"
 msgstr ""
 
-#: mod/photos.php:747 mod/photos.php:750 mod/photos.php:779
-#: mod/wall_upload.php:194 mod/profile_photo.php:150
+#: mod/contacts.php:156
 #, php-format
-msgid "Image exceeds size limit of %s"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/contacts.php:183 mod/contacts.php:399
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/photos.php:753
-msgid "Image upload didn't complete, please try again"
+#: mod/contacts.php:193
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/photos.php:756
-msgid "Image file is missing"
+#: mod/contacts.php:227
+msgid "Contact updated."
 msgstr ""
 
-#: mod/photos.php:761
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
+#: mod/contacts.php:229 mod/dfrn_request.php:411
+msgid "Failed to update contact record."
 msgstr ""
 
-#: mod/photos.php:787
-msgid "Image file is empty."
+#: mod/contacts.php:420
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/photos.php:802 mod/wall_upload.php:208 mod/profile_photo.php:159
-msgid "Unable to process image."
+#: mod/contacts.php:420
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/photos.php:831 mod/wall_upload.php:247 mod/profile_photo.php:304
-msgid "Image upload failed."
+#: mod/contacts.php:431
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/photos.php:924
-msgid "No photos selected"
+#: mod/contacts.php:431
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/photos.php:1075
-msgid "Upload Photos"
+#: mod/contacts.php:442
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/photos.php:1079 mod/photos.php:1141
-msgid "New album name: "
+#: mod/contacts.php:442
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/photos.php:1080
-msgid "or existing album name: "
+#: mod/contacts.php:466
+msgid "Drop contact"
 msgstr ""
 
-#: mod/photos.php:1081
-msgid "Do not show a status post for this upload"
+#: mod/contacts.php:469 mod/contacts.php:824
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/photos.php:1091 mod/photos.php:1415 mod/settings.php:1217
-msgid "Show to Groups"
+#: mod/contacts.php:487
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/photos.php:1092 mod/photos.php:1416 mod/settings.php:1218
-msgid "Show to Contacts"
+#: mod/contacts.php:518
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/photos.php:1152
-msgid "Edit Album"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/photos.php:1157
-msgid "Show Newest First"
+#: mod/contacts.php:528
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/photos.php:1159
-msgid "Show Oldest First"
+#: mod/contacts.php:548
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/photos.php:1180 mod/photos.php:1653
-msgid "View Photo"
+#: mod/contacts.php:550
+msgid "Never"
 msgstr ""
 
-#: mod/photos.php:1221
-msgid "Permission denied. Access to this item may be restricted."
+#: mod/contacts.php:553
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/photos.php:1223
-msgid "Photo not available"
+#: mod/contacts.php:553
+msgid "(Update was not successful)"
 msgstr ""
 
-#: mod/photos.php:1292
-msgid "View photo"
+#: mod/contacts.php:555 mod/contacts.php:1000
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/photos.php:1292
-msgid "Edit photo"
+#: mod/contacts.php:559
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/photos.php:1293
-msgid "Use as profile photo"
+#: mod/contacts.php:564
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/photos.php:1299 src/Object/Post.php:151
-msgid "Private Message"
+#: mod/contacts.php:570
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/photos.php:1319
-msgid "View Full Size"
+#: mod/contacts.php:572
+msgid ""
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
 msgstr ""
 
-#: mod/photos.php:1380
-msgid "Tags: "
+#: mod/contacts.php:574
+msgid "Fetch information"
 msgstr ""
 
-#: mod/photos.php:1383
-msgid "[Remove any tag]"
+#: mod/contacts.php:575
+msgid "Fetch keywords"
 msgstr ""
 
-#: mod/photos.php:1398
-msgid "New album name"
+#: mod/contacts.php:576
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/photos.php:1399
-msgid "Caption"
+#: mod/contacts.php:600 mod/unfollow.php:101
+msgid "Disconnect/Unfollow"
 msgstr ""
 
-#: mod/photos.php:1400
-msgid "Add a Tag"
+#: mod/contacts.php:609
+msgid "Contact"
 msgstr ""
 
-#: mod/photos.php:1400
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/contacts.php:612
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/photos.php:1401
-msgid "Do not rotate"
+#: mod/contacts.php:613
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/photos.php:1402
-msgid "Rotate CW (right)"
+#: mod/contacts.php:614
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/photos.php:1403
-msgid "Rotate CCW (left)"
+#: mod/contacts.php:615
+msgid "Their personal note"
 msgstr ""
 
-#: mod/photos.php:1437 src/Object/Post.php:292
-msgid "I like this (toggle)"
+#: mod/contacts.php:617
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/photos.php:1438 src/Object/Post.php:293
-msgid "I don't like this (toggle)"
+#: mod/contacts.php:620 mod/contacts.php:966 mod/viewcontacts.php:105
+#, php-format
+msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: mod/photos.php:1456 mod/photos.php:1495 mod/photos.php:1556
-#: src/Object/Post.php:395 src/Object/Post.php:791
-msgid "Comment"
+#: mod/contacts.php:621
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/photos.php:1588
-msgid "Map"
+#: mod/contacts.php:622
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/poke.php:189
-msgid "Poke/Prod"
+#: mod/contacts.php:623
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/poke.php:190
-msgid "poke, prod or do other things to somebody"
+#: mod/contacts.php:624
+msgid "View conversations"
 msgstr ""
 
-#: mod/poke.php:191
-msgid "Recipient"
+#: mod/contacts.php:629
+msgid "Last update:"
 msgstr ""
 
-#: mod/poke.php:192
-msgid "Choose what you wish to do to recipient"
+#: mod/contacts.php:631
+msgid "Update public posts"
 msgstr ""
 
-#: mod/poke.php:195
-msgid "Make this post private"
+#: mod/contacts.php:633 mod/contacts.php:1010
+msgid "Update now"
 msgstr ""
 
-#: mod/search.php:111
-msgid "Only logged in users are permitted to perform a search."
+#: mod/contacts.php:639 mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unignore"
 msgstr ""
 
-#: mod/search.php:135
-msgid "Too Many Requests"
+#: mod/contacts.php:639 mod/contacts.php:829 mod/contacts.php:1027
+#: mod/notifications.php:56 mod/notifications.php:177 mod/notifications.php:266
+msgid "Ignore"
 msgstr ""
 
-#: mod/search.php:136
-msgid "Only one search per minute is permitted for not logged in users."
+#: mod/contacts.php:643
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/search.php:245
-#, php-format
-msgid "Items tagged with: %s"
+#: mod/contacts.php:644
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: mod/contacts.php:645
+msgid "Currently archived"
 msgstr ""
 
-#: mod/wall_attach.php:25 mod/wall_attach.php:33 mod/wall_attach.php:84
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:163 mod/wall_upload.php:166
-msgid "Invalid request."
+#: mod/contacts.php:646
+msgid "Awaiting connection acknowledge"
 msgstr ""
 
-#: mod/wall_attach.php:102
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/contacts.php:647 mod/notifications.php:171 mod/notifications.php:255
+msgid "Hide this contact from others"
 msgstr ""
 
-#: mod/wall_attach.php:102
-msgid "Or - did you try to upload an empty file?"
+#: mod/contacts.php:647
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/wall_attach.php:113
-#, php-format
-msgid "File exceeds size limit of %s"
+#: mod/contacts.php:648
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/wall_attach.php:137 mod/wall_attach.php:153
-msgid "File upload failed."
+#: mod/contacts.php:648
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/wall_upload.php:239 mod/item.php:474 src/Object/Image.php:960
-#: src/Object/Image.php:976 src/Object/Image.php:984 src/Object/Image.php:1009
-msgid "Wall Photos"
+#: mod/contacts.php:651
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/admin.php:107
-msgid "Theme settings updated."
+#: mod/contacts.php:651
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/admin.php:180 src/Content/Nav.php:175
-msgid "Information"
+#: mod/contacts.php:661 mod/directory.php:151 mod/events.php:520
+#: mod/notifications.php:248 src/Model/Event.php:66 src/Model/Event.php:93
+#: src/Model/Event.php:430 src/Model/Event.php:912 src/Model/Profile.php:415
+msgid "Location:"
 msgstr ""
 
-#: mod/admin.php:181
-msgid "Overview"
+#: mod/contacts.php:663 src/Model/Profile.php:422
+msgid "XMPP:"
 msgstr ""
 
-#: mod/admin.php:182 mod/admin.php:721
-msgid "Federation Statistics"
+#: mod/contacts.php:665 mod/directory.php:159 mod/notifications.php:250
+#: src/Model/Profile.php:421 src/Model/Profile.php:802
+msgid "About:"
 msgstr ""
 
-#: mod/admin.php:183
-msgid "Configuration"
+#: mod/contacts.php:667 mod/follow.php:178 mod/notifications.php:252
+#: src/Model/Profile.php:790
+msgid "Tags:"
 msgstr ""
 
-#: mod/admin.php:184 mod/admin.php:1404
-msgid "Site"
+#: mod/contacts.php:668
+msgid "Actions"
 msgstr ""
 
-#: mod/admin.php:185 mod/admin.php:1333 mod/admin.php:1872 mod/admin.php:1888
-msgid "Users"
+#: mod/contacts.php:670 mod/contacts.php:856 view/theme/frio/theme.php:259
+#: src/Content/Nav.php:100 src/Model/Profile.php:884
+msgid "Status"
 msgstr ""
 
-#: mod/admin.php:186 mod/admin.php:1988 mod/admin.php:2048 mod/settings.php:87
-msgid "Addons"
+#: mod/contacts.php:671
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/admin.php:187 mod/admin.php:2258 mod/admin.php:2302
-msgid "Themes"
+#: mod/contacts.php:712
+msgid "Suggestions"
 msgstr ""
 
-#: mod/admin.php:188 mod/settings.php:65
-msgid "Additional features"
+#: mod/contacts.php:715
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/admin.php:189 mod/admin.php:308 mod/register.php:289
-#: src/Content/Nav.php:178 src/Module/Tos.php:70
-msgid "Terms of Service"
+#: mod/contacts.php:720 mod/group.php:246
+msgid "All Contacts"
 msgstr ""
 
-#: mod/admin.php:190
-msgid "Database"
+#: mod/contacts.php:723
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/admin.php:191
-msgid "DB updates"
+#: mod/contacts.php:728
+msgid "Unblocked"
 msgstr ""
 
-#: mod/admin.php:192 mod/admin.php:756
-msgid "Inspect Queue"
+#: mod/contacts.php:731
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/admin.php:193
-msgid "Inspect worker Queue"
+#: mod/contacts.php:736
+msgid "Blocked"
 msgstr ""
 
-#: mod/admin.php:194
-msgid "Tools"
+#: mod/contacts.php:739
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/admin.php:195
-msgid "Contact Blocklist"
+#: mod/contacts.php:744
+msgid "Ignored"
 msgstr ""
 
-#: mod/admin.php:196 mod/admin.php:370
-msgid "Server Blocklist"
+#: mod/contacts.php:747
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/admin.php:197 mod/admin.php:529
-msgid "Delete Item"
+#: mod/contacts.php:752
+msgid "Archived"
 msgstr ""
 
-#: mod/admin.php:198 mod/admin.php:199 mod/admin.php:2376
-msgid "Logs"
+#: mod/contacts.php:755
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/admin.php:200 mod/admin.php:2443
-msgid "View Logs"
+#: mod/contacts.php:760
+msgid "Hidden"
 msgstr ""
 
-#: mod/admin.php:202
-msgid "Diagnostics"
+#: mod/contacts.php:763
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/admin.php:203
-msgid "PHP Info"
+#: mod/contacts.php:819
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/admin.php:204
-msgid "probe address"
+#: mod/contacts.php:820 mod/search.php:248
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
-#: mod/admin.php:205
-msgid "check webfinger"
+#: mod/contacts.php:821 mod/directory.php:214 view/theme/vier/theme.php:201
+#: src/Content/Widget.php:62
+msgid "Find"
 msgstr ""
 
-#: mod/admin.php:224 src/Content/Nav.php:218
-msgid "Admin"
+#: mod/contacts.php:827 mod/settings.php:176 mod/settings.php:701
+msgid "Update"
 msgstr ""
 
-#: mod/admin.php:225
-msgid "Addon Features"
+#: mod/contacts.php:830 mod/contacts.php:1035
+msgid "Archive"
 msgstr ""
 
-#: mod/admin.php:226
-msgid "User registrations waiting for confirmation"
+#: mod/contacts.php:830 mod/contacts.php:1035
+msgid "Unarchive"
 msgstr ""
 
-#: mod/admin.php:307 mod/admin.php:369 mod/admin.php:486 mod/admin.php:528
-#: mod/admin.php:720 mod/admin.php:755 mod/admin.php:793 mod/admin.php:893
-#: mod/admin.php:1403 mod/admin.php:1871 mod/admin.php:1987 mod/admin.php:2047
-#: mod/admin.php:2257 mod/admin.php:2301 mod/admin.php:2375 mod/admin.php:2442
-msgid "Administration"
+#: mod/contacts.php:833
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/admin.php:309
-msgid "Display Terms of Service"
+#: mod/contacts.php:859 mod/follow.php:190 mod/unfollow.php:133
+#: src/Model/Profile.php:887
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: mod/admin.php:309
-msgid ""
-"Enable the Terms of Service page. If this is enabled a link to the terms "
-"will be added to the registration form and the general information page."
+#: mod/contacts.php:867 src/Model/Profile.php:895
+msgid "Profile Details"
 msgstr ""
 
-#: mod/admin.php:310
-msgid "Display Privacy Statement"
+#: mod/contacts.php:879
+msgid "View all contacts"
 msgstr ""
 
-#: mod/admin.php:310
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+#: mod/contacts.php:890
+msgid "View all common friends"
 msgstr ""
 
-#: mod/admin.php:311
-msgid "Privacy Statement Preview"
+#: mod/contacts.php:899
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/admin.php:313
-msgid "The Terms of Service"
+#: mod/contacts.php:933
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/admin.php:313
-msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
+#: mod/contacts.php:938
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/admin.php:361 mod/admin.php:379 mod/dfrn_request.php:346
-#: mod/friendica.php:129 src/Model/Contact.php:1269
-msgid "Blocked domain"
+#: mod/contacts.php:943
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/admin.php:361
-msgid "The blocked domain"
+#: mod/contacts.php:960 mod/photos.php:1464 mod/photos.php:1503
+#: mod/photos.php:1563 src/Object/Post.php:791
+msgid "This is you"
 msgstr ""
 
-#: mod/admin.php:362 mod/admin.php:380 mod/friendica.php:129
-msgid "Reason for the block"
+#: mod/contacts.php:967
+msgid "Edit contact"
 msgstr ""
 
-#: mod/admin.php:362 mod/admin.php:375
-msgid "The reason why you blocked this domain."
+#: mod/contacts.php:1021
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/admin.php:363
-msgid "Delete domain"
+#: mod/contacts.php:1029
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/admin.php:363
-msgid "Check to delete this entry from the blocklist"
+#: mod/contacts.php:1037
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/admin.php:371
-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/contacts.php:1045
+msgid "Delete contact"
 msgstr ""
 
-#: mod/admin.php:372
-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/crepair.php:88
+msgid "Contact settings applied."
 msgstr ""
 
-#: mod/admin.php:373
-msgid "Add new entry to block list"
+#: mod/crepair.php:90
+msgid "Contact update failed."
 msgstr ""
 
-#: mod/admin.php:374
-msgid "Server Domain"
+#: mod/crepair.php:111 mod/dfrn_confirm.php:126 mod/fsuggest.php:30
+#: mod/fsuggest.php:96 mod/redir.php:28 mod/redir.php:126
+msgid "Contact not found."
 msgstr ""
 
-#: mod/admin.php:374
+#: mod/crepair.php:115
 msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: mod/admin.php:375
-msgid "Block reason"
+#: mod/crepair.php:116
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: mod/admin.php:376
-msgid "Add Entry"
+#: mod/crepair.php:130 mod/crepair.php:132
+msgid "No mirroring"
 msgstr ""
 
-#: mod/admin.php:377
-msgid "Save changes to the blocklist"
+#: mod/crepair.php:130
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: mod/admin.php:378
-msgid "Current Entries in the Blocklist"
+#: mod/crepair.php:130 mod/crepair.php:132
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: mod/admin.php:381
-msgid "Delete entry from blocklist"
+#: mod/crepair.php:145
+msgid "Return to contact editor"
 msgstr ""
 
-#: mod/admin.php:384
-msgid "Delete entry from blocklist?"
+#: mod/crepair.php:147
+msgid "Refetch contact data"
 msgstr ""
 
-#: mod/admin.php:410
-msgid "Server added to blocklist."
+#: mod/crepair.php:150
+msgid "Remote Self"
 msgstr ""
 
-#: mod/admin.php:426
-msgid "Site blocklist updated."
+#: mod/crepair.php:153
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: mod/admin.php:449 src/Core/Console/GlobalCommunityBlock.php:68
-msgid "The contact has been blocked from the node"
+#: mod/crepair.php:155
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: mod/admin.php:451 src/Core/Console/GlobalCommunityBlock.php:65
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
+#: mod/crepair.php:160
+msgid "Account Nickname"
 msgstr ""
 
-#: mod/admin.php:458
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:487
-msgid "Remote Contact Blocklist"
+#: mod/crepair.php:161
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: mod/admin.php:488
-msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
+#: mod/crepair.php:162
+msgid "Account URL"
 msgstr ""
 
-#: mod/admin.php:489
-msgid "Block Remote Contact"
+#: mod/crepair.php:163
+msgid "Friend Request URL"
 msgstr ""
 
-#: mod/admin.php:490 mod/admin.php:1874
-msgid "select all"
+#: mod/crepair.php:164
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: mod/admin.php:491
-msgid "select none"
+#: mod/crepair.php:165
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: mod/admin.php:494
-msgid "No remote contact is blocked from this node."
+#: mod/crepair.php:166
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: mod/admin.php:496
-msgid "Blocked Remote Contacts"
+#: mod/crepair.php:167
+msgid "New photo from this URL"
 msgstr ""
 
-#: mod/admin.php:497
-msgid "Block New Remote Contact"
+#: mod/delegate.php:38
+msgid "Parent user not found."
 msgstr ""
 
-#: mod/admin.php:498
-msgid "Photo"
+#: mod/delegate.php:145
+msgid "No parent user"
 msgstr ""
 
-#: mod/admin.php:506
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/delegate.php:160
+msgid "Parent Password:"
+msgstr ""
 
-#: mod/admin.php:508
-msgid "URL of the remote contact to block."
+#: mod/delegate.php:160
+msgid ""
+"Please enter the password of the parent account to legitimize your request."
 msgstr ""
 
-#: mod/admin.php:530
-msgid "Delete this Item"
+#: mod/delegate.php:165
+msgid "Parent User"
 msgstr ""
 
-#: mod/admin.php:531
+#: mod/delegate.php:168
 msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
 msgstr ""
 
-#: mod/admin.php:532
+#: mod/delegate.php:170 src/Content/Nav.php:205
+msgid "Delegate Page Management"
+msgstr ""
+
+#: mod/delegate.php:171
+msgid "Delegates"
+msgstr ""
+
+#: mod/delegate.php:173
 msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
+"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:533
-msgid "GUID"
+#: mod/delegate.php:174
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: mod/admin.php:533
-msgid "The GUID of the item you want to delete."
+#: mod/delegate.php:176
+msgid "Potential Delegates"
 msgstr ""
 
-#: mod/admin.php:567
-msgid "Item marked for deletion."
+#: mod/delegate.php:178 mod/tagrm.php:90
+msgid "Remove"
 msgstr ""
 
-#: mod/admin.php:638
-msgid "unknown"
+#: mod/delegate.php:179
+msgid "Add"
 msgstr ""
 
-#: mod/admin.php:714
-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/delegate.php:180
+msgid "No entries."
 msgstr ""
 
-#: mod/admin.php:715
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/dfrn_confirm.php:71 mod/profiles.php:38 mod/profiles.php:148
+#: mod/profiles.php:193 mod/profiles.php:523
+msgid "Profile not found."
 msgstr ""
 
-#: mod/admin.php:727
-#, php-format
+#: mod/dfrn_confirm.php:127
 msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: mod/admin.php:758 mod/admin.php:796
-msgid "ID"
+#: mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: mod/admin.php:759
-msgid "Recipient Name"
+#: mod/dfrn_confirm.php:244 mod/dfrn_confirm.php:249
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: mod/admin.php:760
-msgid "Recipient Profile"
+#: mod/dfrn_confirm.php:258
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: mod/admin.php:761 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:180 src/Content/Nav.php:183
-msgid "Network"
+#: mod/dfrn_confirm.php:270
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: mod/admin.php:762 mod/admin.php:798
-msgid "Created"
+#: mod/dfrn_confirm.php:273
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: mod/admin.php:763
-msgid "Last Tried"
+#: mod/dfrn_confirm.php:278
+msgid "Remote site reported: "
 msgstr ""
 
-#: mod/admin.php:764
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
+#: mod/dfrn_confirm.php:389
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: mod/admin.php:794
-msgid "Inspect Worker Queue"
+#: mod/dfrn_confirm.php:447
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: mod/admin.php:797
-msgid "Job Parameters"
+#: mod/dfrn_confirm.php:457
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: mod/admin.php:799
-msgid "Priority"
+#: mod/dfrn_confirm.php:468
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: mod/admin.php:800
-msgid ""
-"This page lists the currently queued worker jobs. These jobs are handled by "
-"the worker cronjob you've set up during install."
+#: mod/dfrn_confirm.php:484
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: mod/admin.php:824
+#: mod/dfrn_confirm.php:498
 #, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php bin/"
-"console.php dbstructure toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: mod/admin.php:831
-#, php-format
+#: mod/dfrn_confirm.php:514
 msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: mod/admin.php:841
-msgid ""
-"The database update failed. Please run \"php bin/console.php dbstructure "
-"update\" from the command line and have a look at the errors that might "
-"appear."
+#: mod/dfrn_confirm.php:525
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: mod/admin.php:847
-msgid "The worker was never executed. Please check your database structure!"
+#: mod/dfrn_confirm.php:580
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: mod/admin.php:850
-#, php-format
-msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please "
-"check your crontab settings."
+#: mod/dfrn_confirm.php:610 mod/dfrn_request.php:560 src/Model/Contact.php:1648
+msgid "[Name Withheld]"
 msgstr ""
 
-#: mod/admin.php:856
+#: mod/dfrn_poll.php:126 mod/dfrn_poll.php:543
 #, php-format
-msgid ""
-"Friendica's configuration now is stored in config/local.ini.php, please copy "
-"config/local-sample.ini.php and move your config from <code>.htconfig.php</"
-"code>. See <a href=\"%s\">the Config help page</a> for help with the "
-"transition."
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: mod/admin.php:861
-msgid "Normal Account"
+#: mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: mod/admin.php:862
-msgid "Automatic Follower Account"
+#: mod/dfrn_request.php:111 mod/dfrn_request.php:352
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: mod/admin.php:863
-msgid "Public Forum Account"
+#: mod/dfrn_request.php:115 mod/dfrn_request.php:356
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: mod/admin.php:864
-msgid "Automatic Friend Account"
+#: mod/dfrn_request.php:118 mod/dfrn_request.php:359
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: mod/admin.php:865
-msgid "Blog Account"
-msgstr ""
+#: mod/dfrn_request.php:122 mod/dfrn_request.php:363
+#, 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/admin.php:866
-msgid "Private Forum Account"
+#: mod/dfrn_request.php:160
+msgid "Introduction complete."
 msgstr ""
 
-#: mod/admin.php:888
-msgid "Message queues"
+#: mod/dfrn_request.php:196
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: mod/admin.php:894
-msgid "Summary"
+#: mod/dfrn_request.php:223
+msgid "Profile unavailable."
 msgstr ""
 
-#: mod/admin.php:896
-msgid "Registered users"
+#: mod/dfrn_request.php:245
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: mod/admin.php:898
-msgid "Pending registrations"
+#: mod/dfrn_request.php:246
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: mod/admin.php:899
-msgid "Version"
+#: mod/dfrn_request.php:247
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: mod/admin.php:904
-msgid "Active addons"
+#: mod/dfrn_request.php:273
+msgid "Invalid locator"
 msgstr ""
 
-#: mod/admin.php:935
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/dfrn_request.php:309
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: mod/admin.php:1268
-msgid "Site settings updated."
+#: mod/dfrn_request.php:312
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: mod/admin.php:1295 mod/settings.php:896
-msgid "No special theme for mobile devices"
+#: mod/dfrn_request.php:332
+msgid "Invalid profile URL."
 msgstr ""
 
-#: mod/admin.php:1324
-msgid "No community page for local users"
+#: mod/dfrn_request.php:338 src/Model/Contact.php:1333
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: mod/admin.php:1325
-msgid "No community page"
+#: mod/dfrn_request.php:431
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: mod/admin.php:1326
-msgid "Public postings from users of this site"
+#: mod/dfrn_request.php:469
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: mod/admin.php:1327
-msgid "Public postings from the federated network"
+#: mod/dfrn_request.php:485
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: mod/admin.php:1328
-msgid "Public postings from local users and the federated network"
+#: mod/dfrn_request.php:493
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: mod/admin.php:1334
-msgid "Users, Global Contacts"
+#: mod/dfrn_request.php:507 mod/dfrn_request.php:524
+msgid "Confirm"
 msgstr ""
 
-#: mod/admin.php:1335
-msgid "Users, Global Contacts/fallback"
+#: mod/dfrn_request.php:519
+msgid "Hide this contact"
 msgstr ""
 
-#: mod/admin.php:1339
-msgid "One month"
+#: mod/dfrn_request.php:522
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: mod/admin.php:1340
-msgid "Three months"
+#: mod/dfrn_request.php:523
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/admin.php:1341
-msgid "Half a year"
+#: mod/dfrn_request.php:633
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: mod/admin.php:1342
-msgid "One year"
+#: mod/dfrn_request.php:636
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: mod/admin.php:1347
-msgid "Multi user instance"
+#: mod/dfrn_request.php:641
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: mod/admin.php:1373
-msgid "Closed"
+#: mod/dfrn_request.php:642
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
 msgstr ""
 
-#: mod/admin.php:1374
-msgid "Requires approval"
+#: mod/dfrn_request.php:643 mod/follow.php:150
+msgid "Please answer the following:"
 msgstr ""
 
-#: mod/admin.php:1375
-msgid "Open"
+#: mod/dfrn_request.php:644 mod/follow.php:151
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid "No SSL policy, links will track page SSL state"
+#: mod/dfrn_request.php:645 mod/follow.php:152
+msgid "Add a personal note:"
 msgstr ""
 
-#: mod/admin.php:1380
-msgid "Force all links to use SSL"
+#: mod/dfrn_request.php:647 src/Content/ContactSelector.php:77
+msgid "Friendica"
 msgstr ""
 
-#: mod/admin.php:1381
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/dfrn_request.php:648
+msgid "GNU Social (Pleroma, Mastodon)"
 msgstr ""
 
-#: mod/admin.php:1385
-msgid "Don't check"
+#: mod/dfrn_request.php:649
+msgid "Diaspora (Socialhome, Hubzilla)"
 msgstr ""
 
-#: mod/admin.php:1386
-msgid "check the stable version"
+#: mod/dfrn_request.php:650
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: mod/admin.php:1387
-msgid "check the development version"
+#: mod/dfrn_request.php:651 mod/follow.php:158 mod/unfollow.php:114
+msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/admin.php:1406
-msgid "Republish users to directory"
+#: mod/dfrn_request.php:653 mod/follow.php:63 mod/unfollow.php:66
+msgid "Submit Request"
 msgstr ""
 
-#: mod/admin.php:1407 mod/register.php:265
-msgid "Registration"
+#: mod/directory.php:156 mod/notifications.php:254 src/Model/Profile.php:418
+#: src/Model/Profile.php:741
+msgid "Gender:"
 msgstr ""
 
-#: mod/admin.php:1408
-msgid "File upload"
+#: mod/directory.php:157 src/Model/Profile.php:419 src/Model/Profile.php:765
+msgid "Status:"
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Policies"
+#: mod/directory.php:158 src/Model/Profile.php:420 src/Model/Profile.php:782
+msgid "Homepage:"
 msgstr ""
 
-#: mod/admin.php:1411
-msgid "Auto Discovered Contact Directory"
+#: mod/directory.php:207 view/theme/vier/theme.php:206
+#: src/Content/Widget.php:67
+msgid "Global Directory"
 msgstr ""
 
-#: mod/admin.php:1412
-msgid "Performance"
+#: mod/directory.php:209
+msgid "Find on this site"
 msgstr ""
 
-#: mod/admin.php:1413
-msgid "Worker"
+#: mod/directory.php:211
+msgid "Results for:"
 msgstr ""
 
-#: mod/admin.php:1414
-msgid "Message Relay"
+#: mod/directory.php:213
+msgid "Site Directory"
 msgstr ""
 
-#: mod/admin.php:1415
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/directory.php:218
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/admin.php:1418
-msgid "Site name"
+#: mod/dirfind.php:52
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/admin.php:1419
-msgid "Host name"
+#: mod/dirfind.php:63
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/admin.php:1420
-msgid "Sender Email"
+#: mod/dirfind.php:256 mod/match.php:125
+msgid "No matches"
 msgstr ""
 
-#: mod/admin.php:1420
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/editpost.php:26 mod/editpost.php:36
+msgid "Item not found"
 msgstr ""
 
-#: mod/admin.php:1421
-msgid "Banner/Logo"
+#: mod/editpost.php:43
+msgid "Edit post"
 msgstr ""
 
-#: mod/admin.php:1422
-msgid "Shortcut icon"
+#: mod/editpost.php:125 src/Core/ACL.php:305
+msgid "CC: email addresses"
 msgstr ""
 
-#: mod/admin.php:1422
-msgid "Link to an icon that will be used for browsers."
+#: mod/editpost.php:132 src/Core/ACL.php:306
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: mod/admin.php:1423
-msgid "Touch icon"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/admin.php:1423
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/admin.php:1424
-msgid "Additional Info"
+#: mod/events.php:394
+msgid "Create New Event"
 msgstr ""
 
-#: mod/admin.php:1424
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
+#: mod/events.php:508
+msgid "Event details"
 msgstr ""
 
-#: mod/admin.php:1425
-msgid "System language"
+#: mod/events.php:509
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/admin.php:1426
-msgid "System theme"
+#: mod/events.php:510 mod/events.php:511
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/admin.php:1426
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/events.php:510 mod/events.php:522 mod/profiles.php:607
+msgid "Required"
 msgstr ""
 
-#: mod/admin.php:1427
-msgid "Mobile system theme"
+#: mod/events.php:512 mod/events.php:528
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/admin.php:1427
-msgid "Theme for mobile devices"
+#: mod/events.php:514 mod/events.php:515
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/admin.php:1428
-msgid "SSL link policy"
+#: mod/events.php:516 mod/events.php:529
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/admin.php:1428
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/events.php:518
+msgid "Description:"
 msgstr ""
 
-#: mod/admin.php:1429
-msgid "Force SSL"
+#: mod/events.php:522 mod/events.php:524
+msgid "Title:"
 msgstr ""
 
-#: mod/admin.php:1429
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/events.php:525 mod/events.php:526
+msgid "Share this event"
 msgstr ""
 
-#: mod/admin.php:1430
-msgid "Hide help entry from navigation menu"
+#: mod/events.php:533 src/Model/Profile.php:860
+msgid "Basic"
 msgstr ""
 
-#: mod/admin.php:1430
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/events.php:535 mod/photos.php:1094 mod/photos.php:1418
+#: src/Core/ACL.php:308
+msgid "Permissions"
 msgstr ""
 
-#: mod/admin.php:1431
-msgid "Single user instance"
+#: mod/events.php:554
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/admin.php:1431
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/events.php:556
+msgid "Event removed"
 msgstr ""
 
-#: mod/admin.php:1432
-msgid "Maximum image size"
+#: mod/fbrowser.php:35 view/theme/frio/theme.php:261 src/Content/Nav.php:102
+#: src/Model/Profile.php:900
+msgid "Photos"
 msgstr ""
 
-#: mod/admin.php:1432
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/fbrowser.php:44 mod/fbrowser.php:69 mod/photos.php:198
+#: mod/photos.php:1058 mod/photos.php:1145 mod/photos.php:1162
+#: mod/photos.php:1622 mod/photos.php:1637 src/Model/Photo.php:243
+#: src/Model/Photo.php:252
+msgid "Contact Photos"
 msgstr ""
 
-#: mod/admin.php:1433
-msgid "Maximum image length"
+#: mod/fbrowser.php:106 mod/fbrowser.php:137 mod/profile_photo.php:247
+msgid "Upload"
 msgstr ""
 
-#: mod/admin.php:1433
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/fbrowser.php:132
+msgid "Files"
 msgstr ""
 
-#: mod/admin.php:1434
-msgid "JPEG image quality"
+#: mod/feedtest.php:21
+msgid "You must be logged in to use this module"
 msgstr ""
 
-#: mod/admin.php:1434
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/feedtest.php:49
+msgid "Source URL"
 msgstr ""
 
-#: mod/admin.php:1436
-msgid "Register policy"
+#: mod/follow.php:46
+msgid "The contact could not be added."
 msgstr ""
 
-#: mod/admin.php:1437
-msgid "Maximum Daily Registrations"
+#: mod/follow.php:74
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/admin.php:1437
-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/follow.php:84
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1438
-msgid "Register text"
+#: mod/follow.php:91
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1438
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
+#: mod/follow.php:98
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Forbidden Nicknames"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: mod/admin.php:1439
-msgid ""
-"Comma separated list of nicknames that are forbidden from registration. "
-"Preset is a list of role names according RFC 2142."
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
 msgstr ""
 
-#: mod/admin.php:1440
-msgid "Accounts abandoned after x days"
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: mod/admin.php:1440
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/group.php:36
+msgid "Group created."
 msgstr ""
 
-#: mod/admin.php:1441
-msgid "Allowed friend domains"
+#: mod/group.php:42
+msgid "Could not create group."
 msgstr ""
 
-#: mod/admin.php:1441
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: mod/group.php:56 mod/group.php:187
+msgid "Group not found."
 msgstr ""
 
-#: mod/admin.php:1442
-msgid "Allowed email domains"
+#: mod/group.php:70
+msgid "Group name changed."
 msgstr ""
 
-#: mod/admin.php:1442
-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/group.php:83 mod/profperm.php:28 index.php:431
+msgid "Permission denied"
 msgstr ""
 
-#: mod/admin.php:1443
-msgid "No OEmbed rich content"
+#: mod/group.php:101
+msgid "Save Group"
 msgstr ""
 
-#: mod/admin.php:1443
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
+#: mod/group.php:102
+msgid "Filter"
 msgstr ""
 
-#: mod/admin.php:1444
-msgid "Allowed OEmbed domains"
+#: mod/group.php:107
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: mod/admin.php:1444
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
+#: mod/group.php:108 mod/group.php:134 mod/group.php:229
+#: src/Model/Group.php:421
+msgid "Group Name: "
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "Block public"
-msgstr ""
-
-#: mod/admin.php:1445
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/group.php:125 src/Model/Group.php:418
+msgid "Contacts not in any group"
 msgstr ""
 
-#: mod/admin.php:1446
-msgid "Force publish"
+#: mod/group.php:157
+msgid "Group removed."
 msgstr ""
 
-#: mod/admin.php:1446
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/group.php:159
+msgid "Unable to remove group."
 msgstr ""
 
-#: mod/admin.php:1446
-msgid "Enabling this may violate privacy laws like the GDPR"
+#: mod/group.php:222
+msgid "Delete Group"
 msgstr ""
 
-#: mod/admin.php:1447
-msgid "Global directory URL"
+#: mod/group.php:233
+msgid "Edit Group Name"
 msgstr ""
 
-#: mod/admin.php:1447
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/group.php:244
+msgid "Members"
 msgstr ""
 
-#: mod/admin.php:1448
-msgid "Private posts by default for new users"
+#: mod/group.php:247 mod/network.php:638
+msgid "Group is empty"
 msgstr ""
 
-#: mod/admin.php:1448
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/group.php:260
+msgid "Remove contact from group"
 msgstr ""
 
-#: mod/admin.php:1449
-msgid "Don't include post content in email notifications"
+#: mod/group.php:278 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: mod/admin.php:1449
-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/group.php:292
+msgid "Add contact to group"
 msgstr ""
 
-#: mod/admin.php:1450
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/hcard.php:19
+msgid "No profile"
 msgstr ""
 
-#: mod/admin.php:1450
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/install.php:87
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/admin.php:1451
-msgid "Don't embed private images in posts"
+#: mod/install.php:93
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/admin.php:1451
-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/install.php:97
+msgid "Could not create table."
 msgstr ""
 
-#: mod/admin.php:1452
-msgid "Explicit Content"
+#: mod/install.php:103
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/admin.php:1452
+#: mod/install.php:108
 msgid ""
-"Set this to announce that your node is used mostly for explicit content that "
-"might not be suited for minors. This information will be published in the "
-"node information and might be used, e.g. by the global directory, to filter "
-"your node from listings of nodes to join. Additionally a note about this "
-"will be shown at the user registration page."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/admin.php:1453
-msgid "Allow Users to set remote_self"
+#: mod/install.php:109 mod/install.php:153 mod/install.php:261
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/admin.php:1453
-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/install.php:121
+msgid "Database already in use."
 msgstr ""
 
-#: mod/admin.php:1454
-msgid "Block multiple registrations"
+#: mod/install.php:150
+msgid "System check"
 msgstr ""
 
-#: mod/admin.php:1454
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/install.php:155
+msgid "Check again"
 msgstr ""
 
-#: mod/admin.php:1455
-msgid "OpenID support"
+#: mod/install.php:174
+msgid "Database connection"
 msgstr ""
 
-#: mod/admin.php:1455
-msgid "OpenID support for registration and logins."
+#: mod/install.php:175
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/admin.php:1456
-msgid "Fullname check"
+#: mod/install.php:176
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/admin.php:1456
+#: mod/install.php:177
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/admin.php:1457
-msgid "Community pages for visitors"
+#: mod/install.php:181
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/admin.php:1457
-msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
+#: mod/install.php:182
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/admin.php:1458
-msgid "Posts per user on community page"
+#: mod/install.php:183
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/admin.php:1458
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/install.php:183
+msgid "For security reasons the password must not be empty"
 msgstr ""
 
-#: mod/admin.php:1459
-msgid "Enable OStatus support"
+#: mod/install.php:184
+msgid "Database Name"
 msgstr ""
 
-#: mod/admin.php:1459
+#: mod/install.php:185 mod/install.php:222
+msgid "Site administrator email address"
+msgstr ""
+
+#: mod/install.php:185 mod/install.php:222
 msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/admin.php:1460
-msgid "Only import OStatus threads from our contacts"
+#: mod/install.php:187 mod/install.php:225
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/admin.php:1460
-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/install.php:212
+msgid "Site settings"
 msgstr ""
 
-#: mod/admin.php:1461
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/install.php:226
+msgid "System Language:"
 msgstr ""
 
-#: mod/admin.php:1463
+#: mod/install.php:226
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/admin.php:1464
-msgid "Enable Diaspora support"
+#: mod/install.php:242
+msgid ""
+"The database configuration file \"config/local.ini.php\" could not be "
+"written. Please use the enclosed text to create a configuration file in your "
+"web server root."
 msgstr ""
 
-#: mod/admin.php:1464
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/install.php:259
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/admin.php:1465
-msgid "Only allow Friendica contacts"
+#: mod/install.php:260
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
 msgstr ""
 
-#: mod/admin.php:1465
+#: mod/install.php:263
+#, php-format
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"and register as new user. Remember to use the same email you have entered as "
+"administrator email. This will allow you to enter the site admin panel."
 msgstr ""
 
-#: mod/admin.php:1466
-msgid "Verify SSL"
+#: mod/invite.php:34
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: mod/admin.php:1466
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: mod/invite.php:56
+#, php-format
+msgid "%s : Not a valid email address."
 msgstr ""
 
-#: mod/admin.php:1467
-msgid "Proxy user"
+#: mod/invite.php:88
+msgid "Please join us on Friendica"
 msgstr ""
 
-#: mod/admin.php:1468
-msgid "Proxy URL"
+#: mod/invite.php:97
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: mod/admin.php:1469
-msgid "Network timeout"
+#: mod/invite.php:101
+#, php-format
+msgid "%s : Message delivery failed."
 msgstr ""
 
-#: mod/admin.php:1469
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
+#: mod/invite.php:105
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/admin.php:1470
-msgid "Maximum Load Average"
+#: mod/invite.php:123
+msgid "You have no more invitations available"
 msgstr ""
 
-#: mod/admin.php:1470
+#: mod/invite.php:131
+#, php-format
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+"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/admin.php:1471
-msgid "Maximum Load Average (Frontend)"
+#: mod/invite.php:133
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 msgstr ""
 
-#: mod/admin.php:1471
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/invite.php:134
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
 msgstr ""
 
-#: mod/admin.php:1472
-msgid "Minimal Memory"
+#: mod/invite.php:138
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
 msgstr ""
 
-#: mod/admin.php:1472
+#: mod/invite.php:142
 msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
-
-#: mod/admin.php:1473
-msgid "Maximum table size for optimization"
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
 msgstr ""
 
-#: mod/admin.php:1473
-msgid ""
-"Maximum table size (in MB) for the automatic optimization. Enter -1 to "
-"disable it."
+#: mod/invite.php:141
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
 msgstr ""
 
-#: mod/admin.php:1474
-msgid "Minimum level of fragmentation"
+#: mod/invite.php:148
+msgid "Send invitations"
 msgstr ""
 
-#: mod/admin.php:1474
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/invite.php:149
+msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: mod/admin.php:1476
-msgid "Periodical check of global contacts"
+#: mod/invite.php:150 mod/message.php:258 mod/message.php:424
+#: mod/wallmessage.php:141
+msgid "Your message:"
 msgstr ""
 
-#: mod/admin.php:1476
+#: mod/invite.php:150
 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:1477
-msgid "Days between requery"
-msgstr ""
-
-#: mod/admin.php:1477
-msgid "Number of days after which a server is requeried for his contacts."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 msgstr ""
 
-#: mod/admin.php:1478
-msgid "Discover contacts from other servers"
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: mod/admin.php:1478
+#: mod/invite.php:152
 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:1479
-msgid "Timeframe for fetching global contacts"
+"Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: mod/admin.php:1479
+#: mod/invite.php:154
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
 msgstr ""
 
-#: mod/admin.php:1480
-msgid "Search the local directory"
+#: mod/item.php:116
+msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/admin.php:1480
-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/item.php:284
+msgid "Empty post discarded."
 msgstr ""
 
-#: mod/admin.php:1482
-msgid "Publish server information"
+#: mod/item.php:472 mod/wall_upload.php:240 src/Object/Image.php:966
+#: src/Object/Image.php:982 src/Object/Image.php:990 src/Object/Image.php:1015
+msgid "Wall Photos"
 msgstr ""
 
-#: mod/admin.php:1482
+#: mod/item.php:808
+#, php-format
 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."
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/admin.php:1484
-msgid "Check upstream version"
+#: mod/item.php:810
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/admin.php:1484
+#: mod/item.php:811
 msgid ""
-"Enables checking for new Friendica versions at github. If there is a new "
-"version, you will be informed in the admin panel overview."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: mod/admin.php:1485
-msgid "Suppress Tags"
+#: mod/item.php:815
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: mod/admin.php:1485
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/lockview.php:42 mod/lockview.php:50
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: mod/admin.php:1486
-msgid "Clean database"
+#: mod/lockview.php:59
+msgid "Visible to:"
 msgstr ""
 
-#: mod/admin.php:1486
-msgid ""
-"Remove old remote items, orphaned database records and old content from some "
-"other helper tables."
+#: mod/lostpass.php:28
+msgid "No valid account found."
 msgstr ""
 
-#: mod/admin.php:1487
-msgid "Lifespan of remote items"
+#: mod/lostpass.php:40
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/admin.php:1487
+#: mod/lostpass.php:46
+#, php-format
 msgid ""
-"When the database cleanup is enabled, this defines the days after which "
-"remote items will be deleted. Own items, and marked or filed items are "
-"always kept. 0 disables this behaviour."
-msgstr ""
-
-#: mod/admin.php:1488
-msgid "Lifespan of unclaimed items"
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the "
+"verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email, the request will expire "
+"shortly.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
 msgstr ""
 
-#: mod/admin.php:1488
+#: mod/lostpass.php:57
+#, php-format
 msgid ""
-"When the database cleanup is enabled, this defines the days after which "
-"unclaimed remote items (mostly content from the relay) will be deleted. "
-"Default value is 90 days. Defaults to the general lifespan value of remote "
-"items if set to 0."
-msgstr ""
-
-#: mod/admin.php:1489
-msgid "Path to item cache"
-msgstr ""
-
-#: mod/admin.php:1489
-msgid "The item caches buffers generated bbcode and external images."
+"\n"
+"\t\tFollow this link soon to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after "
+"logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
 msgstr ""
 
-#: mod/admin.php:1490
-msgid "Cache duration in seconds"
+#: mod/lostpass.php:74
+#, php-format
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/admin.php:1490
+#: mod/lostpass.php:90
 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:1491
-msgid "Maximum numbers of comments per post"
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: mod/admin.php:1491
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/lostpass.php:103
+msgid "Request has expired, please make a new one."
 msgstr ""
 
-#: mod/admin.php:1492
-msgid "Temp path"
+#: mod/lostpass.php:118
+msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/admin.php:1492
+#: mod/lostpass.php:119
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: mod/admin.php:1493
-msgid "Base path to installation"
+#: mod/lostpass.php:120 src/Module/Login.php:314
+msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/admin.php:1493
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the "
-"correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
+#: mod/lostpass.php:121
+msgid "Reset"
 msgstr ""
 
-#: mod/admin.php:1494
-msgid "Disable picture proxy"
+#: mod/lostpass.php:137 src/Module/Login.php:326
+msgid "Password Reset"
 msgstr ""
 
-#: mod/admin.php:1494
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwidth."
+#: mod/lostpass.php:138
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/admin.php:1495
-msgid "Only search in tags"
+#: mod/lostpass.php:139
+msgid "Your new password is"
 msgstr ""
 
-#: mod/admin.php:1495
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/lostpass.php:140
+msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: mod/admin.php:1497
-msgid "New base url"
+#: mod/lostpass.php:141
+msgid "click here to login"
 msgstr ""
 
-#: mod/admin.php:1497
+#: mod/lostpass.php:142
 msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and "
-"Diaspora* contacts of all users."
-msgstr ""
-
-#: mod/admin.php:1499
-msgid "RINO Encryption"
-msgstr ""
-
-#: mod/admin.php:1499
-msgid "Encryption layer between nodes."
-msgstr ""
-
-#: mod/admin.php:1499
-msgid "Enabled"
-msgstr ""
-
-#: mod/admin.php:1501
-msgid "Maximum number of parallel workers"
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
 msgstr ""
 
-#: mod/admin.php:1501
+#: mod/lostpass.php:150
 #, php-format
 msgid ""
-"On shared hosters set this to %d. On larger systems, values of %d are great. "
-"Default value is %d."
-msgstr ""
-
-#: mod/admin.php:1502
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
-
-#: mod/admin.php:1502
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of worker calls in your crontab."
-msgstr ""
-
-#: mod/admin.php:1503
-msgid "Enable fastlane"
-msgstr ""
-
-#: mod/admin.php:1503
-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:1504
-msgid "Enable frontend worker"
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\tsomething that you will remember).\n"
+"\t\t"
 msgstr ""
 
-#: mod/admin.php:1504
+#: mod/lostpass.php:156
 #, php-format
 msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
-"might want to call %s/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs "
-"on your server."
-msgstr ""
-
-#: mod/admin.php:1506
-msgid "Subscribe to relay"
-msgstr ""
-
-#: mod/admin.php:1506
-msgid ""
-"Enables the receiving of public posts from the relay. They will be included "
-"in the search, subscribed tags and on the global community page."
-msgstr ""
-
-#: mod/admin.php:1507
-msgid "Relay server"
+"\n"
+"\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t%2$s\n"
+"\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\tYou may change that password from your account settings page after "
+"logging in.\n"
+"\t\t"
 msgstr ""
 
-#: mod/admin.php:1507
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
+#: mod/lostpass.php:170
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/admin.php:1508
-msgid "Direct relay transfer"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: mod/admin.php:1508
+#: mod/manage.php:181
 msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: mod/admin.php:1509
-msgid "Relay scope"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: mod/admin.php:1509
-msgid ""
-"Can be 'all' or 'tags'. 'all' means that every public post should be "
-"received. 'tags' means that only posts with selected tags should be received."
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: mod/admin.php:1509
-msgid "all"
+#: mod/match.php:104
+msgid "is interested in:"
 msgstr ""
 
-#: mod/admin.php:1509
-msgid "tags"
+#: mod/match.php:120
+msgid "Profile Match"
 msgstr ""
 
-#: mod/admin.php:1510
-msgid "Server tags"
+#: mod/message.php:31 mod/message.php:120 src/Content/Nav.php:199
+msgid "New Message"
 msgstr ""
 
-#: mod/admin.php:1510
-msgid "Comma separated list of tags for the 'tags' subscription."
+#: mod/message.php:74 mod/wallmessage.php:57
+msgid "No recipient selected."
 msgstr ""
 
-#: mod/admin.php:1511
-msgid "Allow user tags"
+#: mod/message.php:78
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/admin.php:1511
-msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
+#: mod/message.php:81 mod/wallmessage.php:63
+msgid "Message could not be sent."
 msgstr ""
 
-#: mod/admin.php:1514
-msgid "Start Relocation"
+#: mod/message.php:84 mod/wallmessage.php:66
+msgid "Message collection failure."
 msgstr ""
 
-#: mod/admin.php:1540
-msgid "Update has been marked successful"
+#: mod/message.php:87 mod/wallmessage.php:69
+msgid "Message sent."
 msgstr ""
 
-#: mod/admin.php:1547
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/message.php:114 mod/notifications.php:43 mod/notifications.php:178
+#: mod/notifications.php:230
+msgid "Discard"
 msgstr ""
 
-#: mod/admin.php:1550
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/message.php:127 view/theme/frio/theme.php:268 src/Content/Nav.php:196
+msgid "Messages"
 msgstr ""
 
-#: mod/admin.php:1566
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/message.php:152
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: mod/admin.php:1568
-#, php-format
-msgid "Update %s was successfully applied."
+#: mod/message.php:169
+msgid "Message deleted."
 msgstr ""
 
-#: mod/admin.php:1571
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/message.php:184
+msgid "Conversation removed."
 msgstr ""
 
-#: mod/admin.php:1574
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/message.php:249 mod/wallmessage.php:132
+msgid "Send Private Message"
 msgstr ""
 
-#: mod/admin.php:1597
-msgid "No failed updates."
+#: mod/message.php:250 mod/message.php:419 mod/wallmessage.php:134
+msgid "To:"
 msgstr ""
 
-#: mod/admin.php:1598
-msgid "Check database structure"
+#: mod/message.php:254 mod/message.php:421 mod/wallmessage.php:135
+msgid "Subject:"
 msgstr ""
 
-#: mod/admin.php:1603
-msgid "Failed Updates"
+#: mod/message.php:290
+msgid "No messages."
 msgstr ""
 
-#: mod/admin.php:1604
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/message.php:331
+msgid "Message not available."
 msgstr ""
 
-#: mod/admin.php:1605
-msgid "Mark success (if update was manually applied)"
+#: mod/message.php:395
+msgid "Delete message"
 msgstr ""
 
-#: mod/admin.php:1606
-msgid "Attempt to execute this update step automatically"
+#: mod/message.php:397 mod/message.php:498
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: mod/admin.php:1645
-#, 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/message.php:412 mod/message.php:495
+msgid "Delete conversation"
 msgstr ""
 
-#: mod/admin.php:1648
-#, php-format
+#: mod/message.php:414
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default "
-"profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tIf you ever want to delete your account, you can do so at %1$s/"
-"removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: mod/admin.php:1682 src/Model/User.php:703
-#, php-format
-msgid "Registration details for %s"
+#: mod/message.php:418
+msgid "Send Reply"
 msgstr ""
 
-#: mod/admin.php:1692
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1698
+#: mod/message.php:469
 #, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+msgid "Unknown sender - %s"
+msgstr ""
 
-#: mod/admin.php:1745
+#: mod/message.php:471
 #, php-format
-msgid "User '%s' deleted"
+msgid "You and %s"
 msgstr ""
 
-#: mod/admin.php:1753
+#: mod/message.php:473
 #, php-format
-msgid "User '%s' unblocked"
+msgid "%s and You"
 msgstr ""
 
-#: mod/admin.php:1753
+#: mod/message.php:501
 #, php-format
-msgid "User '%s' blocked"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/network.php:193 mod/search.php:39
+msgid "Remove term"
 msgstr ""
 
-#: mod/admin.php:1810 mod/settings.php:1057
-msgid "Normal Account Page"
+#: mod/network.php:200 mod/search.php:48 src/Content/Feature.php:100
+msgid "Saved Searches"
 msgstr ""
 
-#: mod/admin.php:1811 mod/settings.php:1061
-msgid "Soapbox Page"
+#: mod/network.php:201 src/Model/Group.php:412
+msgid "add"
 msgstr ""
 
-#: mod/admin.php:1812 mod/settings.php:1065
-msgid "Public Forum"
+#: mod/network.php:545
+#, 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:548
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/admin.php:1813 mod/settings.php:1069
-msgid "Automatic Friend Page"
+#: mod/network.php:617
+msgid "No such group"
 msgstr ""
 
-#: mod/admin.php:1814
-msgid "Private Forum"
+#: mod/network.php:642
+#, php-format
+msgid "Group: %s"
 msgstr ""
 
-#: mod/admin.php:1817 mod/settings.php:1041
-msgid "Personal Page"
+#: mod/network.php:668
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/admin.php:1818 mod/settings.php:1045
-msgid "Organisation Page"
+#: mod/network.php:671
+msgid "Invalid contact."
 msgstr ""
 
-#: mod/admin.php:1819 mod/settings.php:1049
-msgid "News Page"
+#: mod/network.php:940
+msgid "Commented Order"
 msgstr ""
 
-#: mod/admin.php:1820 mod/settings.php:1053
-msgid "Community Forum"
+#: mod/network.php:943
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: mod/admin.php:1866 mod/admin.php:1877 mod/admin.php:1890 mod/admin.php:1908
-#: src/Content/ContactSelector.php:82
-msgid "Email"
+#: mod/network.php:948
+msgid "Posted Order"
 msgstr ""
 
-#: mod/admin.php:1866 mod/admin.php:1890
-msgid "Register date"
+#: mod/network.php:951
+msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/admin.php:1866 mod/admin.php:1890
-msgid "Last login"
+#: mod/network.php:959 mod/profiles.php:594
+#: src/Core/NotificationsManager.php:183
+msgid "Personal"
 msgstr ""
 
-#: mod/admin.php:1866 mod/admin.php:1890
-msgid "Last item"
+#: mod/network.php:962
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: mod/admin.php:1866
-msgid "Type"
+#: mod/network.php:970
+msgid "New"
 msgstr ""
 
-#: mod/admin.php:1873
-msgid "Add User"
+#: mod/network.php:973
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: mod/admin.php:1875
-msgid "User registrations waiting for confirm"
+#: mod/network.php:981
+msgid "Shared Links"
 msgstr ""
 
-#: mod/admin.php:1876
-msgid "User waiting for permanent deletion"
+#: mod/network.php:984
+msgid "Interesting Links"
 msgstr ""
 
-#: mod/admin.php:1877
-msgid "Request date"
+#: mod/network.php:992
+msgid "Starred"
 msgstr ""
 
-#: mod/admin.php:1878
-msgid "No registrations."
+#: mod/network.php:995
+msgid "Favourite Posts"
 msgstr ""
 
-#: mod/admin.php:1879
-msgid "Note from the user"
+#: mod/notes.php:42 src/Model/Profile.php:942
+msgid "Personal Notes"
 msgstr ""
 
-#: mod/admin.php:1881
-msgid "Deny"
+#: mod/notifications.php:34
+msgid "Invalid request identifier."
 msgstr ""
 
-#: mod/admin.php:1885
-msgid "Site admin"
+#: mod/notifications.php:92 src/Content/Nav.php:191
+msgid "Notifications"
 msgstr ""
 
-#: mod/admin.php:1886
-msgid "Account expired"
+#: mod/notifications.php:100
+msgid "Network Notifications"
 msgstr ""
 
-#: mod/admin.php:1889
-msgid "New User"
+#: mod/notifications.php:105 mod/notify.php:81
+msgid "System Notifications"
 msgstr ""
 
-#: mod/admin.php:1890
-msgid "Deleted since"
+#: mod/notifications.php:110
+msgid "Personal Notifications"
 msgstr ""
 
-#: mod/admin.php:1895
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/notifications.php:115
+msgid "Home Notifications"
 msgstr ""
 
-#: mod/admin.php:1896
-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/notifications.php:143
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: mod/admin.php:1906
-msgid "Name of the new user."
+#: mod/notifications.php:143
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: mod/admin.php:1907
-msgid "Nickname"
+#: mod/notifications.php:156 mod/notifications.php:238
+msgid "Notification type:"
 msgstr ""
 
-#: mod/admin.php:1907
-msgid "Nickname of the new user."
+#: mod/notifications.php:159
+msgid "Suggested by:"
 msgstr ""
 
-#: mod/admin.php:1908
-msgid "Email address of the new user."
+#: mod/notifications.php:197
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: mod/admin.php:1950
-#, php-format
-msgid "Addon %s disabled."
+#: mod/notifications.php:198
+msgid "yes"
 msgstr ""
 
-#: mod/admin.php:1954
-#, php-format
-msgid "Addon %s enabled."
+#: mod/notifications.php:198
+msgid "no"
 msgstr ""
 
-#: mod/admin.php:1964 mod/admin.php:2213
-msgid "Disable"
+#: mod/notifications.php:199 mod/notifications.php:204
+msgid "Shall your connection be bidirectional or not?"
 msgstr ""
 
-#: mod/admin.php:1967 mod/admin.php:2216
-msgid "Enable"
+#: 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 ""
 
-#: mod/admin.php:1989 mod/admin.php:2259
-msgid "Toggle"
+#: 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/admin.php:1997 mod/admin.php:2268
-msgid "Author: "
+#: 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/admin.php:1998 mod/admin.php:2269
-msgid "Maintainer: "
+#: mod/notifications.php:217
+msgid "Friend"
 msgstr ""
 
-#: mod/admin.php:2050
-msgid "Reload active addons"
+#: mod/notifications.php:218
+msgid "Sharer"
 msgstr ""
 
-#: mod/admin.php:2055
-#, php-format
-msgid ""
-"There are currently no addons available on your node. You can find the "
-"official addon repository at %1$s and might find other interesting addons in "
-"the open addon registry at %2$s"
+#: mod/notifications.php:218
+msgid "Subscriber"
 msgstr ""
 
-#: mod/admin.php:2175
-msgid "No themes found."
+#: mod/notifications.php:275
+msgid "No introductions."
 msgstr ""
 
-#: mod/admin.php:2250
-msgid "Screenshot"
+#: mod/notifications.php:313
+msgid "Show unread"
 msgstr ""
 
-#: mod/admin.php:2304
-msgid "Reload active themes"
+#: mod/notifications.php:313
+msgid "Show all"
 msgstr ""
 
-#: mod/admin.php:2309
+#: mod/notifications.php:318
 #, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
+msgid "No more %s notifications."
 msgstr ""
 
-#: mod/admin.php:2310
-msgid "[Experimental]"
+#: mod/notify.php:77
+msgid "No more system notifications."
 msgstr ""
 
-#: mod/admin.php:2311
-msgid "[Unsupported]"
+#: mod/oexchange.php:30
+msgid "Post successful."
 msgstr ""
 
-#: mod/admin.php:2335
-msgid "Log settings updated."
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: mod/admin.php:2367
-msgid "PHP log currently enabled."
+#: mod/openid.php:66
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: mod/admin.php:2369
-msgid "PHP log currently disabled."
+#: mod/openid.php:116 src/Module/Login.php:85 src/Module/Login.php:134
+msgid "Login failed."
 msgstr ""
 
-#: mod/admin.php:2378
-msgid "Clear"
+#: mod/photos.php:111 src/Model/Profile.php:903
+msgid "Photo Albums"
 msgstr ""
 
-#: mod/admin.php:2382
-msgid "Enable Debugging"
+#: mod/photos.php:112 mod/photos.php:1678
+msgid "Recent Photos"
 msgstr ""
 
-#: mod/admin.php:2383
-msgid "Log file"
+#: mod/photos.php:115 mod/photos.php:1206 mod/photos.php:1680
+msgid "Upload New Photos"
 msgstr ""
 
-#: mod/admin.php:2383
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/photos.php:134 mod/settings.php:51
+msgid "everybody"
 msgstr ""
 
-#: mod/admin.php:2384
-msgid "Log level"
+#: mod/photos.php:190
+msgid "Contact information unavailable"
 msgstr ""
 
-#: mod/admin.php:2386
-msgid "PHP logging"
+#: mod/photos.php:208
+msgid "Album not found."
 msgstr ""
 
-#: mod/admin.php:2387
-msgid ""
-"To temporarily enable logging of PHP errors and warnings you can prepend the "
-"following to the index.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/photos.php:238 mod/photos.php:251 mod/photos.php:1157
+msgid "Delete Album"
 msgstr ""
 
-#: mod/admin.php:2418
-#, php-format
-msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
+#: mod/photos.php:249
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: mod/admin.php:2422
-#, php-format
-msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file "
-"%1$s is readable."
+#: mod/photos.php:309 mod/photos.php:320 mod/photos.php:1423
+msgid "Delete Photo"
 msgstr ""
 
-#: mod/admin.php:2513 mod/admin.php:2514 mod/settings.php:766
-msgid "Off"
+#: mod/photos.php:318
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: mod/admin.php:2513 mod/admin.php:2514 mod/settings.php:766
-msgid "On"
+#: mod/photos.php:661
+msgid "a photo"
 msgstr ""
 
-#: mod/admin.php:2514
+#: mod/photos.php:661
 #, php-format
-msgid "Lock feature %s"
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: mod/admin.php:2522
-msgid "Manage Additional Features"
+#: mod/photos.php:758 mod/photos.php:761 mod/photos.php:790
+#: mod/profile_photo.php:151 mod/wall_upload.php:195
+#, php-format
+msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: mod/bookmarklet.php:24 src/Content/Nav.php:114 src/Module/Login.php:313
-msgid "Login"
+#: mod/photos.php:764
+msgid "Image upload didn't complete, please try again"
 msgstr ""
 
-#: mod/bookmarklet.php:52
-msgid "The post was created"
+#: mod/photos.php:767
+msgid "Image file is missing"
 msgstr ""
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
+#: mod/photos.php:772
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
 msgstr ""
 
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:354
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/photos.php:798
+msgid "Image file is empty."
 msgstr ""
 
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:358
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/photos.php:813 mod/profile_photo.php:160 mod/wall_upload.php:209
+msgid "Unable to process image."
 msgstr ""
 
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:361
-msgid "Warning: profile location has no profile photo."
+#: mod/photos.php:842 mod/profile_photo.php:305 mod/wall_upload.php:248
+msgid "Image upload failed."
 msgstr ""
 
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:365
-#, 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/dfrn_request.php:162
-msgid "Introduction complete."
+#: mod/photos.php:935
+msgid "No photos selected"
 msgstr ""
 
-#: mod/dfrn_request.php:198
-msgid "Unrecoverable protocol error."
+#: mod/photos.php:1032 mod/videos.php:306
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: mod/dfrn_request.php:225
-msgid "Profile unavailable."
+#: mod/photos.php:1086
+msgid "Upload Photos"
 msgstr ""
 
-#: mod/dfrn_request.php:247
-#, php-format
-msgid "%s has received too many connection requests today."
+#: mod/photos.php:1090 mod/photos.php:1152
+msgid "New album name: "
 msgstr ""
 
-#: mod/dfrn_request.php:248
-msgid "Spam protection measures have been invoked."
+#: mod/photos.php:1091
+msgid "or select existing album:"
 msgstr ""
 
-#: mod/dfrn_request.php:249
-msgid "Friends are advised to please try again in 24 hours."
+#: mod/photos.php:1092
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/dfrn_request.php:275
-msgid "Invalid locator"
+#: mod/photos.php:1102 mod/photos.php:1426 mod/settings.php:1224
+msgid "Show to Groups"
 msgstr ""
 
-#: mod/dfrn_request.php:311
-msgid "You have already introduced yourself here."
+#: mod/photos.php:1103 mod/photos.php:1427 mod/settings.php:1225
+msgid "Show to Contacts"
 msgstr ""
 
-#: mod/dfrn_request.php:314
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: mod/photos.php:1163
+msgid "Edit Album"
 msgstr ""
 
-#: mod/dfrn_request.php:334
-msgid "Invalid profile URL."
+#: mod/photos.php:1168
+msgid "Show Newest First"
 msgstr ""
 
-#: mod/dfrn_request.php:340 src/Model/Contact.php:1264
-msgid "Disallowed profile URL."
+#: mod/photos.php:1170
+msgid "Show Oldest First"
 msgstr ""
 
-#: mod/dfrn_request.php:434
-msgid "Your introduction has been sent."
+#: mod/photos.php:1191 mod/photos.php:1663
+msgid "View Photo"
 msgstr ""
 
-#: mod/dfrn_request.php:472
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/photos.php:1232
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: mod/dfrn_request.php:488
-msgid "Please login to confirm introduction."
+#: mod/photos.php:1234
+msgid "Photo not available"
 msgstr ""
 
-#: mod/dfrn_request.php:496
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: mod/photos.php:1303
+msgid "View photo"
 msgstr ""
 
-#: mod/dfrn_request.php:510 mod/dfrn_request.php:527
-msgid "Confirm"
+#: mod/photos.php:1303
+msgid "Edit photo"
 msgstr ""
 
-#: mod/dfrn_request.php:522
-msgid "Hide this contact"
+#: mod/photos.php:1304
+msgid "Use as profile photo"
 msgstr ""
 
-#: mod/dfrn_request.php:525
-#, php-format
-msgid "Welcome home %s."
+#: mod/photos.php:1310 src/Object/Post.php:150
+msgid "Private Message"
 msgstr ""
 
-#: mod/dfrn_request.php:526
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: mod/photos.php:1330
+msgid "View Full Size"
 msgstr ""
 
-#: mod/dfrn_request.php:636
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: mod/photos.php:1391
+msgid "Tags: "
 msgstr ""
 
-#: mod/dfrn_request.php:639
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s\">follow "
-"this link to find a public Friendica site and join us today</a>."
+#: mod/photos.php:1394
+msgid "[Remove any tag]"
 msgstr ""
 
-#: mod/dfrn_request.php:644
-msgid "Friend/Connection Request"
+#: mod/photos.php:1409
+msgid "New album name"
 msgstr ""
 
-#: mod/dfrn_request.php:645
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
+#: mod/photos.php:1410
+msgid "Caption"
 msgstr ""
 
-#: mod/dfrn_request.php:650 src/Content/ContactSelector.php:79
-msgid "Friendica"
+#: mod/photos.php:1411
+msgid "Add a Tag"
 msgstr ""
 
-#: mod/dfrn_request.php:651
-msgid "GNU Social (Pleroma, Mastodon)"
+#: mod/photos.php:1411
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/dfrn_request.php:652
-msgid "Diaspora (Socialhome, Hubzilla)"
+#: mod/photos.php:1412
+msgid "Do not rotate"
 msgstr ""
 
-#: mod/dfrn_request.php:653
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: mod/photos.php:1413
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/filer.php:34
-msgid "- select -"
+#: mod/photos.php:1414
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/friendica.php:78
-msgid "This is Friendica, version"
+#: mod/photos.php:1448 src/Object/Post.php:292
+msgid "I like this (toggle)"
 msgstr ""
 
-#: mod/friendica.php:79
-msgid "running at web location"
+#: mod/photos.php:1449 src/Object/Post.php:293
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: mod/friendica.php:83
-msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
+#: mod/photos.php:1466 mod/photos.php:1505 mod/photos.php:1565
+#: src/Object/Post.php:397 src/Object/Post.php:793
+msgid "Comment"
 msgstr ""
 
-#: mod/friendica.php:87
-msgid "Bug reports and issues: please visit"
+#: mod/photos.php:1597
+msgid "Map"
 msgstr ""
 
-#: mod/friendica.php:87
-msgid "the bugtracker at github"
+#: mod/photos.php:1669 mod/videos.php:380
+msgid "View Album"
 msgstr ""
 
-#: mod/friendica.php:90
-msgid ""
-"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+#: mod/ping.php:289
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/friendica.php:104
-msgid "Installed addons/apps:"
+#: mod/ping.php:305
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/friendica.php:118
-msgid "No installed addons/apps"
+#: mod/ping.php:321
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/friendica.php:123
-#, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+#: mod/poke.php:188
+msgid "Poke/Prod"
 msgstr ""
 
-#: mod/friendica.php:128
-msgid "On this server the following remote servers are blocked."
+#: mod/poke.php:189
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: mod/hcard.php:18
-msgid "No profile"
+#: mod/poke.php:190
+msgid "Recipient"
 msgstr ""
 
-#: mod/help.php:49
-msgid "Help:"
+#: mod/poke.php:191
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: mod/help.php:56 view/theme/vier/theme.php:299 src/Content/Nav.php:134
-msgid "Help"
+#: mod/poke.php:194
+msgid "Make this post private"
 msgstr ""
 
-#: mod/help.php:65 index.php:311
-msgid "Page not found."
+#: mod/profile.php:38 src/Model/Profile.php:114
+msgid "Requested profile is not available."
 msgstr ""
 
-#: mod/home.php:39
+#: mod/profile.php:79 mod/profile.php:82 src/Protocol/OStatus.php:1274
 #, php-format
-msgid "Welcome to %s"
+msgid "%s's timeline"
 msgstr ""
 
-#: mod/install.php:87
-msgid "Friendica Communications Server - Setup"
+#: mod/profile.php:80 src/Protocol/OStatus.php:1275
+#, php-format
+msgid "%s's posts"
 msgstr ""
 
-#: mod/install.php:93
-msgid "Could not connect to database."
+#: mod/profile.php:81 src/Protocol/OStatus.php:1276
+#, php-format
+msgid "%s's comments"
 msgstr ""
 
-#: mod/install.php:97
-msgid "Could not create table."
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: mod/install.php:103
-msgid "Your Friendica site database has been installed."
+#: mod/profile_photo.php:87 mod/profile_photo.php:96 mod/profile_photo.php:105
+#: mod/profile_photo.php:313
+#, php-format
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: mod/install.php:108
+#: mod/profile_photo.php:124
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: mod/install.php:109 mod/install.php:153 mod/install.php:261
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/profile_photo.php:132
+msgid "Unable to process image"
 msgstr ""
 
-#: mod/install.php:121
-msgid "Database already in use."
+#: mod/profile_photo.php:244
+msgid "Upload File:"
 msgstr ""
 
-#: mod/install.php:150
-msgid "System check"
+#: mod/profile_photo.php:245
+msgid "Select a profile:"
 msgstr ""
 
-#: mod/install.php:155
-msgid "Check again"
+#: mod/profile_photo.php:250
+msgid "or"
 msgstr ""
 
-#: mod/install.php:174
-msgid "Database connection"
+#: mod/profile_photo.php:251
+msgid "skip this step"
 msgstr ""
 
-#: mod/install.php:175
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/profile_photo.php:251
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: mod/install.php:176
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/profile_photo.php:264
+msgid "Crop Image"
 msgstr ""
 
-#: mod/install.php:177
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: mod/profile_photo.php:265
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: mod/install.php:181
-msgid "Database Server Name"
+#: mod/profile_photo.php:267
+msgid "Done Editing"
 msgstr ""
 
-#: mod/install.php:182
-msgid "Database Login Name"
+#: mod/profile_photo.php:303
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: mod/install.php:183
-msgid "Database Login Password"
+#: mod/profiles.php:57
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/install.php:183
-msgid "For security reasons the password must not be empty"
+#: mod/profiles.php:73 mod/profiles.php:109
+msgid "Profile-"
 msgstr ""
 
-#: mod/install.php:184
-msgid "Database Name"
+#: mod/profiles.php:92 mod/profiles.php:131
+msgid "New profile created."
 msgstr ""
 
-#: mod/install.php:185 mod/install.php:222
-msgid "Site administrator email address"
+#: mod/profiles.php:115
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/install.php:185 mod/install.php:222
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/profiles.php:203
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/install.php:187 mod/install.php:225
-msgid "Please select a default timezone for your website"
+#: mod/profiles.php:344
+msgid "Marital Status"
 msgstr ""
 
-#: mod/install.php:212
-msgid "Site settings"
+#: mod/profiles.php:348
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/install.php:226
-msgid "System Language:"
+#: mod/profiles.php:360
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/install.php:226
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: mod/profiles.php:363
+msgid "Religion"
 msgstr ""
 
-#: mod/install.php:242
-msgid ""
-"The database configuration file \"config/local.ini.php\" could not be "
-"written. Please use the enclosed text to create a configuration file in your "
-"web server root."
+#: mod/profiles.php:367
+msgid "Political Views"
 msgstr ""
 
-#: mod/install.php:259
-msgid "<h1>What next</h1>"
+#: mod/profiles.php:371
+msgid "Gender"
 msgstr ""
 
-#: mod/install.php:260
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
+#: mod/profiles.php:375
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/install.php:263
-#, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"and register as new user. Remember to use the same email you have entered as "
-"administrator email. This will allow you to enter the site admin panel."
+#: mod/profiles.php:379
+msgid "XMPP"
 msgstr ""
 
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
+#: mod/profiles.php:383
+msgid "Homepage"
 msgstr ""
 
-#: mod/invite.php:55
-#, php-format
-msgid "%s : Not a valid email address."
+#: mod/profiles.php:387 mod/profiles.php:593
+msgid "Interests"
 msgstr ""
 
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
+#: mod/profiles.php:398 mod/profiles.php:589
+msgid "Location"
 msgstr ""
 
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: mod/profiles.php:481
+msgid "Profile updated."
 msgstr ""
 
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
+#: mod/profiles.php:538
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
+#: mod/profiles.php:543
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr ""
 
-#: mod/invite.php:122
-msgid "You have no more invitations available"
+#: mod/profiles.php:563
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/invite.php:130
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many "
-"other social networks."
+#: mod/profiles.php:575
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/invite.php:132
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: mod/profiles.php:576
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+#: mod/profiles.php:578
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: mod/profiles.php:580
+msgid "View this profile"
+msgstr ""
+
+#: mod/profiles.php:581
+msgid "View all profiles"
 msgstr ""
 
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
+#: mod/profiles.php:582 mod/profiles.php:677 src/Model/Profile.php:391
+msgid "Edit visibility"
 msgstr ""
 
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
+#: mod/profiles.php:583
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/invite.php:147
-msgid "Send invitations"
+#: mod/profiles.php:584
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
+#: mod/profiles.php:585
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/invite.php:149
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+#: mod/profiles.php:587
+msgid "Basic information"
 msgstr ""
 
-#: mod/invite.php:151
-msgid "You will need to supply this invitation code: $invite_code"
+#: mod/profiles.php:588
+msgid "Profile picture"
 msgstr ""
 
-#: mod/invite.php:151
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: mod/profiles.php:590
+msgid "Preferences"
 msgstr ""
 
-#: mod/invite.php:153
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
+#: mod/profiles.php:591
+msgid "Status information"
 msgstr ""
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
+#: mod/profiles.php:592
+msgid "Additional information"
 msgstr ""
 
-#: mod/item.php:277
-msgid "Empty post discarded."
+#: mod/profiles.php:595
+msgid "Relation"
 msgstr ""
 
-#: mod/item.php:812
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+#: mod/profiles.php:596 src/Util/Temporal.php:81 src/Util/Temporal.php:83
+msgid "Miscellaneous"
 msgstr ""
 
-#: mod/item.php:814
-#, php-format
-msgid "You may visit them online at %s"
+#: mod/profiles.php:599
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/item.php:815
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: mod/profiles.php:600
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/item.php:819
-#, php-format
-msgid "%s posted an update."
+#: mod/profiles.php:601 src/Model/Profile.php:778
+msgid "Sexual Preference:"
 msgstr ""
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
+#: mod/profiles.php:602
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
+#: mod/profiles.php:607
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/lostpass.php:45
-#, php-format
+#: mod/profiles.php:609
 msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the "
-"verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email, the request will expire "
-"shortly.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/lostpass.php:56
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link soon to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after "
-"logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
+#: mod/profiles.php:610
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
+#: mod/profiles.php:611
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: mod/profiles.php:614
+msgid "Street Address:"
 msgstr ""
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
+#: mod/profiles.php:615
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
+#: mod/profiles.php:616
+msgid "Region/State:"
 msgstr ""
 
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: mod/profiles.php:617
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/lostpass.php:119 src/Module/Login.php:315
-msgid "Nickname or Email: "
+#: mod/profiles.php:618
+msgid "Country:"
 msgstr ""
 
-#: mod/lostpass.php:120
-msgid "Reset"
+#: mod/profiles.php:619 src/Util/Temporal.php:149
+msgid "Age: "
 msgstr ""
 
-#: mod/lostpass.php:136 src/Module/Login.php:327
-msgid "Password Reset"
+#: mod/profiles.php:622
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
+#: mod/profiles.php:622
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
+#: mod/profiles.php:623
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
+#: mod/profiles.php:625
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/lostpass.php:140
-msgid "click here to login"
+#: mod/profiles.php:626
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/lostpass.php:141
+#: mod/profiles.php:626
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/lostpass.php:149
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\tsomething that you will remember).\n"
-"\t\t"
+#: mod/profiles.php:627
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/lostpass.php:155
-#, php-format
-msgid ""
-"\n"
-"\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t%2$s\n"
-"\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\tYou may change that password from your account settings page after "
-"logging in.\n"
-"\t\t"
+#: mod/profiles.php:628 src/Model/Profile.php:786
+msgid "Hometown:"
 msgstr ""
 
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
+#: mod/profiles.php:629 src/Model/Profile.php:794
+msgid "Political Views:"
 msgstr ""
 
-#: mod/notes.php:41 src/Model/Profile.php:942
-msgid "Personal Notes"
+#: mod/profiles.php:630
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
+#: mod/profiles.php:631
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/openid.php:66
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: mod/profiles.php:631
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:135
-msgid "Login failed."
+#: mod/profiles.php:632
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/ping.php:289
-msgid "{0} wants to be your friend"
+#: mod/profiles.php:632
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/ping.php:305
-msgid "{0} sent you a message"
+#: mod/profiles.php:633 src/Model/Profile.php:810
+msgid "Likes:"
 msgstr ""
 
-#: mod/ping.php:321
-msgid "{0} requested registration"
+#: mod/profiles.php:634 src/Model/Profile.php:814
+msgid "Dislikes:"
 msgstr ""
 
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
+#: mod/profiles.php:635
+msgid "Musical interests"
 msgstr ""
 
-#: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1263
-#, php-format
-msgid "%s's timeline"
+#: mod/profiles.php:636
+msgid "Books, literature"
 msgstr ""
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1264
-#, php-format
-msgid "%s's posts"
+#: mod/profiles.php:637
+msgid "Television"
 msgstr ""
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1265
-#, php-format
-msgid "%s's comments"
+#: mod/profiles.php:638
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/profile_photo.php:53
-msgid "Image uploaded but image cropping failed."
+#: mod/profiles.php:639
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/profile_photo.php:85 mod/profile_photo.php:94 mod/profile_photo.php:103
-#: mod/profile_photo.php:312
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: mod/profiles.php:640
+msgid "Love/romance"
 msgstr ""
 
-#: mod/profile_photo.php:122
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: mod/profiles.php:641
+msgid "Work/employment"
 msgstr ""
 
-#: mod/profile_photo.php:131
-msgid "Unable to process image"
+#: mod/profiles.php:642
+msgid "School/education"
 msgstr ""
 
-#: mod/profile_photo.php:243
-msgid "Upload File:"
+#: mod/profiles.php:643
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/profile_photo.php:244
-msgid "Select a profile:"
+#: mod/profiles.php:674 src/Model/Profile.php:387
+msgid "Profile Image"
 msgstr ""
 
-#: mod/profile_photo.php:249
-msgid "or"
+#: mod/profiles.php:676 src/Model/Profile.php:390
+msgid "visible to everybody"
 msgstr ""
 
-#: mod/profile_photo.php:250
-msgid "skip this step"
+#: mod/profiles.php:683
+msgid "Edit/Manage Profiles"
+msgstr ""
+
+#: mod/profiles.php:684 src/Model/Profile.php:377 src/Model/Profile.php:399
+msgid "Change profile photo"
 msgstr ""
 
-#: mod/profile_photo.php:250
-msgid "select a photo from your photo albums"
+#: mod/profiles.php:685 src/Model/Profile.php:378
+msgid "Create New Profile"
 msgstr ""
 
-#: mod/profile_photo.php:263
-msgid "Crop Image"
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
 msgstr ""
 
-#: mod/profile_photo.php:264
-msgid "Please adjust the image cropping for optimum viewing."
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: mod/profile_photo.php:266
-msgid "Done Editing"
+#: mod/profperm.php:124
+msgid "Visible To"
 msgstr ""
 
-#: mod/profile_photo.php:302
-msgid "Image uploaded successfully."
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: mod/register.php:98
+#: mod/register.php:99
 msgid ""
 "Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/register.php:102
+#: mod/register.php:103
 #, php-format
 msgid ""
 "Failed to send email message. Here your accout details:<br> login: %s<br> "
 "password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: mod/register.php:109
+#: mod/register.php:110
 msgid "Registration successful."
 msgstr ""
 
-#: mod/register.php:114
+#: mod/register.php:115
 msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/register.php:161
+#: mod/register.php:162
 msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/register.php:190 mod/uimport.php:55
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr ""
-
-#: mod/register.php:219
+#: mod/register.php:220
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr ""
 
-#: mod/register.php:220
+#: mod/register.php:221
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr ""
 
-#: mod/register.php:221
+#: mod/register.php:222
 msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/register.php:233
+#: mod/register.php:234
 msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/register.php:260
+#: mod/register.php:261
 msgid "Note for the admin"
 msgstr ""
 
-#: mod/register.php:260
+#: mod/register.php:261
 msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/register.php:261
+#: mod/register.php:262
 msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/register.php:262
+#: mod/register.php:263
 msgid "Your invitation code: "
 msgstr ""
 
-#: mod/register.php:271
+#: mod/register.php:272
 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/register.php:272
+#: mod/register.php:273
 msgid ""
 "Your Email Address: (Initial information will be send there, so this has to "
 "be an existing address.)"
 msgstr ""
 
-#: mod/register.php:274 mod/settings.php:1189
+#: mod/register.php:275 mod/settings.php:1196
 msgid "New Password:"
 msgstr ""
 
-#: mod/register.php:274
+#: mod/register.php:275
 msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/register.php:275 mod/settings.php:1190
+#: mod/register.php:276 mod/settings.php:1197
 msgid "Confirm:"
 msgstr ""
 
-#: mod/register.php:276
+#: mod/register.php:277
 #, php-format
 msgid ""
 "Choose a profile nickname. This must begin with a text character. Your "
 "profile address on this site will then be '<strong>nickname@%s</strong>'."
 msgstr ""
 
-#: mod/register.php:277
+#: mod/register.php:278
 msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/register.php:280 src/Content/Nav.php:128 src/Module/Login.php:284
+#: mod/register.php:281 src/Content/Nav.php:128 src/Module/Login.php:283
 msgid "Register"
 msgstr ""
 
-#: mod/register.php:286 mod/uimport.php:70
-msgid "Import"
-msgstr ""
-
-#: mod/register.php:287
+#: mod/register.php:288
 msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/register.php:295
+#: mod/register.php:296
 msgid "Note: This node explicitly contains adult content"
 msgstr ""
 
@@ -6558,198 +6386,231 @@ msgstr ""
 msgid "Please enter your password for verification:"
 msgstr ""
 
+#: mod/repair_ostatus.php:20
+msgid "Resubscribing to OStatus contacts"
+msgstr ""
+
+#: mod/repair_ostatus.php:36
+msgid "Error"
+msgstr ""
+
+#: mod/search.php:112
+msgid "Only logged in users are permitted to perform a search."
+msgstr ""
+
+#: mod/search.php:136
+msgid "Too Many Requests"
+msgstr ""
+
+#: mod/search.php:137
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr ""
+
+#: mod/search.php:246
+#, php-format
+msgid "Items tagged with: %s"
+msgstr ""
+
 #: mod/settings.php:56
 msgid "Account"
 msgstr ""
 
-#: mod/settings.php:73
+#: mod/settings.php:64 src/Content/Nav.php:210 src/Model/Profile.php:370
+msgid "Profiles"
+msgstr ""
+
+#: mod/settings.php:80
 msgid "Display"
 msgstr ""
 
-#: mod/settings.php:80 mod/settings.php:833
+#: mod/settings.php:87 mod/settings.php:840
 msgid "Social Networks"
 msgstr ""
 
-#: mod/settings.php:94 src/Content/Nav.php:205
+#: mod/settings.php:101 src/Content/Nav.php:205
 msgid "Delegations"
 msgstr ""
 
-#: mod/settings.php:101
+#: mod/settings.php:108
 msgid "Connected apps"
 msgstr ""
 
-#: mod/settings.php:115
+#: mod/settings.php:115 mod/uexport.php:52
+msgid "Export personal data"
+msgstr ""
+
+#: mod/settings.php:122
 msgid "Remove account"
 msgstr ""
 
-#: mod/settings.php:167
+#: mod/settings.php:174
 msgid "Missing some important data!"
 msgstr ""
 
-#: mod/settings.php:278
+#: mod/settings.php:285
 msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/settings.php:283
+#: mod/settings.php:290
 msgid "Email settings updated."
 msgstr ""
 
-#: mod/settings.php:299
+#: mod/settings.php:306
 msgid "Features updated"
 msgstr ""
 
-#: mod/settings.php:372
+#: mod/settings.php:379
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/settings.php:384 src/Model/User.php:375
+#: mod/settings.php:391 src/Model/User.php:374
 msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: mod/settings.php:389
+#: mod/settings.php:396
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:83
+#: mod/settings.php:401 src/Core/Console/NewPassword.php:82
 msgid ""
 "The new password has been exposed in a public data dump, please choose "
 "another."
 msgstr ""
 
-#: mod/settings.php:400
+#: mod/settings.php:407
 msgid "Wrong password."
 msgstr ""
 
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:90
+#: mod/settings.php:414 src/Core/Console/NewPassword.php:89
 msgid "Password changed."
 msgstr ""
 
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:87
+#: mod/settings.php:416 src/Core/Console/NewPassword.php:86
 msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/settings.php:493
+#: mod/settings.php:500
 msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/settings.php:496
+#: mod/settings.php:503
 msgid " Name too short."
 msgstr ""
 
-#: mod/settings.php:504
+#: mod/settings.php:511
 msgid "Wrong Password"
 msgstr ""
 
-#: mod/settings.php:509
+#: mod/settings.php:516
 msgid "Invalid email."
 msgstr ""
 
-#: mod/settings.php:515
+#: mod/settings.php:522
 msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/settings.php:565
+#: mod/settings.php:572
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/settings.php:568
+#: mod/settings.php:575
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/settings.php:608
+#: mod/settings.php:615
 msgid "Settings updated."
 msgstr ""
 
-#: mod/settings.php:667 mod/settings.php:693 mod/settings.php:727
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:734
 msgid "Add application"
 msgstr ""
 
-#: mod/settings.php:671 mod/settings.php:697
+#: mod/settings.php:678 mod/settings.php:704
 msgid "Consumer Key"
 msgstr ""
 
-#: mod/settings.php:672 mod/settings.php:698
+#: mod/settings.php:679 mod/settings.php:705
 msgid "Consumer Secret"
 msgstr ""
 
-#: mod/settings.php:673 mod/settings.php:699
+#: mod/settings.php:680 mod/settings.php:706
 msgid "Redirect"
 msgstr ""
 
-#: mod/settings.php:674 mod/settings.php:700
+#: mod/settings.php:681 mod/settings.php:707
 msgid "Icon url"
 msgstr ""
 
-#: mod/settings.php:685
+#: mod/settings.php:692
 msgid "You can't edit this application."
 msgstr ""
 
-#: mod/settings.php:726
+#: mod/settings.php:733
 msgid "Connected Apps"
 msgstr ""
 
-#: mod/settings.php:728 src/Object/Post.php:157 src/Object/Post.php:159
+#: mod/settings.php:735 src/Object/Post.php:157 src/Object/Post.php:159
 msgid "Edit"
 msgstr ""
 
-#: mod/settings.php:730
+#: mod/settings.php:737
 msgid "Client key starts with"
 msgstr ""
 
-#: mod/settings.php:731
+#: mod/settings.php:738
 msgid "No name"
 msgstr ""
 
-#: mod/settings.php:732
+#: mod/settings.php:739
 msgid "Remove authorization"
 msgstr ""
 
-#: mod/settings.php:743
+#: mod/settings.php:750
 msgid "No Addon settings configured"
 msgstr ""
 
-#: mod/settings.php:752
+#: mod/settings.php:759
 msgid "Addon Settings"
 msgstr ""
 
-#: mod/settings.php:773
+#: mod/settings.php:780
 msgid "Additional Features"
 msgstr ""
 
-#: mod/settings.php:796 src/Content/ContactSelector.php:83
+#: mod/settings.php:803 src/Content/ContactSelector.php:81
 msgid "Diaspora"
 msgstr ""
 
-#: mod/settings.php:796 mod/settings.php:797
+#: mod/settings.php:803 mod/settings.php:804
 msgid "enabled"
 msgstr ""
 
-#: mod/settings.php:796 mod/settings.php:797
+#: mod/settings.php:803 mod/settings.php:804
 msgid "disabled"
 msgstr ""
 
-#: mod/settings.php:796 mod/settings.php:797
+#: mod/settings.php:803 mod/settings.php:804
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/settings.php:797
+#: mod/settings.php:804
 msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/settings.php:828
+#: mod/settings.php:835
 msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/settings.php:838
+#: mod/settings.php:845
 msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/settings.php:839
+#: mod/settings.php:846
 msgid "Disable Content Warning"
 msgstr ""
 
-#: mod/settings.php:839
+#: mod/settings.php:846
 msgid ""
 "Users on networks like Mastodon or Pleroma are able to set a content warning "
 "field which collapse their post by default. This disables the automatic "
@@ -6757,308 +6618,308 @@ msgid ""
 "any other content filtering you eventually set up."
 msgstr ""
 
-#: mod/settings.php:840
+#: mod/settings.php:847
 msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/settings.php:840
+#: mod/settings.php:847
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the "
 "original friendica post."
 msgstr ""
 
-#: mod/settings.php:841
+#: mod/settings.php:848
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/settings.php:841
+#: mod/settings.php:848
 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:842
+#: mod/settings.php:849
 msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/settings.php:843
+#: mod/settings.php:850
 msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/settings.php:843
+#: mod/settings.php:850
 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/settings.php:846
+#: mod/settings.php:853
 msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/settings.php:850
+#: mod/settings.php:857
 msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/settings.php:851
+#: mod/settings.php:858
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/settings.php:852
+#: mod/settings.php:859
 msgid "Last successful email check:"
 msgstr ""
 
-#: mod/settings.php:854
+#: mod/settings.php:861
 msgid "IMAP server name:"
 msgstr ""
 
-#: mod/settings.php:855
+#: mod/settings.php:862
 msgid "IMAP port:"
 msgstr ""
 
-#: mod/settings.php:856
+#: mod/settings.php:863
 msgid "Security:"
 msgstr ""
 
-#: mod/settings.php:856 mod/settings.php:861
+#: mod/settings.php:863 mod/settings.php:868
 msgid "None"
 msgstr ""
 
-#: mod/settings.php:857
+#: mod/settings.php:864
 msgid "Email login name:"
 msgstr ""
 
-#: mod/settings.php:858
+#: mod/settings.php:865
 msgid "Email password:"
 msgstr ""
 
-#: mod/settings.php:859
+#: mod/settings.php:866
 msgid "Reply-to address:"
 msgstr ""
 
-#: mod/settings.php:860
+#: mod/settings.php:867
 msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/settings.php:861
+#: mod/settings.php:868
 msgid "Action after import:"
 msgstr ""
 
-#: mod/settings.php:861 src/Content/Nav.php:193
+#: mod/settings.php:868 src/Content/Nav.php:193
 msgid "Mark as seen"
 msgstr ""
 
-#: mod/settings.php:861
+#: mod/settings.php:868
 msgid "Move to folder"
 msgstr ""
 
-#: mod/settings.php:862
+#: mod/settings.php:869
 msgid "Move to folder:"
 msgstr ""
 
-#: mod/settings.php:905
+#: mod/settings.php:912
 #, php-format
 msgid "%s - (Unsupported)"
 msgstr ""
 
-#: mod/settings.php:907
+#: mod/settings.php:914
 #, php-format
 msgid "%s - (Experimental)"
 msgstr ""
 
-#: mod/settings.php:950
+#: mod/settings.php:957
 msgid "Display Settings"
 msgstr ""
 
-#: mod/settings.php:956 mod/settings.php:980
+#: mod/settings.php:963 mod/settings.php:987
 msgid "Display Theme:"
 msgstr ""
 
-#: mod/settings.php:957
+#: mod/settings.php:964
 msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/settings.php:958
+#: mod/settings.php:965
 msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/settings.php:958
+#: mod/settings.php:965
 msgid ""
 "Should the system suppress the warning that the current group contains "
 "members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/settings.php:959
+#: mod/settings.php:966
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/settings.php:959
+#: mod/settings.php:966
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:960
+#: mod/settings.php:967
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/settings.php:960 mod/settings.php:961
+#: mod/settings.php:967 mod/settings.php:968
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/settings.php:961
+#: mod/settings.php:968
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/settings.php:962
+#: mod/settings.php:969
 msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/settings.php:963
+#: mod/settings.php:970
 msgid "Calendar"
 msgstr ""
 
-#: mod/settings.php:964
+#: mod/settings.php:971
 msgid "Beginning of week:"
 msgstr ""
 
-#: mod/settings.php:965
+#: mod/settings.php:972
 msgid "Don't show notices"
 msgstr ""
 
-#: mod/settings.php:966
+#: mod/settings.php:973
 msgid "Infinite scroll"
 msgstr ""
 
-#: mod/settings.php:967
+#: mod/settings.php:974
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/settings.php:967
+#: mod/settings.php:974
 msgid ""
 "When disabled, the network page is updated all the time, which could be "
 "confusing while reading."
 msgstr ""
 
-#: mod/settings.php:968
+#: mod/settings.php:975
 msgid "Bandwidth Saver Mode"
 msgstr ""
 
-#: mod/settings.php:968
+#: mod/settings.php:975
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr ""
 
-#: mod/settings.php:969
+#: mod/settings.php:976
 msgid "Smart Threading"
 msgstr ""
 
-#: mod/settings.php:969
+#: mod/settings.php:976
 msgid ""
 "When enabled, suppress extraneous thread indentation while keeping it where "
 "it matters. Only works if threading is available and enabled."
 msgstr ""
 
-#: mod/settings.php:971
+#: mod/settings.php:978
 msgid "General Theme Settings"
 msgstr ""
 
-#: mod/settings.php:972
+#: mod/settings.php:979
 msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/settings.php:973
+#: mod/settings.php:980
 msgid "Content Settings"
 msgstr ""
 
-#: mod/settings.php:974 view/theme/duepuntozero/config.php:73
+#: mod/settings.php:981 view/theme/duepuntozero/config.php:73
 #: view/theme/frio/config.php:120 view/theme/quattro/config.php:75
 #: view/theme/vier/config.php:121
 msgid "Theme settings"
 msgstr ""
 
-#: mod/settings.php:993
+#: mod/settings.php:1000
 msgid "Unable to find your profile. Please contact your admin."
 msgstr ""
 
-#: mod/settings.php:1032
+#: mod/settings.php:1039
 msgid "Account Types"
 msgstr ""
 
-#: mod/settings.php:1033
+#: mod/settings.php:1040
 msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/settings.php:1034
+#: mod/settings.php:1041
 msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/settings.php:1042
+#: mod/settings.php:1049
 msgid "Account for a personal profile."
 msgstr ""
 
-#: mod/settings.php:1046
+#: mod/settings.php:1053
 msgid ""
 "Account for an organisation that automatically approves contact requests as "
 "\"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1050
+#: mod/settings.php:1057
 msgid ""
 "Account for a news reflector that automatically approves contact requests as "
 "\"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1054
+#: mod/settings.php:1061
 msgid "Account for community discussions."
 msgstr ""
 
-#: mod/settings.php:1058
+#: mod/settings.php:1065
 msgid ""
 "Account for a regular personal profile that requires manual approval of "
 "\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1062
+#: mod/settings.php:1069
 msgid ""
 "Account for a public profile that automatically approves contact requests as "
 "\"Followers\"."
 msgstr ""
 
-#: mod/settings.php:1066
+#: mod/settings.php:1073
 msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: mod/settings.php:1070
+#: mod/settings.php:1077
 msgid ""
 "Account for a popular profile that automatically approves contact requests "
 "as \"Friends\"."
 msgstr ""
 
-#: mod/settings.php:1073
+#: mod/settings.php:1080
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/settings.php:1074
+#: mod/settings.php:1081
 msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: mod/settings.php:1085
+#: mod/settings.php:1092
 msgid "OpenID:"
 msgstr ""
 
-#: mod/settings.php:1085
+#: mod/settings.php:1092
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/settings.php:1093
+#: mod/settings.php:1100
 msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/settings.php:1093
+#: mod/settings.php:1100
 #, php-format
 msgid ""
 "Your profile will be published in this node's <a href=\"%s\">local "
@@ -7066,334 +6927,485 @@ msgid ""
 "system settings."
 msgstr ""
 
-#: mod/settings.php:1099
+#: mod/settings.php:1106
 msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/settings.php:1099
+#: mod/settings.php:1106
 #, php-format
 msgid ""
 "Your profile will be published in the global friendica directories (e.g. <a "
 "href=\"%s\">%s</a>). Your profile will be visible in public."
 msgstr ""
 
-#: mod/settings.php:1106
+#: mod/settings.php:1113
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/settings.php:1106
+#: mod/settings.php:1113
 msgid ""
 "Your contact list won't be shown in your default profile page. You can "
 "decide to show your contact list separately for each additional profile you "
 "create"
 msgstr ""
 
-#: mod/settings.php:1110
+#: mod/settings.php:1117
 msgid "Hide your profile details from anonymous viewers?"
 msgstr ""
 
-#: mod/settings.php:1110
+#: mod/settings.php:1117
 msgid ""
 "Anonymous visitors will only see your profile picture, your display name and "
 "the nickname you are using on your profile page. Your public posts and "
 "replies will still be accessible by other means."
 msgstr ""
 
-#: mod/settings.php:1114
+#: mod/settings.php:1121
 msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/settings.php:1114
+#: mod/settings.php:1121
 msgid ""
 "Your contacts may write posts on your profile wall. These posts will be "
 "distributed to your contacts"
 msgstr ""
 
-#: mod/settings.php:1118
+#: mod/settings.php:1125
 msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/settings.php:1118
+#: mod/settings.php:1125
 msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: mod/settings.php:1122
+#: mod/settings.php:1129
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/settings.php:1122
+#: mod/settings.php:1129
 msgid "If you like, Friendica may suggest new members to add you as a contact."
 msgstr ""
 
-#: mod/settings.php:1126
+#: mod/settings.php:1133
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/settings.php:1126
+#: mod/settings.php:1133
 msgid ""
 "Friendica network users may send you private messages even if they are not "
 "in your contact list."
 msgstr ""
 
-#: mod/settings.php:1130
+#: mod/settings.php:1137
 msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/settings.php:1136
+#: mod/settings.php:1143
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/settings.php:1143
+#: mod/settings.php:1150
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/settings.php:1143
+#: mod/settings.php:1150
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/settings.php:1144
+#: mod/settings.php:1151
 msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/settings.php:1145
+#: mod/settings.php:1152
 msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/settings.php:1146
+#: mod/settings.php:1153
 msgid "Expire posts:"
 msgstr ""
 
-#: mod/settings.php:1147
+#: mod/settings.php:1154
 msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/settings.php:1148
+#: mod/settings.php:1155
 msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/settings.php:1149
+#: mod/settings.php:1156
 msgid "Expire photos:"
 msgstr ""
 
-#: mod/settings.php:1150
+#: mod/settings.php:1157
 msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/settings.php:1180
+#: mod/settings.php:1187
 msgid "Account Settings"
 msgstr ""
 
-#: mod/settings.php:1188
+#: mod/settings.php:1195
 msgid "Password Settings"
 msgstr ""
 
-#: mod/settings.php:1190
+#: mod/settings.php:1197
 msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/settings.php:1191
+#: mod/settings.php:1198
 msgid "Current Password:"
 msgstr ""
 
-#: mod/settings.php:1191 mod/settings.php:1192
+#: mod/settings.php:1198 mod/settings.php:1199
 msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/settings.php:1192
+#: mod/settings.php:1199
 msgid "Password:"
 msgstr ""
 
-#: mod/settings.php:1196
+#: mod/settings.php:1203
 msgid "Basic Settings"
 msgstr ""
 
-#: mod/settings.php:1197 src/Model/Profile.php:734
+#: mod/settings.php:1204 src/Model/Profile.php:734
 msgid "Full Name:"
 msgstr ""
 
-#: mod/settings.php:1198
+#: mod/settings.php:1205
 msgid "Email Address:"
 msgstr ""
 
-#: mod/settings.php:1199
+#: mod/settings.php:1206
 msgid "Your Timezone:"
 msgstr ""
 
-#: mod/settings.php:1200
+#: mod/settings.php:1207
 msgid "Your Language:"
 msgstr ""
 
-#: mod/settings.php:1200
+#: mod/settings.php:1207
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr ""
 
-#: mod/settings.php:1201
+#: mod/settings.php:1208
 msgid "Default Post Location:"
 msgstr ""
 
-#: mod/settings.php:1202
+#: mod/settings.php:1209
 msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/settings.php:1205
+#: mod/settings.php:1212
 msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/settings.php:1207
+#: mod/settings.php:1214
 msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/settings.php:1207 mod/settings.php:1236
+#: mod/settings.php:1214 mod/settings.php:1243
 msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/settings.php:1208
+#: mod/settings.php:1215
 msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/settings.php:1209
+#: mod/settings.php:1216
 msgid "(click to open/close)"
 msgstr ""
 
-#: mod/settings.php:1219
+#: mod/settings.php:1226
 msgid "Default Private Post"
 msgstr ""
 
-#: mod/settings.php:1220
+#: mod/settings.php:1227
 msgid "Default Public Post"
 msgstr ""
 
-#: mod/settings.php:1224
-msgid "Default Permissions for New Posts"
+#: mod/settings.php:1231
+msgid "Default Permissions for New Posts"
+msgstr ""
+
+#: mod/settings.php:1243
+msgid "Maximum private messages per day from unknown people:"
+msgstr ""
+
+#: mod/settings.php:1246
+msgid "Notification Settings"
+msgstr ""
+
+#: mod/settings.php:1247
+msgid "Send a notification email when:"
+msgstr ""
+
+#: mod/settings.php:1248
+msgid "You receive an introduction"
+msgstr ""
+
+#: mod/settings.php:1249
+msgid "Your introductions are confirmed"
+msgstr ""
+
+#: mod/settings.php:1250
+msgid "Someone writes on your profile wall"
+msgstr ""
+
+#: mod/settings.php:1251
+msgid "Someone writes a followup comment"
+msgstr ""
+
+#: mod/settings.php:1252
+msgid "You receive a private message"
+msgstr ""
+
+#: mod/settings.php:1253
+msgid "You receive a friend suggestion"
+msgstr ""
+
+#: mod/settings.php:1254
+msgid "You are tagged in a post"
+msgstr ""
+
+#: mod/settings.php:1255
+msgid "You are poked/prodded/etc. in a post"
+msgstr ""
+
+#: mod/settings.php:1257
+msgid "Activate desktop notifications"
+msgstr ""
+
+#: mod/settings.php:1257
+msgid "Show desktop popup on new notifications"
+msgstr ""
+
+#: mod/settings.php:1259
+msgid "Text-only notification emails"
+msgstr ""
+
+#: mod/settings.php:1261
+msgid "Send text only notification emails, without the html part"
+msgstr ""
+
+#: mod/settings.php:1263
+msgid "Show detailled notifications"
+msgstr ""
+
+#: mod/settings.php:1265
+msgid ""
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr ""
+
+#: mod/settings.php:1267
+msgid "Advanced Account/Page Type Settings"
+msgstr ""
+
+#: mod/settings.php:1268
+msgid "Change the behaviour of this account for special situations"
+msgstr ""
+
+#: mod/settings.php:1271
+msgid "Relocate"
+msgstr ""
+
+#: mod/settings.php:1272
+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:1273
+msgid "Resend relocate message to contacts"
+msgstr ""
+
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
+
+#: mod/suggest.php:37
+msgid "Do you really want to delete this suggestion?"
+msgstr ""
+
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
+
+#: mod/suggest.php:86 mod/suggest.php:106
+msgid "Ignore/Hide"
+msgstr ""
+
+#: mod/suggest.php:116 view/theme/vier/theme.php:202 src/Content/Widget.php:63
+msgid "Friend Suggestions"
+msgstr ""
+
+#: mod/tagrm.php:43
+msgid "Tag removed"
+msgstr ""
+
+#: mod/tagrm.php:77
+msgid "Remove Item Tag"
+msgstr ""
+
+#: mod/tagrm.php:79
+msgid "Select a tag to remove: "
+msgstr ""
+
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr ""
+
+#: mod/uexport.php:44
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr ""
+
+#: mod/uexport.php:45
+msgid "Export all"
 msgstr ""
 
-#: mod/settings.php:1236
-msgid "Maximum private messages per day from unknown people:"
+#: mod/uexport.php:45
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
 msgstr ""
 
-#: mod/settings.php:1239
-msgid "Notification Settings"
+#: mod/unfollow.php:35
+msgid "Contact wasn't found or can't be unfollowed."
 msgstr ""
 
-#: mod/settings.php:1240
-msgid "Send a notification email when:"
+#: mod/unfollow.php:48
+msgid "Contact unfollowed"
 msgstr ""
 
-#: mod/settings.php:1241
-msgid "You receive an introduction"
+#: mod/unfollow.php:74
+msgid "You aren't a friend of this contact."
 msgstr ""
 
-#: mod/settings.php:1242
-msgid "Your introductions are confirmed"
+#: mod/unfollow.php:80
+msgid "Unfollowing is currently not supported by your network."
 msgstr ""
 
-#: mod/settings.php:1243
-msgid "Someone writes on your profile wall"
+#: mod/videos.php:138
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: mod/settings.php:1244
-msgid "Someone writes a followup comment"
+#: mod/videos.php:143
+msgid "Delete Video"
 msgstr ""
 
-#: mod/settings.php:1245
-msgid "You receive a private message"
+#: mod/videos.php:206
+msgid "No videos selected"
 msgstr ""
 
-#: mod/settings.php:1246
-msgid "You receive a friend suggestion"
+#: mod/videos.php:388
+msgid "Recent Videos"
 msgstr ""
 
-#: mod/settings.php:1247
-msgid "You are tagged in a post"
+#: mod/videos.php:390
+msgid "Upload New Videos"
 msgstr ""
 
-#: mod/settings.php:1248
-msgid "You are poked/prodded/etc. in a post"
+#: mod/viewcontacts.php:89
+msgid "No contacts."
 msgstr ""
 
-#: mod/settings.php:1250
-msgid "Activate desktop notifications"
+#: mod/wall_attach.php:26 mod/wall_attach.php:34 mod/wall_attach.php:85
+#: mod/wall_upload.php:39 mod/wall_upload.php:55 mod/wall_upload.php:113
+#: mod/wall_upload.php:164 mod/wall_upload.php:167
+msgid "Invalid request."
 msgstr ""
 
-#: mod/settings.php:1250
-msgid "Show desktop popup on new notifications"
+#: mod/wall_attach.php:103
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: mod/settings.php:1252
-msgid "Text-only notification emails"
+#: mod/wall_attach.php:103
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: mod/settings.php:1254
-msgid "Send text only notification emails, without the html part"
+#: mod/wall_attach.php:114
+#, php-format
+msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: mod/settings.php:1256
-msgid "Show detailled notifications"
+#: mod/wall_attach.php:138 mod/wall_attach.php:154
+msgid "File upload failed."
 msgstr ""
 
-#: mod/settings.php:1258
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: mod/settings.php:1260
-msgid "Advanced Account/Page Type Settings"
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
 msgstr ""
 
-#: mod/settings.php:1261
-msgid "Change the behaviour of this account for special situations"
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: mod/settings.php:1264
-msgid "Relocate"
+#: mod/wallmessage.php:133
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: mod/settings.php:1265
+#: mod/friendica.php:78
+#, php-format
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+"This is Friendica, version %s that is running at the web location %s. The "
+"database version is %s, the post update version is %s."
 msgstr ""
 
-#: mod/settings.php:1266
-msgid "Resend relocate message to contacts"
+#: mod/friendica.php:84
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
 msgstr ""
 
-#: mod/uimport.php:72
-msgid "Move account"
+#: mod/friendica.php:88
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/uimport.php:73
-msgid "You can import an account from another Friendica server."
+#: mod/friendica.php:88
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/uimport.php:74
+#: mod/friendica.php:91
 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."
+"Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
 msgstr ""
 
-#: mod/uimport.php:75
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
+#: mod/friendica.php:105
+msgid "Installed addons/apps:"
 msgstr ""
 
-#: mod/uimport.php:76
-msgid "Account file"
+#: mod/friendica.php:119
+msgid "No installed addons/apps"
 msgstr ""
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: mod/friendica.php:124
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr ""
+
+#: mod/friendica.php:129
+msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:542
+#: view/theme/duepuntozero/config.php:54 src/Model/User.php:541
 msgid "default"
 msgstr ""
 
@@ -7526,7 +7538,7 @@ msgid "Visitor"
 msgstr ""
 
 #: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:312
+#: src/Module/Login.php:311
 msgid "Logout"
 msgstr ""
 
@@ -7609,11 +7621,11 @@ msgstr ""
 msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
+#: view/theme/vier/config.php:115 src/Core/ACL.php:299
 msgid "don't show"
 msgstr ""
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
+#: view/theme/vier/config.php:115 src/Core/ACL.php:298
 msgid "show"
 msgstr ""
 
@@ -7625,7 +7637,7 @@ msgstr ""
 msgid "Community Pages"
 msgstr ""
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:153
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:149
 msgid "Community Profiles"
 msgstr ""
 
@@ -7633,7 +7645,7 @@ msgstr ""
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:390
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:386
 msgid "Connect Services"
 msgstr ""
 
@@ -7641,113 +7653,60 @@ msgstr ""
 msgid "Find Friends"
 msgstr ""
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:183
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:179
 msgid "Last users"
 msgstr ""
 
-#: view/theme/vier/theme.php:201 src/Content/Widget.php:59
+#: view/theme/vier/theme.php:197 src/Content/Widget.php:58
 msgid "Find People"
 msgstr ""
 
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:60
+#: view/theme/vier/theme.php:198 src/Content/Widget.php:59
 msgid "Enter name or interest"
 msgstr ""
 
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:62
+#: view/theme/vier/theme.php:200 src/Content/Widget.php:61
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: view/theme/vier/theme.php:207 src/Content/Widget.php:65
+#: view/theme/vier/theme.php:203 src/Content/Widget.php:64
 msgid "Similar Interests"
 msgstr ""
 
-#: view/theme/vier/theme.php:208 src/Content/Widget.php:66
+#: view/theme/vier/theme.php:204 src/Content/Widget.php:65
 msgid "Random Profile"
 msgstr ""
 
-#: view/theme/vier/theme.php:209 src/Content/Widget.php:67
+#: view/theme/vier/theme.php:205 src/Content/Widget.php:66
 msgid "Invite Friends"
 msgstr ""
 
-#: view/theme/vier/theme.php:212 src/Content/Widget.php:70
+#: view/theme/vier/theme.php:208 src/Content/Widget.php:69
 msgid "Local Directory"
 msgstr ""
 
-#: view/theme/vier/theme.php:257 src/Content/ForumManager.php:128
+#: view/theme/vier/theme.php:253 src/Content/ForumManager.php:127
 msgid "External link to forum"
 msgstr ""
 
-#: view/theme/vier/theme.php:293
+#: view/theme/vier/theme.php:289
 msgid "Quick Start"
 msgstr ""
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr ""
-
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
-
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr ""
-
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr ""
-
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr ""
-
-#: src/Core/UserImport.php:213
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr ""
-
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr ""
-
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr ""
-
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr ""
-
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr ""
-
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr ""
-
-#: src/Core/Console/ArchiveContact.php:63
+#: src/Core/Console/ArchiveContact.php:65
 #, php-format
 msgid "Could not find any unarchived contact entry for this URL (%s)"
 msgstr ""
 
-#: src/Core/Console/ArchiveContact.php:68
+#: src/Core/Console/ArchiveContact.php:70
 msgid "The contact entries have been archived"
 msgstr ""
 
-#: src/Core/Console/NewPassword.php:74
+#: src/Core/Console/NewPassword.php:73
 msgid "Enter new password: "
 msgstr ""
 
-#: src/Core/Console/NewPassword.php:79 src/Model/User.php:270
+#: src/Core/Console/NewPassword.php:78 src/Model/User.php:266
 msgid "Password can't be empty"
 msgstr ""
 
@@ -7979,71 +7938,124 @@ msgstr ""
 msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:173
+#: src/Core/ACL.php:285
+msgid "Post to Email"
+msgstr ""
+
+#: src/Core/ACL.php:291
+msgid "Hide your profile details from unknown viewers?"
+msgstr ""
+
+#: src/Core/ACL.php:290
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
+
+#: src/Core/ACL.php:297
+msgid "Visible to everybody"
+msgstr ""
+
+#: src/Core/ACL.php:309
+msgid "Close"
+msgstr ""
+
+#: src/Core/NotificationsManager.php:169
 msgid "System"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:194 src/Content/Nav.php:124
+#: src/Core/NotificationsManager.php:190 src/Content/Nav.php:124
 #: src/Content/Nav.php:186
 msgid "Home"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:201 src/Content/Nav.php:190
+#: src/Core/NotificationsManager.php:197 src/Content/Nav.php:190
 msgid "Introductions"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:263 src/Core/NotificationsManager.php:275
+#: src/Core/NotificationsManager.php:259 src/Core/NotificationsManager.php:271
 #, php-format
 msgid "%s commented on %s's post"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:274
+#: src/Core/NotificationsManager.php:270
 #, php-format
 msgid "%s created a new post"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:288
+#: src/Core/NotificationsManager.php:284
 #, php-format
 msgid "%s liked %s's post"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:301
+#: src/Core/NotificationsManager.php:297
 #, php-format
 msgid "%s disliked %s's post"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:314
+#: src/Core/NotificationsManager.php:310
 #, php-format
 msgid "%s is attending %s's event"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:327
+#: src/Core/NotificationsManager.php:323
 #, php-format
 msgid "%s is not attending %s's event"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:340
+#: src/Core/NotificationsManager.php:336
 #, php-format
 msgid "%s may attend %s's event"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:357
+#: src/Core/NotificationsManager.php:353
 #, php-format
 msgid "%s is now friends with %s"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:620
+#: src/Core/NotificationsManager.php:619
 msgid "Friend Suggestion"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:650
+#: src/Core/NotificationsManager.php:649
 msgid "Friend/Connect Request"
 msgstr ""
 
-#: src/Core/NotificationsManager.php:650
+#: src/Core/NotificationsManager.php:649
 msgid "New Follower"
 msgstr ""
 
+#: src/Core/UserImport.php:99
+msgid "Error decoding account file"
+msgstr ""
+
+#: src/Core/UserImport.php:105
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
+
+#: src/Core/UserImport.php:113
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr ""
+
+#: src/Core/UserImport.php:146
+msgid "User creation error"
+msgstr ""
+
+#: src/Core/UserImport.php:164
+msgid "User profile creation error"
+msgstr ""
+
+#: src/Core/UserImport.php:208
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Core/UserImport.php:273
+msgid "Done. You can now login with your username and password"
+msgstr ""
+
 #: src/Util/Temporal.php:147 src/Model/Profile.php:754
 msgid "Birthday:"
 msgstr ""
@@ -8109,33 +8121,33 @@ msgstr ""
 msgid "%1$d %2$s ago"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:424
+#: src/Content/Text/BBCode.php:423
 msgid "view full size"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:854 src/Content/Text/BBCode.php:1630
-#: src/Content/Text/BBCode.php:1631
+#: src/Content/Text/BBCode.php:853 src/Content/Text/BBCode.php:1629
+#: src/Content/Text/BBCode.php:1630
 msgid "Image/photo"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:992
+#: src/Content/Text/BBCode.php:991
 #, php-format
 msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1557 src/Content/Text/BBCode.php:1579
+#: src/Content/Text/BBCode.php:1556 src/Content/Text/BBCode.php:1578
 msgid "$1 wrote:"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1639 src/Content/Text/BBCode.php:1640
+#: src/Content/Text/BBCode.php:1638 src/Content/Text/BBCode.php:1639
 msgid "Encrypted content"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1759
+#: src/Content/Text/BBCode.php:1758
 msgid "Invalid source protocol"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1770
+#: src/Content/Text/BBCode.php:1769
 msgid "Invalid link protocol"
 msgstr ""
 
@@ -8151,562 +8163,520 @@ msgstr ""
 msgid "Export calendar as csv"
 msgstr ""
 
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr ""
-
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr ""
-
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr ""
-
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr ""
-
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr ""
-
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr ""
-
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr ""
-
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr ""
-
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr ""
-
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
+#: src/Content/Feature.php:79
+msgid "General Features"
 msgstr ""
 
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
 msgstr ""
 
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
+#: src/Content/Feature.php:82
+msgid "Photo Location"
 msgstr ""
 
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
+#: src/Content/Feature.php:82
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present) "
+"prior to stripping metadata and links it to a map."
 msgstr ""
 
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
 msgstr ""
 
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
 msgstr ""
 
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
 msgstr ""
 
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
+#: src/Content/Feature.php:89
+msgid "Post Preview"
 msgstr ""
 
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Male"
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Female"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
+#: src/Content/Feature.php:98
+msgid "Group Filter"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
+#: src/Content/Feature.php:99
+msgid "Network Filter"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
 msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Other"
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Males"
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Females"
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
+#: src/Content/Feature.php:116
+msgid "Tagging"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
+#: src/Content/Feature.php:117
+msgid "Post Categories"
 msgstr ""
 
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Single"
+#: src/Content/Feature.php:118 src/Content/Widget.php:204
+msgid "Saved Folders"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Available"
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
+#: src/Content/Feature.php:120
+msgid "Star Posts"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:559
-msgid "Friends"
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Married"
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
+#: src/Content/ContactSelector.php:53
+msgid "Frequently"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
+#: src/Content/ContactSelector.php:54
+msgid "Hourly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
+#: src/Content/ContactSelector.php:55
+msgid "Twice daily"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
+#: src/Content/ContactSelector.php:56
+msgid "Daily"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
+#: src/Content/ContactSelector.php:57
+msgid "Weekly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
+#: src/Content/ContactSelector.php:58
+msgid "Monthly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
+#: src/Content/ContactSelector.php:78
+msgid "OStatus"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
+#: src/Content/ContactSelector.php:79
+msgid "RSS/Atom"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
+#: src/Content/ContactSelector.php:82
+msgid "Facebook"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
+#: src/Content/ContactSelector.php:83
+msgid "Zot!"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
+#: src/Content/ContactSelector.php:84
+msgid "LinkedIn"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
+#: src/Content/ContactSelector.php:85
+msgid "XMPP/IM"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
+#: src/Content/ContactSelector.php:86
+msgid "MySpace"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
+#: src/Content/ContactSelector.php:87
+msgid "Google+"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
+#: src/Content/ContactSelector.php:88
+msgid "pump.io"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
+#: src/Content/ContactSelector.php:89
+msgid "Twitter"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
+#: src/Content/ContactSelector.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: src/Content/Feature.php:79
-msgid "General Features"
+#: src/Content/ContactSelector.php:91
+msgid "GNU Social Connector"
 msgstr ""
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
+#: src/Content/ContactSelector.php:92
+msgid "pnut"
 msgstr ""
 
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
+#: src/Content/ContactSelector.php:93
+msgid "App.net"
 msgstr ""
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
+#: src/Content/ContactSelector.php:123
+msgid "Male"
 msgstr ""
 
-#: src/Content/Feature.php:82
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present) "
-"prior to stripping metadata and links it to a map."
+#: src/Content/ContactSelector.php:123
+msgid "Female"
 msgstr ""
 
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
+#: src/Content/ContactSelector.php:123
+msgid "Currently Male"
 msgstr ""
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
+#: src/Content/ContactSelector.php:123
+msgid "Currently Female"
 msgstr ""
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
+#: src/Content/ContactSelector.php:123
+msgid "Mostly Male"
 msgstr ""
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
+#: src/Content/ContactSelector.php:123
+msgid "Mostly Female"
 msgstr ""
 
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
+#: src/Content/ContactSelector.php:123
+msgid "Transgender"
 msgstr ""
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
+#: src/Content/ContactSelector.php:123
+msgid "Intersex"
 msgstr ""
 
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
+#: src/Content/ContactSelector.php:123
+msgid "Transsexual"
 msgstr ""
 
-#: src/Content/Feature.php:95
-msgid "Network Sidebar"
+#: src/Content/ContactSelector.php:123
+msgid "Hermaphrodite"
 msgstr ""
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
+#: src/Content/ContactSelector.php:123
+msgid "Neuter"
 msgstr ""
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
+#: src/Content/ContactSelector.php:123
+msgid "Non-specific"
 msgstr ""
 
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
+#: src/Content/ContactSelector.php:123
+msgid "Other"
 msgstr ""
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
+#: src/Content/ContactSelector.php:145
+msgid "Males"
 msgstr ""
 
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
+#: src/Content/ContactSelector.php:145
+msgid "Females"
 msgstr ""
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
+#: src/Content/ContactSelector.php:145
+msgid "Gay"
 msgstr ""
 
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
+#: src/Content/ContactSelector.php:145
+msgid "Lesbian"
 msgstr ""
 
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
+#: src/Content/ContactSelector.php:145
+msgid "No Preference"
 msgstr ""
 
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
+#: src/Content/ContactSelector.php:145
+msgid "Bisexual"
 msgstr ""
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
+#: src/Content/ContactSelector.php:145
+msgid "Autosexual"
 msgstr ""
 
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: src/Content/ContactSelector.php:145
+msgid "Abstinent"
 msgstr ""
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
+#: src/Content/ContactSelector.php:145
+msgid "Virgin"
 msgstr ""
 
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: src/Content/ContactSelector.php:145
+msgid "Deviant"
 msgstr ""
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
+#: src/Content/ContactSelector.php:145
+msgid "Fetish"
 msgstr ""
 
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
+#: src/Content/ContactSelector.php:145
+msgid "Oodles"
 msgstr ""
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
+#: src/Content/ContactSelector.php:145
+msgid "Nonsexual"
 msgstr ""
 
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
+#: src/Content/ContactSelector.php:167
+msgid "Single"
 msgstr ""
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
+#: src/Content/ContactSelector.php:167
+msgid "Lonely"
 msgstr ""
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
+#: src/Content/ContactSelector.php:167
+msgid "Available"
 msgstr ""
 
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
+#: src/Content/ContactSelector.php:167
+msgid "Unavailable"
 msgstr ""
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
+#: src/Content/ContactSelector.php:167
+msgid "Has crush"
 msgstr ""
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
+#: src/Content/ContactSelector.php:167
+msgid "Infatuated"
 msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
+#: src/Content/ContactSelector.php:167
+msgid "Dating"
 msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
+#: src/Content/ContactSelector.php:167
+msgid "Unfaithful"
 msgstr ""
 
-#: src/Content/Feature.php:118 src/Content/Widget.php:205
-msgid "Saved Folders"
+#: src/Content/ContactSelector.php:167
+msgid "Sex Addict"
 msgstr ""
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
+#: src/Content/ContactSelector.php:167 src/Model/User.php:558
+msgid "Friends"
 msgstr ""
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
+#: src/Content/ContactSelector.php:167
+msgid "Friends/Benefits"
 msgstr ""
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
+#: src/Content/ContactSelector.php:167
+msgid "Casual"
 msgstr ""
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
+#: src/Content/ContactSelector.php:167
+msgid "Engaged"
 msgstr ""
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
+#: src/Content/ContactSelector.php:167
+msgid "Married"
 msgstr ""
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
+#: src/Content/ContactSelector.php:167
+msgid "Imaginarily married"
 msgstr ""
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
+#: src/Content/ContactSelector.php:167
+msgid "Partners"
 msgstr ""
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
+#: src/Content/ContactSelector.php:167
+msgid "Cohabiting"
 msgstr ""
 
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
+#: src/Content/ContactSelector.php:167
+msgid "Common law"
 msgstr ""
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
+#: src/Content/ContactSelector.php:167
+msgid "Happy"
 msgstr ""
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
+#: src/Content/ContactSelector.php:167
+msgid "Not looking"
 msgstr ""
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
+#: src/Content/ContactSelector.php:167
+msgid "Swinger"
 msgstr ""
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
+#: src/Content/ContactSelector.php:167
+msgid "Betrayed"
 msgstr ""
 
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
+#: src/Content/ContactSelector.php:167
+msgid "Separated"
 msgstr ""
 
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
+#: src/Content/ContactSelector.php:167
+msgid "Unstable"
 msgstr ""
 
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: src/Content/ContactSelector.php:167
+msgid "Divorced"
 msgstr ""
 
-#: src/Content/Widget.php:53
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
+#: src/Content/ContactSelector.php:167
+msgid "Imaginarily divorced"
+msgstr ""
 
-#: src/Content/Widget.php:164
-msgid "Networks"
+#: src/Content/ContactSelector.php:167
+msgid "Widowed"
 msgstr ""
 
-#: src/Content/Widget.php:167
-msgid "All Networks"
+#: src/Content/ContactSelector.php:167
+msgid "Uncertain"
 msgstr ""
 
-#: src/Content/Widget.php:208 src/Content/Widget.php:248
-msgid "Everything"
+#: src/Content/ContactSelector.php:167
+msgid "It's complicated"
 msgstr ""
 
-#: src/Content/Widget.php:245
-msgid "Categories"
+#: src/Content/ContactSelector.php:167
+msgid "Don't care"
 msgstr ""
 
-#: src/Content/Widget.php:312
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
+#: src/Content/ContactSelector.php:167
+msgid "Ask me"
+msgstr ""
 
 #: src/Content/Nav.php:53
 msgid "Nothing new here"
@@ -8812,10 +8782,6 @@ msgstr ""
 msgid "Manage other pages"
 msgstr ""
 
-#: src/Content/Nav.php:210 src/Model/Profile.php:370
-msgid "Profiles"
-msgstr ""
-
 #: src/Content/Nav.php:210
 msgid "Manage/Edit Profiles"
 msgstr ""
@@ -8832,19 +8798,61 @@ msgstr ""
 msgid "Site map"
 msgstr ""
 
-#: src/Content/OEmbed.php:255
+#: src/Content/OEmbed.php:256
 msgid "Embedding disabled"
 msgstr ""
 
-#: src/Content/OEmbed.php:375
+#: src/Content/OEmbed.php:376
 msgid "Embedded content"
 msgstr ""
 
-#: src/Database/DBStructure.php:31
+#: src/Content/Widget.php:32
+msgid "Add New Contact"
+msgstr ""
+
+#: src/Content/Widget.php:33
+msgid "Enter address or web location"
+msgstr ""
+
+#: src/Content/Widget.php:34
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr ""
+
+#: src/Content/Widget.php:52
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Content/Widget.php:163
+msgid "Networks"
+msgstr ""
+
+#: src/Content/Widget.php:166
+msgid "All Networks"
+msgstr ""
+
+#: src/Content/Widget.php:207 src/Content/Widget.php:247
+msgid "Everything"
+msgstr ""
+
+#: src/Content/Widget.php:244
+msgid "Categories"
+msgstr ""
+
+#: src/Content/Widget.php:311
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: src/Database/DBStructure.php:33
 msgid "There are no tables on MyISAM."
 msgstr ""
 
-#: src/Database/DBStructure.php:74
+#: src/Database/DBStructure.php:76
 #, php-format
 msgid ""
 "\n"
@@ -8856,14 +8864,14 @@ msgid ""
 "might be invalid."
 msgstr ""
 
-#: src/Database/DBStructure.php:79
+#: src/Database/DBStructure.php:81
 #, php-format
 msgid ""
 "The error message is\n"
 "[pre]%s[/pre]"
 msgstr ""
 
-#: src/Database/DBStructure.php:190
+#: src/Database/DBStructure.php:192
 #, php-format
 msgid ""
 "\n"
@@ -8871,415 +8879,288 @@ msgid ""
 "%s\n"
 msgstr ""
 
-#: src/Database/DBStructure.php:193
+#: src/Database/DBStructure.php:195
 msgid "Errors encountered performing database changes: "
 msgstr ""
 
-#: src/Database/DBStructure.php:209
+#: src/Database/DBStructure.php:211
 #, php-format
 msgid "%s: Database update"
 msgstr ""
 
-#: src/Database/DBStructure.php:471
+#: src/Database/DBStructure.php:473
 #, php-format
 msgid "%s: updating %s table."
 msgstr ""
 
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:880
-msgid "Starts:"
-msgstr ""
-
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:884
-msgid "Finishes:"
-msgstr ""
-
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr ""
-
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr ""
-
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr ""
-
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr ""
-
-#: src/Model/Event.php:541
-msgid "l, F j"
-msgstr ""
-
-#: src/Model/Event.php:569
-msgid "Edit event"
-msgstr ""
-
-#: src/Model/Event.php:570
-msgid "Duplicate event"
-msgstr ""
-
-#: src/Model/Event.php:571
-msgid "Delete event"
-msgstr ""
-
-#: src/Model/Event.php:818
-msgid "D g:i A"
-msgstr ""
-
-#: src/Model/Event.php:819
-msgid "g:i A"
-msgstr ""
-
-#: src/Model/Event.php:899 src/Model/Event.php:901
-msgid "Show map"
-msgstr ""
-
-#: src/Model/Event.php:900
-msgid "Hide map"
-msgstr ""
-
-#: src/Model/Group.php:44
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr ""
-
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr ""
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr ""
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr ""
-
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr ""
-
-#: src/Model/Group.php:421
-msgid "Create a new group"
-msgstr ""
-
-#: src/Model/Group.php:423
-msgid "Edit groups"
-msgstr ""
-
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr ""
-
-#: src/Model/Contact.php:667
+#: src/Model/Contact.php:733
 msgid "Drop Contact"
 msgstr ""
 
-#: src/Model/Contact.php:1089
+#: src/Model/Contact.php:1155
 msgid "Organisation"
 msgstr ""
 
-#: src/Model/Contact.php:1092
+#: src/Model/Contact.php:1159
 msgid "News"
 msgstr ""
 
-#: src/Model/Contact.php:1095
+#: src/Model/Contact.php:1163
 msgid "Forum"
 msgstr ""
 
-#: src/Model/Contact.php:1274
+#: src/Model/Contact.php:1343
 msgid "Connect URL missing."
 msgstr ""
 
-#: src/Model/Contact.php:1283
+#: src/Model/Contact.php:1352
 msgid ""
 "The contact could not be added. Please check the relevant network "
 "credentials in your Settings -> Social Networks page."
 msgstr ""
 
-#: src/Model/Contact.php:1330
+#: src/Model/Contact.php:1399
 msgid ""
 "This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: src/Model/Contact.php:1331 src/Model/Contact.php:1345
+#: src/Model/Contact.php:1400 src/Model/Contact.php:1414
 msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: src/Model/Contact.php:1343
+#: src/Model/Contact.php:1412
 msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: src/Model/Contact.php:1348
-msgid "An author or name was not found."
-msgstr ""
-
-#: src/Model/Contact.php:1351
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: src/Model/Contact.php:1354
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: src/Model/Contact.php:1355
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
-
-#: src/Model/Contact.php:1361
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-
-#: src/Model/Contact.php:1366
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
 #: src/Model/Contact.php:1417
-msgid "Unable to retrieve contact information."
-msgstr ""
-
-#: src/Model/Contact.php:1638 src/Protocol/DFRN.php:1508
-#, php-format
-msgid "%s's birthday"
-msgstr ""
-
-#: src/Model/Contact.php:1639 src/Protocol/DFRN.php:1509
-#, php-format
-msgid "Happy Birthday %s"
-msgstr ""
-
-#: src/Model/Profile.php:100
-msgid "Requested account is not available."
+msgid "An author or name was not found."
 msgstr ""
-
-#: src/Model/Profile.php:164 src/Model/Profile.php:397
-#: src/Model/Profile.php:855
-msgid "Edit profile"
+
+#: src/Model/Contact.php:1420
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: src/Model/Profile.php:334
-msgid "Atom feed"
+#: src/Model/Contact.php:1423
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: src/Model/Profile.php:370
-msgid "Manage/edit profiles"
+#: src/Model/Contact.php:1424
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: src/Model/Profile.php:548 src/Model/Profile.php:637
-msgid "g A l F d"
+#: src/Model/Contact.php:1430
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: src/Model/Profile.php:549
-msgid "F d"
+#: src/Model/Contact.php:1435
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: src/Model/Profile.php:602 src/Model/Profile.php:699
-msgid "[today]"
+#: src/Model/Contact.php:1486
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: src/Model/Profile.php:613
-msgid "Birthday Reminders"
+#: src/Model/Contact.php:1716 src/Protocol/DFRN.php:1496
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: src/Model/Profile.php:614
-msgid "Birthdays this week:"
+#: src/Model/Contact.php:1717 src/Protocol/DFRN.php:1497
+#, php-format
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: src/Model/Profile.php:686
-msgid "[No description]"
+#: src/Model/Event.php:59 src/Model/Event.php:76 src/Model/Event.php:428
+#: src/Model/Event.php:894
+msgid "Starts:"
 msgstr ""
 
-#: src/Model/Profile.php:713
-msgid "Event Reminders"
+#: src/Model/Event.php:62 src/Model/Event.php:82 src/Model/Event.php:429
+#: src/Model/Event.php:898
+msgid "Finishes:"
 msgstr ""
 
-#: src/Model/Profile.php:714
-msgid "Upcoming events the next 7 days:"
+#: src/Model/Event.php:377
+msgid "all-day"
 msgstr ""
 
-#: src/Model/Profile.php:737
-msgid "Member since:"
+#: src/Model/Event.php:400
+msgid "Jun"
 msgstr ""
 
-#: src/Model/Profile.php:745
-msgid "j F, Y"
+#: src/Model/Event.php:403
+msgid "Sept"
 msgstr ""
 
-#: src/Model/Profile.php:746
-msgid "j F"
+#: src/Model/Event.php:426
+msgid "No events to display"
 msgstr ""
 
-#: src/Model/Profile.php:761
-msgid "Age:"
+#: src/Model/Event.php:550
+msgid "l, F j"
 msgstr ""
 
-#: src/Model/Profile.php:774
-#, php-format
-msgid "for %1$d %2$s"
+#: src/Model/Event.php:578
+msgid "Edit event"
 msgstr ""
 
-#: src/Model/Profile.php:798
-msgid "Religion:"
+#: src/Model/Event.php:579
+msgid "Duplicate event"
 msgstr ""
 
-#: src/Model/Profile.php:806
-msgid "Hobbies/Interests:"
+#: src/Model/Event.php:580
+msgid "Delete event"
 msgstr ""
 
-#: src/Model/Profile.php:818
-msgid "Contact information and Social Networks:"
+#: src/Model/Event.php:827
+msgid "D g:i A"
 msgstr ""
 
-#: src/Model/Profile.php:822
-msgid "Musical interests:"
+#: src/Model/Event.php:828
+msgid "g:i A"
 msgstr ""
 
-#: src/Model/Profile.php:826
-msgid "Books, literature:"
+#: src/Model/Event.php:913 src/Model/Event.php:915
+msgid "Show map"
 msgstr ""
 
-#: src/Model/Profile.php:830
-msgid "Television:"
+#: src/Model/Event.php:914
+msgid "Hide map"
 msgstr ""
 
-#: src/Model/Profile.php:834
-msgid "Film/dance/culture/entertainment:"
+#: src/Model/Group.php:43
+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 ""
 
-#: src/Model/Profile.php:838
-msgid "Love/Romance:"
+#: src/Model/Group.php:340
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: src/Model/Profile.php:842
-msgid "Work/employment:"
+#: src/Model/Group.php:373
+msgid "Everybody"
 msgstr ""
 
-#: src/Model/Profile.php:846
-msgid "School/education:"
+#: src/Model/Group.php:393
+msgid "edit"
 msgstr ""
 
-#: src/Model/Profile.php:851
-msgid "Forums:"
+#: src/Model/Group.php:417
+msgid "Edit group"
 msgstr ""
 
-#: src/Model/Profile.php:945
-msgid "Only You Can See This"
+#: src/Model/Group.php:420
+msgid "Create a new group"
 msgstr ""
 
-#: src/Model/Profile.php:953 src/Model/Profile.php:956
-msgid "Tips for New Members"
+#: src/Model/Group.php:422
+msgid "Edit groups"
 msgstr ""
 
-#: src/Model/Profile.php:1111
-#, php-format
-msgid "OpenWebAuth: %1$s welcomes %2$s"
+#: src/Model/Mail.php:39 src/Model/Mail.php:173
+msgid "[no subject]"
 msgstr ""
 
-#: src/Model/User.php:169
+#: src/Model/User.php:165
 msgid "Login failed"
 msgstr ""
 
-#: src/Model/User.php:200
+#: src/Model/User.php:196
 msgid "Not enough information to authenticate"
 msgstr ""
 
-#: src/Model/User.php:382
+#: src/Model/User.php:381
 msgid "An invitation is required."
 msgstr ""
 
-#: src/Model/User.php:386
+#: src/Model/User.php:385
 msgid "Invitation could not be verified."
 msgstr ""
 
-#: src/Model/User.php:393
+#: src/Model/User.php:392
 msgid "Invalid OpenID url"
 msgstr ""
 
-#: src/Model/User.php:406 src/Module/Login.php:101
+#: src/Model/User.php:405 src/Module/Login.php:100
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr ""
 
-#: src/Model/User.php:406 src/Module/Login.php:101
+#: src/Model/User.php:405 src/Module/Login.php:100
 msgid "The error message was:"
 msgstr ""
 
-#: src/Model/User.php:412
+#: src/Model/User.php:411
 msgid "Please enter the required information."
 msgstr ""
 
-#: src/Model/User.php:425
+#: src/Model/User.php:424
 msgid "Please use a shorter name."
 msgstr ""
 
-#: src/Model/User.php:428
+#: src/Model/User.php:427
 msgid "Name too short."
 msgstr ""
 
-#: src/Model/User.php:436
+#: src/Model/User.php:435
 msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: src/Model/User.php:441
+#: src/Model/User.php:440
 msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: src/Model/User.php:445
+#: src/Model/User.php:444
 msgid "Not a valid email address."
 msgstr ""
 
-#: src/Model/User.php:448
+#: src/Model/User.php:447
 msgid "The nickname was blocked from registration by the nodes admin."
 msgstr ""
 
-#: src/Model/User.php:452 src/Model/User.php:460
+#: src/Model/User.php:451 src/Model/User.php:459
 msgid "Cannot use that email."
 msgstr ""
 
-#: src/Model/User.php:467
+#: src/Model/User.php:466
 msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr ""
 
-#: src/Model/User.php:474 src/Model/User.php:531
+#: src/Model/User.php:473 src/Model/User.php:530
 msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: src/Model/User.php:484
+#: src/Model/User.php:483
 msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: src/Model/User.php:518 src/Model/User.php:522
+#: src/Model/User.php:517 src/Model/User.php:521
 msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: src/Model/User.php:547
+#: src/Model/User.php:546
 msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: src/Model/User.php:554
+#: src/Model/User.php:553
 msgid "An error occurred creating your self contact. Please try again."
 msgstr ""
 
-#: src/Model/User.php:563
+#: src/Model/User.php:562
 msgid ""
 "An error occurred creating your default contact group. Please try again."
 msgstr ""
 
-#: src/Model/User.php:637
+#: src/Model/User.php:636
 #, php-format
 msgid ""
 "\n"
@@ -9289,12 +9170,12 @@ msgid ""
 "\t\t"
 msgstr ""
 
-#: src/Model/User.php:647
+#: src/Model/User.php:646
 #, php-format
 msgid "Registration at %s"
 msgstr ""
 
-#: src/Model/User.php:665
+#: src/Model/User.php:664
 #, php-format
 msgid ""
 "\n"
@@ -9303,7 +9184,7 @@ msgid ""
 "\t\t"
 msgstr ""
 
-#: src/Model/User.php:669
+#: src/Model/User.php:668
 #, php-format
 msgid ""
 "\n"
@@ -9342,33 +9223,160 @@ msgid ""
 "\t\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: src/Protocol/Diaspora.php:2462
+#: src/Model/Profile.php:96
+msgid "Requested account is not available."
+msgstr ""
+
+#: src/Model/Profile.php:164 src/Model/Profile.php:397
+#: src/Model/Profile.php:855
+msgid "Edit profile"
+msgstr ""
+
+#: src/Model/Profile.php:334
+msgid "Atom feed"
+msgstr ""
+
+#: src/Model/Profile.php:370
+msgid "Manage/edit profiles"
+msgstr ""
+
+#: src/Model/Profile.php:548 src/Model/Profile.php:637
+msgid "g A l F d"
+msgstr ""
+
+#: src/Model/Profile.php:549
+msgid "F d"
+msgstr ""
+
+#: src/Model/Profile.php:602 src/Model/Profile.php:699
+msgid "[today]"
+msgstr ""
+
+#: src/Model/Profile.php:613
+msgid "Birthday Reminders"
+msgstr ""
+
+#: src/Model/Profile.php:614
+msgid "Birthdays this week:"
+msgstr ""
+
+#: src/Model/Profile.php:686
+msgid "[No description]"
+msgstr ""
+
+#: src/Model/Profile.php:713
+msgid "Event Reminders"
+msgstr ""
+
+#: src/Model/Profile.php:714
+msgid "Upcoming events the next 7 days:"
+msgstr ""
+
+#: src/Model/Profile.php:737
+msgid "Member since:"
+msgstr ""
+
+#: src/Model/Profile.php:745
+msgid "j F, Y"
+msgstr ""
+
+#: src/Model/Profile.php:746
+msgid "j F"
+msgstr ""
+
+#: src/Model/Profile.php:761
+msgid "Age:"
+msgstr ""
+
+#: src/Model/Profile.php:774
+#, php-format
+msgid "for %1$d %2$s"
+msgstr ""
+
+#: src/Model/Profile.php:798
+msgid "Religion:"
+msgstr ""
+
+#: src/Model/Profile.php:806
+msgid "Hobbies/Interests:"
+msgstr ""
+
+#: src/Model/Profile.php:818
+msgid "Contact information and Social Networks:"
+msgstr ""
+
+#: src/Model/Profile.php:822
+msgid "Musical interests:"
+msgstr ""
+
+#: src/Model/Profile.php:826
+msgid "Books, literature:"
+msgstr ""
+
+#: src/Model/Profile.php:830
+msgid "Television:"
+msgstr ""
+
+#: src/Model/Profile.php:834
+msgid "Film/dance/culture/entertainment:"
+msgstr ""
+
+#: src/Model/Profile.php:838
+msgid "Love/Romance:"
+msgstr ""
+
+#: src/Model/Profile.php:842
+msgid "Work/employment:"
+msgstr ""
+
+#: src/Model/Profile.php:846
+msgid "School/education:"
+msgstr ""
+
+#: src/Model/Profile.php:851
+msgid "Forums:"
+msgstr ""
+
+#: src/Model/Profile.php:945
+msgid "Only You Can See This"
+msgstr ""
+
+#: src/Model/Profile.php:953 src/Model/Profile.php:956
+msgid "Tips for New Members"
+msgstr ""
+
+#: src/Model/Profile.php:1115
+#, php-format
+msgid "OpenWebAuth: %1$s welcomes %2$s"
+msgstr ""
+
+#: src/Protocol/Diaspora.php:2449
 msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: src/Protocol/Diaspora.php:3552
+#: src/Protocol/Diaspora.php:3545
 msgid "Attachments:"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1799
+#: src/Protocol/OStatus.php:1816
 #, php-format
 msgid "%s is now following %s."
 msgstr ""
 
-#: src/Protocol/OStatus.php:1800
+#: src/Protocol/OStatus.php:1817
 msgid "following"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1803
+#: src/Protocol/OStatus.php:1820
 #, php-format
 msgid "%s stopped following %s."
 msgstr ""
 
-#: src/Protocol/OStatus.php:1804
+#: src/Protocol/OStatus.php:1821
 msgid "stopped following"
 msgstr ""
 
-#: src/Worker/Delivery.php:420
+#: src/Worker/Delivery.php:439
 msgid "(no subject)"
 msgstr ""
 
@@ -9410,43 +9418,43 @@ msgstr ""
 msgid "Privacy Statement"
 msgstr ""
 
-#: src/Module/Login.php:283
+#: src/Module/Login.php:282
 msgid "Create a New Account"
 msgstr ""
 
-#: src/Module/Login.php:316
+#: src/Module/Login.php:315
 msgid "Password: "
 msgstr ""
 
-#: src/Module/Login.php:317
+#: src/Module/Login.php:316
 msgid "Remember me"
 msgstr ""
 
-#: src/Module/Login.php:320
+#: src/Module/Login.php:319
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: src/Module/Login.php:326
+#: src/Module/Login.php:325
 msgid "Forgot your password?"
 msgstr ""
 
-#: src/Module/Login.php:329
+#: src/Module/Login.php:328
 msgid "Website Terms of Service"
 msgstr ""
 
-#: src/Module/Login.php:330
+#: src/Module/Login.php:329
 msgid "terms of service"
 msgstr ""
 
-#: src/Module/Login.php:332
+#: src/Module/Login.php:331
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: src/Module/Login.php:333
+#: src/Module/Login.php:332
 msgid "privacy policy"
 msgstr ""
 
-#: src/Object/Post.php:130
+#: src/Object/Post.php:129
 msgid "This entry was edited"
 msgstr ""
 
@@ -9522,83 +9530,88 @@ msgstr ""
 msgid "share"
 msgstr ""
 
-#: src/Object/Post.php:361
+#: src/Object/Post.php:363
 msgid "to"
 msgstr ""
 
-#: src/Object/Post.php:362
+#: src/Object/Post.php:364
 msgid "via"
 msgstr ""
 
-#: src/Object/Post.php:363
+#: src/Object/Post.php:365
 msgid "Wall-to-Wall"
 msgstr ""
 
-#: src/Object/Post.php:364
+#: src/Object/Post.php:366
 msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: src/Object/Post.php:423
+#: src/Object/Post.php:425
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Object/Post.php:793
+#: src/Object/Post.php:795
 msgid "Bold"
 msgstr ""
 
-#: src/Object/Post.php:794
+#: src/Object/Post.php:796
 msgid "Italic"
 msgstr ""
 
-#: src/Object/Post.php:795
+#: src/Object/Post.php:797
 msgid "Underline"
 msgstr ""
 
-#: src/Object/Post.php:796
+#: src/Object/Post.php:798
 msgid "Quote"
 msgstr ""
 
-#: src/Object/Post.php:797
+#: src/Object/Post.php:799
 msgid "Code"
 msgstr ""
 
-#: src/Object/Post.php:798
+#: src/Object/Post.php:800
 msgid "Image"
 msgstr ""
 
-#: src/Object/Post.php:799
+#: src/Object/Post.php:801
 msgid "Link"
 msgstr ""
 
-#: src/Object/Post.php:800
+#: src/Object/Post.php:802
 msgid "Video"
 msgstr ""
 
-#: src/App.php:786
+#: src/App.php:783
 msgid "Delete this item?"
 msgstr ""
 
-#: src/App.php:788
+#: src/App.php:785
 msgid "show fewer"
 msgstr ""
 
-#: src/App.php:1375
+#: src/App.php:1383
 msgid "No system theme config value set."
 msgstr ""
 
-#: update.php:193
+#: boot.php:686
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr ""
+
+#: update.php:194
 #, php-format
 msgid "%s: Updating author-id and owner-id in item and thread table. "
 msgstr ""
 
-#: boot.php:759
+#: update.php:240
 #, php-format
-msgid "Update %s failed. See error logs."
+msgid "%s: Updating post-type."
 msgstr ""
 
-#: index.php:458
+#: index.php:460
 msgid "toggle mobile"
 msgstr ""
index a08442da3f7ce4cd3a92f09b772b8f324876e866..883b0d4c1420320f1d4990f7a87bf93e20765fe9 100644 (file)
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-07-19 06:28+0200\n"
-"PO-Revision-Date: 2018-07-31 17:48+0000\n"
+"PO-Revision-Date: 2018-08-04 05:45+0000\n"
 "Last-Translator: Aditoo\n"
 "Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -66,7 +66,7 @@ msgstr "%1$s se možná účastní %3$s uživatele %2$s"
 #: include/conversation.php:211
 #, php-format
 msgid "%1$s is now friends with %2$s"
-msgstr "%1$s je nyní přítel s uživatelem %2$s"
+msgstr "%1$s se nyní přátelí s uživatelem %2$s"
 
 #: include/conversation.php:252
 #, php-format
@@ -160,7 +160,7 @@ msgstr "Smazat vybrané položky"
 
 #: include/conversation.php:855 view/theme/frio/theme.php:357
 msgid "Follow Thread"
-msgstr "Následovat vlákno"
+msgstr "Sledovat vlákno"
 
 #: include/conversation.php:856 src/Model/Contact.php:662
 msgid "View Status"
@@ -1040,36 +1040,36 @@ msgstr "neděle"
 
 #: include/text.php:974 src/Model/Event.php:399
 msgid "January"
-msgstr "ledna"
+msgstr "leden"
 
 #: include/text.php:974 src/Model/Event.php:400
 msgid "February"
-msgstr "února"
+msgstr "únor"
 
 #: include/text.php:974 src/Model/Event.php:401
 msgid "March"
-msgstr "března"
+msgstr "březen"
 
 #: include/text.php:974 src/Model/Event.php:402
 msgid "April"
-msgstr "dubna"
+msgstr "duben"
 
 #: include/text.php:974 include/text.php:991 src/Model/Event.php:390
 #: src/Model/Event.php:403
 msgid "May"
-msgstr "května"
+msgstr "květen"
 
 #: include/text.php:974 src/Model/Event.php:404
 msgid "June"
-msgstr "června"
+msgstr "červen"
 
 #: include/text.php:974 src/Model/Event.php:405
 msgid "July"
-msgstr "července"
+msgstr "červenec"
 
 #: include/text.php:974 src/Model/Event.php:406
 msgid "August"
-msgstr "srpna"
+msgstr "srpen"
 
 #: include/text.php:974 src/Model/Event.php:407
 msgid "September"
@@ -1077,83 +1077,83 @@ msgstr "září"
 
 #: include/text.php:974 src/Model/Event.php:408
 msgid "October"
-msgstr "října"
+msgstr "říjen"
 
 #: include/text.php:974 src/Model/Event.php:409
 msgid "November"
-msgstr "listopadu"
+msgstr "listopad"
 
 #: include/text.php:974 src/Model/Event.php:410
 msgid "December"
-msgstr "prosince"
+msgstr "prosinec"
 
 #: include/text.php:988 src/Model/Event.php:371
 msgid "Mon"
-msgstr "Pon"
+msgstr "pon"
 
 #: include/text.php:988 src/Model/Event.php:372
 msgid "Tue"
-msgstr "Ã\9ate"
+msgstr "úte"
 
 #: include/text.php:988 src/Model/Event.php:373
 msgid "Wed"
-msgstr "Stř"
+msgstr "stř"
 
 #: include/text.php:988 src/Model/Event.php:374
 msgid "Thu"
-msgstr "Ä\8ctv"
+msgstr "Ä\8dtv"
 
 #: include/text.php:988 src/Model/Event.php:375
 msgid "Fri"
-msgstr "Pát"
+msgstr "pát"
 
 #: include/text.php:988 src/Model/Event.php:376
 msgid "Sat"
-msgstr "Sob"
+msgstr "sob"
 
 #: include/text.php:988 src/Model/Event.php:370
 msgid "Sun"
-msgstr "Ned"
+msgstr "ned"
 
 #: include/text.php:991 src/Model/Event.php:386
 msgid "Jan"
-msgstr "Led"
+msgstr "led"
 
 #: include/text.php:991 src/Model/Event.php:387
 msgid "Feb"
-msgstr "Ã\9ano"
+msgstr "úno"
 
 #: include/text.php:991 src/Model/Event.php:388
 msgid "Mar"
-msgstr "Bře"
+msgstr "bře"
 
 #: include/text.php:991 src/Model/Event.php:389
 msgid "Apr"
-msgstr "Dub"
+msgstr "dub"
 
 #: include/text.php:991 src/Model/Event.php:392
 msgid "Jul"
-msgstr "Ä\8cvc"
+msgstr "Ä\8dvc"
 
 #: include/text.php:991 src/Model/Event.php:393
 msgid "Aug"
-msgstr "Srp"
+msgstr "srp"
 
 #: include/text.php:991
 msgid "Sep"
-msgstr "Zář"
+msgstr "zář"
 
 #: include/text.php:991 src/Model/Event.php:395
 msgid "Oct"
-msgstr "Å\98íj"
+msgstr "Å\99íj"
 
 #: include/text.php:991 src/Model/Event.php:396
 msgid "Nov"
-msgstr "Lis"
+msgstr "lis"
 
 #: include/text.php:991 src/Model/Event.php:397
 msgid "Dec"
-msgstr "Pro"
+msgstr "pro"
 
 #: include/text.php:1137
 #, php-format
@@ -1234,7 +1234,7 @@ msgstr "Ne"
 
 #: mod/apps.php:14 index.php:259
 msgid "You must be logged in to use addons. "
-msgstr "Musíte být přihlášeni pro použití rozšíření."
+msgstr "Pro použití doplňků musíte být přihlášen/a."
 
 #: mod/apps.php:19
 msgid "Applications"
@@ -2079,7 +2079,7 @@ msgstr "URL adresa účtu"
 
 #: mod/crepair.php:162
 msgid "Friend Request URL"
-msgstr "Žádost o přátelství URL"
+msgstr "URL žádosti o přátelství"
 
 #: mod/crepair.php:163
 msgid "Friend Confirm URL"
@@ -2106,7 +2106,7 @@ msgstr "Profil nenalezen."
 msgid ""
 "This may occasionally happen if contact was requested by both persons and it"
 " has already been approved."
-msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
+msgstr "To se může občas stát, pokud byl kontakt zažádán oběma osobami a již byl schválen."
 
 #: mod/dfrn_confirm.php:240
 msgid "Response from remote site was not understood."
@@ -2721,7 +2721,7 @@ msgstr "Navštivte profil uživatele %s [%s]"
 
 #: mod/viewsrc.php:13 mod/community.php:34
 msgid "Access denied."
-msgstr "Přístup odmítnut"
+msgstr "Přístup odmítnut."
 
 #: mod/community.php:51
 msgid "Community option not available."
@@ -6318,7 +6318,7 @@ msgid ""
 "\t\t\tinformation for your records (or change your password immediately to\n"
 "\t\t\tsomething that you will remember).\n"
 "\t\t"
-msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tVaše heslo se před nedávnem změnilo, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t"
+msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tVaše heslo bylo změněno, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t"
 
 #: mod/lostpass.php:155
 #, php-format
@@ -6332,7 +6332,7 @@ msgid ""
 "\n"
 "\t\t\tYou may change that password from your account settings page after logging in.\n"
 "\t\t"
-msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu\n\t\t"
+msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tToto heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu.\n\t\t"
 
 #: mod/lostpass.php:169
 #, php-format
@@ -6370,7 +6370,7 @@ msgstr "{0} požaduje registraci"
 
 #: mod/profile.php:37 src/Model/Profile.php:118
 msgid "Requested profile is not available."
-msgstr "Požadovaný profil není k dispozici."
+msgstr "Požadovaný profil není dostupný."
 
 #: mod/profile.php:78 mod/profile.php:81 src/Protocol/OStatus.php:1263
 #, php-format
@@ -8075,7 +8075,7 @@ msgstr "%s by se mohl/a zúčastnit události %s"
 #: src/Core/NotificationsManager.php:357
 #, php-format
 msgid "%s is now friends with %s"
-msgstr "%s se nyní přátelí s %s"
+msgstr "%s se nyní přátelí s uživatelem %s"
 
 #: src/Core/NotificationsManager.php:620
 msgid "Friend Suggestion"
@@ -8342,7 +8342,7 @@ msgstr "Gay"
 
 #: src/Content/ContactSelector.php:147
 msgid "Lesbian"
-msgstr "Lesbička"
+msgstr "Lesba"
 
 #: src/Content/ContactSelector.php:147
 msgid "No Preference"
@@ -8362,7 +8362,7 @@ msgstr "Abstinent"
 
 #: src/Content/ContactSelector.php:147
 msgid "Virgin"
-msgstr "panic/panna"
+msgstr "Panic/panna"
 
 #: src/Content/ContactSelector.php:147
 msgid "Deviant"
@@ -8948,11 +8948,11 @@ msgstr "celodenní"
 
 #: src/Model/Event.php:391
 msgid "Jun"
-msgstr "Ä\8cvn"
+msgstr "Ä\8dvn"
 
 #: src/Model/Event.php:394
 msgid "Sept"
-msgstr "Září"
+msgstr "září"
 
 #: src/Model/Event.php:417
 msgid "No events to display"
index 034e7fe037068edb3955f3837d1e1521b29b11d2..01c74c0f8e3581db7577fde426932cf19a62d0d7 100644 (file)
@@ -14,7 +14,7 @@ $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "Uživateli %1\$s se nelíbí
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s se účastní %3\$s uživatele %2\$s";
 $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s se neúčastní %3\$s uživatele %2\$s";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s se možná účastní %3\$s uživatele %2\$s";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s uživatelem %2\$s";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s se nyní přátelí s uživatelem %2\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul/a uživatele %2\$s";
 $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označil/a %3\$s uživatele %2\$s jako %4\$s";
 $a->strings["post/item"] = "příspěvek/položka";
@@ -39,7 +39,7 @@ $a->strings["View in context"] = "Zobrazit v kontextu";
 $a->strings["Please wait"] = "Čekejte prosím";
 $a->strings["remove"] = "odstranit";
 $a->strings["Delete Selected Items"] = "Smazat vybrané položky";
-$a->strings["Follow Thread"] = "Následovat vlákno";
+$a->strings["Follow Thread"] = "Sledovat vlákno";
 $a->strings["View Status"] = "Zobrazit stav";
 $a->strings["View Profile"] = "Zobrazit profil";
 $a->strings["View Photos"] = "Zobrazit fotky";
@@ -252,35 +252,35 @@ $a->strings["Thursday"] = "čtvrtek";
 $a->strings["Friday"] = "pátek";
 $a->strings["Saturday"] = "sobota";
 $a->strings["Sunday"] = "neděle";
-$a->strings["January"] = "ledna";
-$a->strings["February"] = "února";
-$a->strings["March"] = "března";
-$a->strings["April"] = "dubna";
-$a->strings["May"] = "května";
-$a->strings["June"] = "června";
-$a->strings["July"] = "července";
-$a->strings["August"] = "srpna";
+$a->strings["January"] = "leden";
+$a->strings["February"] = "únor";
+$a->strings["March"] = "březen";
+$a->strings["April"] = "duben";
+$a->strings["May"] = "květen";
+$a->strings["June"] = "červen";
+$a->strings["July"] = "červenec";
+$a->strings["August"] = "srpen";
 $a->strings["September"] = "září";
-$a->strings["October"] = "října";
-$a->strings["November"] = "listopadu";
-$a->strings["December"] = "prosince";
-$a->strings["Mon"] = "Pon";
-$a->strings["Tue"] = "Ã\9ate";
-$a->strings["Wed"] = "Stř";
-$a->strings["Thu"] = "Ä\8ctv";
-$a->strings["Fri"] = "Pát";
-$a->strings["Sat"] = "Sob";
-$a->strings["Sun"] = "Ned";
-$a->strings["Jan"] = "Led";
-$a->strings["Feb"] = "Ã\9ano";
-$a->strings["Mar"] = "Bře";
-$a->strings["Apr"] = "Dub";
-$a->strings["Jul"] = "Ä\8cvc";
-$a->strings["Aug"] = "Srp";
-$a->strings["Sep"] = "Zář";
-$a->strings["Oct"] = "Å\98íj";
-$a->strings["Nov"] = "Lis";
-$a->strings["Dec"] = "Pro";
+$a->strings["October"] = "říjen";
+$a->strings["November"] = "listopad";
+$a->strings["December"] = "prosinec";
+$a->strings["Mon"] = "pon";
+$a->strings["Tue"] = "úte";
+$a->strings["Wed"] = "stř";
+$a->strings["Thu"] = "Ä\8dtv";
+$a->strings["Fri"] = "pát";
+$a->strings["Sat"] = "sob";
+$a->strings["Sun"] = "ned";
+$a->strings["Jan"] = "led";
+$a->strings["Feb"] = "úno";
+$a->strings["Mar"] = "bře";
+$a->strings["Apr"] = "dub";
+$a->strings["Jul"] = "Ä\8dvc";
+$a->strings["Aug"] = "srp";
+$a->strings["Sep"] = "zář";
+$a->strings["Oct"] = "Å\99íj";
+$a->strings["Nov"] = "lis";
+$a->strings["Dec"] = "pro";
 $a->strings["Content warning: %s"] = "Varování o obsahu: %s";
 $a->strings["View Video"] = "Zobrazit video";
 $a->strings["bytes"] = "bytů";
@@ -302,7 +302,7 @@ $a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do
 $a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
 $a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
 $a->strings["No"] = "Ne";
-$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
+$a->strings["You must be logged in to use addons. "] = "Pro použití doplňků musíte být přihlášen/a.";
 $a->strings["Applications"] = "Aplikace";
 $a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
 $a->strings["Item not available."] = "Položka není k dispozici.";
@@ -485,13 +485,13 @@ $a->strings["Name"] = "Jméno";
 $a->strings["Account Nickname"] = "Přezdívka účtu";
 $a->strings["@Tagname - overrides Name/Nickname"] = "@jménoštítku- upřednostněno před jménem/přezdívkou";
 $a->strings["Account URL"] = "URL adresa účtu";
-$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
+$a->strings["Friend Request URL"] = "URL žádosti o přátelství";
 $a->strings["Friend Confirm URL"] = "URL adresa pro potvrzení přátelství";
 $a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
 $a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
 $a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
 $a->strings["Profile not found."] = "Profil nenalezen.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát, pokud byl kontakt zažádán oběma osobami a již byl schválen.";
 $a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná.";
 $a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:";
 $a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena.";
@@ -640,7 +640,7 @@ $a->strings["Disconnect/Unfollow"] = "Odpojit/Zrušit sledování";
 $a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
 $a->strings["No contacts."] = "Žádné kontakty.";
 $a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
-$a->strings["Access denied."] = "Přístup odmítnut";
+$a->strings["Access denied."] = "Přístup odmítnut.";
 $a->strings["Community option not available."] = "Možnost komunity není dostupná.";
 $a->strings["Not available."] = "Není k dispozici.";
 $a->strings["Local Community"] = "Lokální komunita";
@@ -1458,8 +1458,8 @@ $a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou st
 $a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
 $a->strings["click here to login"] = "klikněte zde pro přihlášení";
 $a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tVážený/á %1\$s,\n\t\t\t\tVaše heslo se před nedávnem změnilo, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1\$s\n\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\tHeslo:\t\t\t%3\$s\n\n\t\t\tSvé heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu\n\t\t";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tVážený/á %1\$s,\n\t\t\t\tVaše heslo bylo změněno, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1\$s\n\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\tHeslo:\t\t\t%3\$s\n\n\t\t\tToto heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu.\n\t\t";
 $a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
 $a->strings["Personal Notes"] = "Osobní poznámky";
 $a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Nebylo navráceno žádné ID.";
@@ -1468,7 +1468,7 @@ $a->strings["Login failed."] = "Přihlášení se nezdařilo.";
 $a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
 $a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
 $a->strings["{0} requested registration"] = "{0} požaduje registraci";
-$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
+$a->strings["Requested profile is not available."] = "Požadovaný profil není dostupný.";
 $a->strings["%s's timeline"] = "Časová osa %s";
 $a->strings["%s's posts"] = "Příspěvky %s";
 $a->strings["%s's comments"] = "Komentáře uživatele %s";
@@ -1860,7 +1860,7 @@ $a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek u
 $a->strings["%s is attending %s's event"] = "%s se zúčastní události %s";
 $a->strings["%s is not attending %s's event"] = "%s se nezúčastní události %s";
 $a->strings["%s may attend %s's event"] = "%s by se mohl/a zúčastnit události %s";
-$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
+$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s uživatelem %s";
 $a->strings["Friend Suggestion"] = "Návrh přátelství";
 $a->strings["Friend/Connect Request"] = "Žádost o přátelství/spojení";
 $a->strings["New Follower"] = "Nový sledovatel";
@@ -1926,12 +1926,12 @@ $a->strings["Other"] = "Jiné";
 $a->strings["Males"] = "Muži";
 $a->strings["Females"] = "Ženy";
 $a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbička";
+$a->strings["Lesbian"] = "Lesba";
 $a->strings["No Preference"] = "Bez preferencí";
 $a->strings["Bisexual"] = "Bisexuál";
 $a->strings["Autosexual"] = "Autosexuál";
 $a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "panic/panna";
+$a->strings["Virgin"] = "Panic/panna";
 $a->strings["Deviant"] = "Deviant";
 $a->strings["Fetish"] = "Fetišista";
 $a->strings["Oodles"] = "Hodně";
@@ -2080,8 +2080,8 @@ $a->strings["%s: updating %s table."] = "%s: aktualizuji tabulku %s";
 $a->strings["Starts:"] = "Začíná:";
 $a->strings["Finishes:"] = "Končí:";
 $a->strings["all-day"] = "celodenní";
-$a->strings["Jun"] = "Ä\8cvn";
-$a->strings["Sept"] = "Září";
+$a->strings["Jun"] = "Ä\8dvn";
+$a->strings["Sept"] = "září";
 $a->strings["No events to display"] = "Žádné události k zobrazení";
 $a->strings["l, F j"] = "l, j. F";
 $a->strings["Edit event"] = "Editovat událost";
index 9e8f86974f6c9338fe7d3aa30da5c01b6f0f2791..c92417187206c986001328f75859d586db4b4021 100644 (file)
@@ -39,7 +39,7 @@ msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-07-19 06:28+0200\n"
-"PO-Revision-Date: 2018-07-31 17:58+0000\n"
+"PO-Revision-Date: 2018-08-05 16:29+0000\n"
 "Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\n"
 "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -125,14 +125,14 @@ msgstr "Nie lubię tego"
 #: mod/photos.php:1468
 msgid "Attending"
 msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Uczestniczę"
+msgstr[1] "Uczestniczy"
+msgstr[2] "Uczestniczą"
+msgstr[3] "Uczestniczą"
 
 #: include/conversation.php:516 mod/photos.php:1468
 msgid "Not attending"
-msgstr "Nie uczestniczyłem"
+msgstr "Nie uczestniczę"
 
 #: include/conversation.php:516 mod/photos.php:1468
 msgid "Might attend"
@@ -393,7 +393,7 @@ msgstr "Wstaw link do audio"
 
 #: include/conversation.php:1140 mod/editpost.php:106
 msgid "audio link"
-msgstr "Link do nagrania audio"
+msgstr "link do audio"
 
 #: include/conversation.php:1141 mod/editpost.php:107
 msgid "Set your location"
@@ -474,34 +474,34 @@ msgstr "Pokaż wszystkie"
 #: include/conversation.php:1468
 msgid "Like"
 msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Ostatnie polubienie"
+msgstr[1] "Ostatnie polubienia"
+msgstr[2] "Ostatnich polubienień"
+msgstr[3] "Ostatnie polubienia"
 
 #: include/conversation.php:1471
 msgid "Dislike"
 msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Nie lubię"
+msgstr[1] "Nie lubią"
+msgstr[2] "Nie lubią"
+msgstr[3] "Nie lubi"
 
 #: include/conversation.php:1477
 msgid "Not Attending"
 msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Nie uczestniczę"
+msgstr[1] "Nie uczestniczy"
+msgstr[2] "Nie uczestniczą"
+msgstr[3] "Nie uczestniczą"
 
 #: include/conversation.php:1480 src/Content/ContactSelector.php:125
 msgid "Undecided"
 msgid_plural "Undecided"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Niezdecydowany"
+msgstr[1] "Niezdecydowani"
+msgstr[2] "Niezdecydowani"
+msgstr[3] "Niezdecydowani"
 
 #: include/items.php:344 mod/notice.php:22 mod/viewsrc.php:22
 #: mod/admin.php:281 mod/admin.php:1938 mod/admin.php:2186 mod/display.php:70
@@ -561,20 +561,20 @@ msgstr "Pokaż więcej"
 #, php-format
 msgid "Daily posting limit of %d post reached. The post was rejected."
 msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Dzienny limit opublikowanych %d posta. Post został odrzucony."
+msgstr[1] "Dzienny limit opublikowanych %d postów. Post został odrzucony."
+msgstr[2] "Dzienny limit opublikowanych %d postów. Post został odrzucony."
+msgstr[3] "Dzienny limit opublikowanych %d postów. Post został odrzucony."
 
 #: include/api.php:1155
 #, php-format
 msgid "Weekly posting limit of %d post reached. The post was rejected."
 msgid_plural ""
 "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Tygodniowy limit wysyłania %d posta. Post został odrzucony."
+msgstr[1] "Tygodniowy limit wysyłania %d postów. Post został odrzucony."
+msgstr[2] "Tygodniowy limit wysyłania %d postów. Post został odrzucony."
+msgstr[3] "Tygodniowy limit wysyłania %d postów. Post został odrzucony."
 
 #: include/api.php:1169
 #, php-format
@@ -1558,7 +1558,7 @@ msgstr "Potwierdź"
 
 #: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:817
 msgid "l F d, Y \\@ g:i A"
-msgstr ""
+msgstr "l F d, Y \\@ g:i A"
 
 #: mod/localtime.php:33
 msgid "Time Conversion"
@@ -2840,10 +2840,10 @@ msgstr "Sieć:"
 #, php-format
 msgid "%d contact edited."
 msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "%d edytuj kontakty."
+msgstr[1] "%d edytuj kontakty."
+msgstr[2] "%dedytuj kontakty. "
+msgstr[3] "%dedytuj kontakty. "
 
 #: mod/contacts.php:184 mod/contacts.php:400
 msgid "Could not access contact record."
@@ -3420,10 +3420,10 @@ msgid ""
 msgid_plural ""
 "Warning: This group contains %s members from a network that doesn't allow "
 "non public messages."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Ostrzeżenie: Ta grupa zawiera %s członka z sieci, która nie dopuszcza wiadomości niepublicznych."
+msgstr[1] "Ostrzeżenie: Ta grupa zawiera %s członków z sieci, która nie dopuszcza wiadomości niepublicznych."
+msgstr[2] "Ostrzeżenie: Ta grupa zawiera %s członków z sieci, która nie dopuszcza wiadomości niepublicznych."
+msgstr[3] "Ostrzeżenie: Ta grupa zawiera %s członków z sieci, która nie dopuszcza wiadomości niepublicznych."
 
 #: mod/network.php:547
 msgid "Messages in this group won't be send to these receivers."
@@ -4132,10 +4132,10 @@ msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)"
 #, php-format
 msgid "%s contact unblocked"
 msgid_plural "%s contacts unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "%s kontakt odblokowany"
+msgstr[1] "%s kontakty odblokowane"
+msgstr[2] "%s kontaktów odblokowanych"
+msgstr[3] "%s kontaktów odblokowanych"
 
 #: mod/admin.php:487
 msgid "Remote Contact Blocklist"
@@ -4179,10 +4179,10 @@ msgstr "Zdjęcie"
 #, php-format
 msgid "%s total blocked contact"
 msgid_plural "%s total blocked contacts"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "%s całkowicie zablokowany kontakt "
+msgstr[1] "%s całkowicie zablokowany kontakt"
+msgstr[2] "%s całkowicie zablokowane kontakty "
+msgstr[3] "%s całkowicie zablokowane kontakty"
 
 #: mod/admin.php:508
 msgid "URL of the remote contact to block."
@@ -5435,10 +5435,10 @@ msgstr "Szczegóły rejestracji dla %s"
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "%s użytkownik zablokowany/odblokowany"
+msgstr[1] "%s użytkowników zablokowanych/odblokowanych"
+msgstr[2] "%sużytkowników zablokowanych/odblokowanych "
+msgstr[3] "%sużytkowników zablokowanych/odblokowanych "
 
 #: mod/admin.php:1698
 #, php-format
@@ -8778,10 +8778,10 @@ msgstr "Kategorie"
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "%dwspólny kontakt "
+msgstr[1] "%dwspólny kontakt"
+msgstr[2] "%dwspólne kontakty "
+msgstr[3] "%dwspólnych kontaktów"
 
 #: src/Content/Nav.php:53
 msgid "Nothing new here"
@@ -9157,7 +9157,7 @@ msgstr "g A I F d"
 
 #: src/Model/Profile.php:549
 msgid "F d"
-msgstr ""
+msgstr "F d"
 
 #: src/Model/Profile.php:602 src/Model/Profile.php:699
 msgid "[today]"
index 64ab222664af9e995b554aee8584a0470cccc124..c27ed70cb9d2d92cfb5cc33e20fd838ee30b7285 100644 (file)
@@ -22,12 +22,12 @@ $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s oznacz %2\$s's %3
 $a->strings["Likes"] = "Lubię to";
 $a->strings["Dislikes"] = "Nie lubię tego";
 $a->strings["Attending"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Uczestniczę",
+       1 => "Uczestniczy",
+       2 => "Uczestniczą",
+       3 => "Uczestniczą",
 ];
-$a->strings["Not attending"] = "Nie uczestniczyłem";
+$a->strings["Not attending"] = "Nie uczestniczę";
 $a->strings["Might attend"] = "Może wziąć udział";
 $a->strings["Select"] = "Wybierz";
 $a->strings["Delete"] = "Usuń";
@@ -84,7 +84,7 @@ $a->strings["web link"] = "Adres www";
 $a->strings["Insert video link"] = "Wstaw link do filmu";
 $a->strings["video link"] = "link do filmu";
 $a->strings["Insert audio link"] = "Wstaw link do audio";
-$a->strings["audio link"] = "Link do nagrania audio";
+$a->strings["audio link"] = "link do audio";
 $a->strings["Set your location"] = "Ustaw swoją lokalizację";
 $a->strings["set location"] = "wybierz lokalizację";
 $a->strings["Clear browser location"] = "Wyczyść lokalizację przeglądarki";
@@ -103,28 +103,28 @@ $a->strings["Message"] = "Wiadomość";
 $a->strings["Browser"] = "Przeglądarka";
 $a->strings["View all"] = "Pokaż wszystkie";
 $a->strings["Like"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Ostatnie polubienie",
+       1 => "Ostatnie polubienia",
+       2 => "Ostatnich polubienień",
+       3 => "Ostatnie polubienia",
 ];
 $a->strings["Dislike"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Nie lubię",
+       1 => "Nie lubią",
+       2 => "Nie lubią",
+       3 => "Nie lubi",
 ];
 $a->strings["Not Attending"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Nie uczestniczę",
+       1 => "Nie uczestniczy",
+       2 => "Nie uczestniczą",
+       3 => "Nie uczestniczą",
 ];
 $a->strings["Undecided"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Niezdecydowany",
+       1 => "Niezdecydowani",
+       2 => "Niezdecydowani",
+       3 => "Niezdecydowani",
 ];
 $a->strings["Item not found."] = "Element nie znaleziony.";
 $a->strings["Do you really want to delete this item?"] = "Czy na pewno chcesz usunąć ten element?";
@@ -133,16 +133,16 @@ $a->strings["Permission denied."] = "Brak uprawnień.";
 $a->strings["Archives"] = "Archiwum";
 $a->strings["show more"] = "Pokaż więcej";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Dzienny limit opublikowanych %d posta. Post został odrzucony.",
+       1 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.",
+       2 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.",
+       3 => "Dzienny limit opublikowanych %d postów. Post został odrzucony.",
 ];
 $a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Tygodniowy limit wysyłania %d posta. Post został odrzucony.",
+       1 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.",
+       2 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.",
+       3 => "Tygodniowy limit wysyłania %d postów. Post został odrzucony.",
 ];
 $a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Miesięczny limit %d wysyłania postów. Post został odrzucony.";
 $a->strings["Profile Photos"] = "Zdjęcie profilowe";
@@ -360,7 +360,7 @@ $a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lu
 $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"";
 $a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:";
 $a->strings["Submit"] = "Potwierdź";
-$a->strings["l F d, Y \\@ g:i A"] = "";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
 $a->strings["Time Conversion"] = "Zmiana czasu";
 $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych.";
 $a->strings["UTC time: %s"] = "Czas UTC %s";
@@ -662,10 +662,10 @@ $a->strings["Find"] = "Znajdź";
 $a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
 $a->strings["Network:"] = "Sieć:";
 $a->strings["%d contact edited."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "%d edytuj kontakty.",
+       1 => "%d edytuj kontakty.",
+       2 => "%dedytuj kontakty. ",
+       3 => "%dedytuj kontakty. ",
 ];
 $a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
 $a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
@@ -806,10 +806,10 @@ $a->strings["Remove term"] = "Usuń wpis";
 $a->strings["Saved Searches"] = "Zapisywanie wyszukiwania";
 $a->strings["add"] = "dodaj";
 $a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "Ostrzeżenie: Ta grupa zawiera %s członka z sieci, która nie dopuszcza wiadomości niepublicznych.",
+       1 => "Ostrzeżenie: Ta grupa zawiera %s członków z sieci, która nie dopuszcza wiadomości niepublicznych.",
+       2 => "Ostrzeżenie: Ta grupa zawiera %s członków z sieci, która nie dopuszcza wiadomości niepublicznych.",
+       3 => "Ostrzeżenie: Ta grupa zawiera %s członków z sieci, która nie dopuszcza wiadomości niepublicznych.",
 ];
 $a->strings["Messages in this group won't be send to these receivers."] = "Wiadomości z tej grupy nie będą wysyłane do tych odbiorców.";
 $a->strings["No such group"] = "Nie ma takiej grupy";
@@ -976,10 +976,10 @@ $a->strings["Site blocklist updated."] = "Zaktualizowano listę bloków witryny.
 $a->strings["The contact has been blocked from the node"] = "Kontakt został zablokowany w węźle";
 $a->strings["Could not find any contact entry for this URL (%s)"] = "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)";
 $a->strings["%s contact unblocked"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "%s kontakt odblokowany",
+       1 => "%s kontakty odblokowane",
+       2 => "%s kontaktów odblokowanych",
+       3 => "%s kontaktów odblokowanych",
 ];
 $a->strings["Remote Contact Blocklist"] = "Lista zablokowanych kontaktów zdalnych";
 $a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego.";
@@ -991,10 +991,10 @@ $a->strings["Blocked Remote Contacts"] = "Zablokowane kontakty zdalne";
 $a->strings["Block New Remote Contact"] = "Zablokuj nowy kontakt zdalny";
 $a->strings["Photo"] = "Zdjęcie";
 $a->strings["%s total blocked contact"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "%s całkowicie zablokowany kontakt ",
+       1 => "%s całkowicie zablokowany kontakt",
+       2 => "%s całkowicie zablokowane kontakty ",
+       3 => "%s całkowicie zablokowane kontakty",
 ];
 $a->strings["URL of the remote contact to block."] = "Adres URL kontaktu zdalnego do zablokowania.";
 $a->strings["Delete this Item"] = "Usuń ten przedmiot";
@@ -1252,10 +1252,10 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up
 $a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tDane logowania są następuje:\n\t\t\tLokalizacja witryny:\t%1\$s\n\t\t\tNazwa użytkownika:%2\$s\n\t\t\tHasło:%3\$s\n\n\t\t\tPo zalogowaniu możesz zmienić hasło do swojego konta na stronie \"Ustawienia\"\n \t\t\tProszę poświęć chwilę, aby przejrzeć inne ustawienia konta na tej stronie.\n\n\t\t\tMożesz również dodać podstawowe informacje do swojego domyślnego profilu\n\t\t\t(na stronie \"Profil\"), aby inne osoby mogły łatwo Cię znaleźć.\n\n\t\t\tZalecamy ustawienie imienia i nazwiska, dodanie zdjęcia profilowego,\n\t\t\tdodanie niektórych \"słów kluczowych\" profilu (bardzo przydatne w nawiązywaniu nowych znajomości) - i\n\t\t\tbyć może w jakim kraju mieszkasz; jeśli nie chcesz być bardziej szczegółowy.\n\n\t\t\tW pełni szanujemy Twoje prawo do prywatności i żaden z tych elementów nie jest konieczny.\n\t\t\tJeśli jesteś nowy i nie znasz tutaj nikogo, oni mogą ci pomóc\n\t\t\tmożesz zdobyć nowych interesujących przyjaciół\n\n\t\t\tJeśli kiedykolwiek zechcesz usunąć swoje konto, możesz to zrobić w %1\$s/Usuń konto\n\n\t\t\tDziękujemy i Zapraszamy do%4\$s";
 $a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s";
 $a->strings["%s user blocked/unblocked"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "%s użytkownik zablokowany/odblokowany",
+       1 => "%s użytkowników zablokowanych/odblokowanych",
+       2 => "%sużytkowników zablokowanych/odblokowanych ",
+       3 => "%sużytkowników zablokowanych/odblokowanych ",
 ];
 $a->strings["%s user deleted"] = [
        0 => " %s użytkownik usunięty",
@@ -2032,10 +2032,10 @@ $a->strings["All Networks"] = "Wszystkie Sieci";
 $a->strings["Everything"] = "Wszystko";
 $a->strings["Categories"] = "Kategorie";
 $a->strings["%d contact in common"] = [
-       0 => "",
-       1 => "",
-       2 => "",
-       3 => "",
+       0 => "%dwspólny kontakt ",
+       1 => "%dwspólny kontakt",
+       2 => "%dwspólne kontakty ",
+       3 => "%dwspólnych kontaktów",
 ];
 $a->strings["Nothing new here"] = "Brak nowych zdarzeń";
 $a->strings["Clear notifications"] = "Wyczyść powiadomienia";
@@ -2122,7 +2122,7 @@ $a->strings["Edit profile"] = "Edytuj profil";
 $a->strings["Atom feed"] = "Kanał Atom";
 $a->strings["Manage/edit profiles"] = "Zarządzaj profilami";
 $a->strings["g A l F d"] = "g A I F d";
-$a->strings["F d"] = "";
+$a->strings["F d"] = "F d";
 $a->strings["[today]"] = "[dziś]";
 $a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach";
 $a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:";
index e7e294434ec1650b2c9bb026c1aaf5657e5e6b67..f445190a8cc81f80e60e0d6a133b6ad1b1b69dd5 100644 (file)
                                <ul class="nav navbar-nav navbar-left" role="menubar">
                                        <li id="nav-communication" class="nav-segment" role="presentation">
                                                {{if $nav.network}}
-                                               <a role="menuitem" class="nav-menu {{$sel.network}}" href="{{$nav.network.0}}" data-toggle="tooltip" aria-label="{{$nav.network.3}}" title="{{$nav.network.3}}"><i class="fa fa-lg fa-th" aria-hidden="true"></i><span id="net-update" class="nav-network-badge badge nav-notify"></span></a>
+                                               <a accesskey="n"role="menuitem" class="nav-menu {{$sel.network}}" href="{{$nav.network.0}}" data-toggle="tooltip" aria-label="{{$nav.network.3}}" title="{{$nav.network.3}}"><i class="fa fa-lg fa-th" aria-hidden="true"></i><span id="net-update" class="nav-network-badge badge nav-notify"></span></a>
                                                {{/if}}
 
                                                {{if $nav.home}}
-                                               <a role="menuitem" class="nav-menu {{$sel.home}}" href="{{$nav.home.0}}" data-toggle="tooltip" aria-label="{{$nav.home.3}}" title="{{$nav.home.3}}"><i class="fa fa-lg fa-home" aria-hidden="true"></i><span id="home-update" class="nav-home-badge badge nav-notify"></span></a>
+                                               <a accesskey="p" role="menuitem" class="nav-menu {{$sel.home}}" href="{{$nav.home.0}}" data-toggle="tooltip" aria-label="{{$nav.home.3}}" title="{{$nav.home.3}}"><i class="fa fa-lg fa-home" aria-hidden="true"></i><span id="home-update" class="nav-home-badge badge nav-notify"></span></a>
                                                {{/if}}
 
                                                {{if $nav.community}}
-                                               <a role="menuitem" class="nav-menu {{$sel.community}}" href="{{$nav.community.0}}" data-toggle="tooltip" aria-label="{{$nav.community.3}}" title="{{$nav.community.3}}"><i class="fa fa-lg fa-bullseye" aria-hidden="true"></i></a>
+                                               <a accesskey="c" role="menuitem" class="nav-menu {{$sel.community}}" href="{{$nav.community.0}}" data-toggle="tooltip" aria-label="{{$nav.community.3}}" title="{{$nav.community.3}}"><i class="fa fa-lg fa-bullseye" aria-hidden="true"></i></a>
                                                {{/if}}
                                        </li>
 
@@ -58,7 +58,7 @@
                                                {{/if}}
 
                                                {{if $nav.events}}
-                                               <a role="menuitem" id="nav-events-link" href="{{$nav.events.0}}" data-toggle="tooltip" aria-label="{{$nav.events.1}}" title="{{$nav.events.1}}" class="nav-menu"><i class="fa fa-lg fa-calendar"></i></a>
+                                               <a accesskey="e" role="menuitem" id="nav-events-link" href="{{$nav.events.0}}" data-toggle="tooltip" aria-label="{{$nav.events.1}}" title="{{$nav.events.1}}" class="nav-menu"><i class="fa fa-lg fa-calendar"></i></a>
                                                {{/if}}
 
                                                {{if $nav.contacts}}
                                                        <form class="navbar-form" role="search" method="get" action="{{$nav.search.0}}">
                                                                <!-- <img class="hidden-xs" src="{{$nav.userinfo.icon}}" alt="{{$nav.userinfo.name}}" style="max-width:33px; max-height:33px; min-width:33px; min-height:33px; width:33px; height:33px;"> -->
                                                                <div class="form-group form-group-search">
-                                                                       <input id="nav-search-input-field" class="form-control form-search" type="text" name="search" data-toggle="tooltip" title="{{$search_hint}}" placeholder="{{$nav.search.1}}">
+                                                                       <input accesskey="s" id="nav-search-input-field" class="form-control form-search" type="text" name="search" data-toggle="tooltip" title="{{$search_hint}}" placeholder="{{$nav.search.1}}">
                                                                        <button class="btn btn-default btn-sm form-button-search" type="submit">{{$nav.search.1}}</button>
                                                                </div>
                                                        </form>
                                        {{* The user dropdown menu *}}
                                        {{if $nav.userinfo}}
                                        <li id="nav-user-linkmenu" class="dropdown account nav-menu hidden-xs">
-                                               <button id="main-menu" class="btn-link dropdown-toggle nav-avatar" data-toggle="dropdown" type="button" aria-haspopup="true" aria-expanded="false" aria-controls="nav-user-menu">
+                                               <button accesskey="u" id="main-menu" class="btn-link dropdown-toggle nav-avatar" data-toggle="dropdown" type="button" aria-haspopup="true" aria-expanded="false" aria-controls="nav-user-menu">
                                                        <div class="user-title pull-left hidden-xs hidden-sm hidden-md">
                                                                <strong>{{$nav.userinfo.name}}</strong><br>
                                                                {{if $nav.remote}}<span class="trunctate">{{$nav.remote}}</span>{{/if}}
                                                        <li role="presentation"><a role="menuitem" id="nav-settings-link" class="nav-link {{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}"><i class="fa fa-cog fa-fw" aria-hidden="true"></i> {{$nav.settings.1}}</a></li>
                                                        {{/if}}
                                                        {{if $nav.admin}}
-                                                       <li role="presentation"><a role="menuitem" id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" ><i class="fa fa-user-secret fa-fw" aria-hidden="true"></i> {{$nav.admin.1}}</a></li>
+                                                       <li role="presentation"><a accesskey="a" role="menuitem" id="nav-admin-link" class="nav-link {{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" ><i class="fa fa-user-secret fa-fw" aria-hidden="true"></i> {{$nav.admin.1}}</a></li>
                                                        {{/if}}
                                                        {{if $nav.tos}}
                                                        <li role="presentation" class="divider"></li>
index 379510ef138e84b853362d8fa6dd219a24cbf1ea..572be5e18f392f7ce97874eb6a9102cd9085ae6a 100644 (file)
@@ -862,7 +862,7 @@ ul.menu-popup {
        transition:all 0.2s ease-in-out;
        /* display: none; */
        position: absolute;
-       width: 11em;
+       width: 13em;
        background: #ffffff;
        color: #2d2d2d;
        margin: 0px;