]> git.mxchange.org Git - friendica.git/commitdiff
Issue 14294: Fix event parsing
authorMichael <heluecht@pirati.ca>
Fri, 30 Aug 2024 03:33:29 +0000 (03:33 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 2 Sep 2024 04:11:40 +0000 (04:11 +0000)
src/Content/Text/BBCode.php
src/Model/Event.php
src/Protocol/Diaspora.php
view/lang/C/messages.po

index 003f7ab4028bc442483fdc1faa4b611a84a86652..74ccca5cefbc8ae3558f4e15900393d5f507da0a 100644 (file)
@@ -1306,8 +1306,10 @@ class BBCode
 
                Hook::callAll('bbcode', $text);
 
-               $text = self::performWithEscapedTags($text, ['code'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $uriid) {
-                       $text = self::performWithEscapedTags($text, ['noparse', 'nobb', 'pre'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $uriid) {
+               $ev = Event::fromBBCode($text);
+
+               $text = self::performWithEscapedTags($text, ['code'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $uriid, $ev) {
+                       $text = self::performWithEscapedTags($text, ['noparse', 'nobb', 'pre'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $uriid, $ev) {
                                /*
                                 * preg_match_callback function to replace potential Oembed tags with Oembed content
                                 *
@@ -1361,7 +1363,7 @@ class BBCode
                                $text = self::convertQuotesToHtml($text);
                                $text = self::convertVideoPlatformsToHtml($text, $try_oembed);
                                $text = self::convertOEmbedToHtml($text, $uriid);
-                               $text = self::convertEventsToHtml($text, $simple_html, $uriid);
+                               $text = self::convertEventsToHtml($text, $simple_html, $uriid, $ev);
 
                                // Some simpler non standard elements
                                $text = self::convertEmojisToHtml($text, $simple_html);
@@ -1510,14 +1512,12 @@ class BBCode
                return $text;
        }
 
-       private static function convertEventsToHtml(string $text, int $simple_html, int $uriid): string
+       private static function convertEventsToHtml(string $text, int $simple_html, int $uriid, array $ev): string
        {
                // If we find any event code, turn it into an event.
                // After we're finished processing the bbcode we'll
                // replace all of the event code with a reformatted version.
 
-               $ev = Event::fromBBCode($text);
-
                // If we found an event earlier, strip out all the event code and replace with a reformatted version.
                // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
                // Summary (e.g. title) is required, earlier revisions only required description (in addition to
index af9128530fa54d6ac6fd2b3aeace5416f7025bc7..7c68588b43530dcdaab7bf343ab2c5871f966bbb 100644 (file)
@@ -51,11 +51,11 @@ class Event
                        $o = '';
 
                        if (!empty($event['summary'])) {
-                               $o .= "<h3>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['summary']), $simple) . "</h3>";
+                               $o .= "<h3>" . strip_tags(BBCode::convertForUriId($uriid, $event['summary'], $simple)) . "</h3>";
                        }
 
                        if (!empty($event['desc'])) {
-                               $o .= "<div>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['desc']), $simple) . "</div>";
+                               $o .= "<div>" . BBCode::convertForUriId($uriid, $event['desc'], $simple) . "</div>";
                        }
 
                        $o .= "<h4>" . DI::l10n()->t('Starts:') . "</h4><p>" . $event_start . "</p>";
@@ -65,7 +65,7 @@ class Event
                        }
 
                        if (!empty($event['location'])) {
-                               $o .= "<h4>" . DI::l10n()->t('Location:') . "</h4><p>" . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['location']), $simple) . "</p>";
+                               $o .= "<h4>" . DI::l10n()->t('Location:') . "</h4><p>" . strip_tags(BBCode::convertForUriId($uriid, $event['location'], $simple)) . "</p>";
                        }
 
                        return $o;
@@ -73,7 +73,7 @@ class Event
 
                $o = '<div class="vevent">' . "\r\n";
 
-               $o .= '<div class="summary event-summary">' . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['summary']), $simple) . '</div>' . "\r\n";
+               $o .= '<div class="summary event-summary">' . BBCode::convertForUriId($uriid, $event['summary'], $simple) . '</div>' . "\r\n";
 
                $o .= '<div class="event-start"><span class="event-label">' . DI::l10n()->t('Starts:') . '</span>&nbsp;<span class="dtstart" title="'
                        . DateTimeFormat::local($event['start'], DateTimeFormat::ATOM)
@@ -88,12 +88,12 @@ class Event
                }
 
                if (!empty($event['desc'])) {
-                       $o .= '<div class="description event-description">' . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['desc']), $simple) . '</div>' . "\r\n";
+                       $o .= '<div class="description event-description">' . BBCode::convertForUriId($uriid, $event['desc'], $simple) . '</div>' . "\r\n";
                }
 
                if (!empty($event['location'])) {
                        $o .= '<div class="event-location"><span class="event-label">' . DI::l10n()->t('Location:') . '</span>&nbsp;<span class="location">'
-                               . BBCode::convertForUriId($uriid, Strings::escapeHtml($event['location']), $simple)
+                               . strip_tags(BBCode::convertForUriId($uriid, $event['location'], $simple))
                                . '</span></div>' . "\r\n";
 
                        // Include a map of the location if the [map] BBCode is used.
@@ -652,7 +652,7 @@ class Event
                        $drop =                  ['calendar/api/delete/' . $event['id'], DI::l10n()->t('Delete event'), '', ''];
                }
 
-               $title = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary']));
+               $title = strip_tags(BBCode::convertForUriId($event['uri-id'], $event['summary']));
                if (!$title) {
                        [$title, $_trash] = explode("<br", BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc'])), BBCode::TWITTER_API);
                }
index f449ed01872a3835da9938ec7dfb1c7b4d8851d7..94fec1b00dc04e103900d11340132d70eee46932 100644 (file)
@@ -3349,22 +3349,22 @@ class Diaspora
                                }
                        }
 
-                       // convert to markdown
-                       $body = html_entity_decode(BBCode::toMarkdown($body));
-
-                       // Adding the title
-                       if (strlen($title)) {
-                               $body = '### ' . html_entity_decode($title) . "\n\n" . $body;
-                       }
-
                        $attachments = Post\Media::getByURIId($item['uri-id'], [Post\Media::DOCUMENT, Post\Media::TORRENT]);
                        if (!empty($attachments)) {
                                $body .= "\n[hr]\n";
                                foreach ($attachments as $attachment) {
-                                       $body .= "[" . $attachment['description'] . "](" . $attachment['url'] . ")\n";
+                                       $body .= "[url=" . $attachment['url'] . "]" . $attachment['description'] . "[/url]\n";
                                }
                        }
 
+                       // convert to markdown
+                       $body = BBCode::toMarkdown($body);
+
+                       // Adding the title
+                       if (strlen($title)) {
+                               $body = '### ' . html_entity_decode($title) . "\n\n" . $body;
+                       }
+
                        $location = [];
 
                        if ($item['location'] != '')
index ea0e9679ab68671b985c057e521f18f17a65e321..6cfafcbcd23274227164b02558c6a19d81fe0747 100644 (file)
@@ -1,7 +1,6 @@
 # FRIENDICA Distributed Social Network
-# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project
-#
-# SPDX-License-Identifier: AGPL-3.0-or-later
+# Copyright (C) 2010-2024, the Friendica project
+# This file is distributed under the same license as the Friendica package.
 # Mike Macgirvin, 2010
 #
 #, fuzzy
@@ -9,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 2024.09-dev\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-08-24 10:20+0000\n"
+"POT-Creation-Date: 2024-08-30 05:35+0000\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"
@@ -19,77 +18,77 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174
+#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162
 msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/item.php:139
+#: mod/item.php:127
 msgid "Post updated."
 msgstr ""
 
-#: mod/item.php:204 mod/item.php:208
+#: mod/item.php:192 mod/item.php:196
 msgid "Item wasn't stored."
 msgstr ""
 
-#: mod/item.php:218
+#: mod/item.php:206
 msgid "Item couldn't be fetched."
 msgstr ""
 
-#: mod/item.php:262 mod/item.php:266
+#: mod/item.php:250 mod/item.php:254
 msgid "Empty post discarded."
 msgstr ""
 
-#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45
-#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42
-#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80
+#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31
+#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28
+#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66
 msgid "Item not found."
 msgstr ""
 
-#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45
-#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520
-#: src/Module/Attach.php:55 src/Module/BaseApi.php:103
-#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50
-#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84
-#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82
-#: src/Module/Circle.php:41 src/Module/Circle.php:84
-#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87
-#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87
-#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66
-#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112
-#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57
-#: src/Module/Invite.php:42 src/Module/Invite.php:131
-#: src/Module/Notifications/Notification.php:76
-#: src/Module/Notifications/Notification.php:107
-#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68
-#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75
-#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92
-#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56
-#: src/Module/Register.php:84 src/Module/Register.php:97
-#: src/Module/Register.php:213 src/Module/Register.php:252
-#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50
-#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66
-#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90
-#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197
-#: src/Module/Settings/Profile/Photo/Crop.php:165
-#: src/Module/Settings/Profile/Photo/Index.php:110
-#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78
-#: src/Module/Settings/UserExport.php:114
-#: src/Module/Settings/UserExport.php:213
-#: src/Module/Settings/UserExport.php:233
-#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154
-#: src/Module/User/Import.php:85 src/Module/User/Import.php:92
+#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33
+#: mod/photos.php:135 mod/photos.php:651 src/Model/Event.php:506
+#: src/Module/Attach.php:41 src/Module/BaseApi.php:89
+#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36
+#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70
+#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68
+#: src/Module/Circle.php:27 src/Module/Circle.php:70
+#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73
+#: src/Module/Contact/Follow.php:146 src/Module/Contact/MatchInterests.php:73
+#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52
+#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98
+#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43
+#: src/Module/Invite.php:28 src/Module/Invite.php:117
+#: src/Module/Notifications/Notification.php:62
+#: src/Module/Notifications/Notification.php:93
+#: src/Module/OStatus/Repair.php:46 src/Module/OStatus/Subscribe.php:54
+#: src/Module/Post/Edit.php:62 src/Module/Profile/Common.php:61
+#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Photos.php:78
+#: src/Module/Profile/Schedule.php:25 src/Module/Profile/Schedule.php:42
+#: src/Module/Register.php:70 src/Module/Register.php:83
+#: src/Module/Register.php:199 src/Module/Register.php:238
+#: src/Module/Search/Directory.php:23 src/Module/Settings/Account.php:36
+#: src/Module/Settings/Account.php:377 src/Module/Settings/Channels.php:52
+#: src/Module/Settings/Channels.php:127 src/Module/Settings/Delegation.php:76
+#: src/Module/Settings/Display.php:76 src/Module/Settings/Display.php:183
+#: src/Module/Settings/Profile/Photo/Crop.php:151
+#: src/Module/Settings/Profile/Photo/Index.php:96
+#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64
+#: src/Module/Settings/UserExport.php:100
+#: src/Module/Settings/UserExport.php:199
+#: src/Module/Settings/UserExport.php:219
+#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140
+#: src/Module/User/Import.php:71 src/Module/User/Import.php:78
 msgid "Permission denied."
 msgstr ""
 
-#: mod/lostpass.php:40
+#: mod/lostpass.php:28
 msgid "No valid account found."
 msgstr ""
 
-#: mod/lostpass.php:52
+#: mod/lostpass.php:40
 msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/lostpass.php:58
+#: mod/lostpass.php:46
 #, php-format
 msgid ""
 "\n"
@@ -105,7 +104,7 @@ msgid ""
 "\t\tissued this request."
 msgstr ""
 
-#: mod/lostpass.php:69
+#: mod/lostpass.php:57
 #, php-format
 msgid ""
 "\n"
@@ -122,64 +121,64 @@ msgid ""
 "\t\tLogin Name:\t%3$s"
 msgstr ""
 
-#: mod/lostpass.php:84
+#: mod/lostpass.php:72
 #, php-format
 msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/lostpass.php:100
+#: mod/lostpass.php:88
 msgid "Request could not be verified. (You may have previously submitted it.) Password reset failed."
 msgstr ""
 
-#: mod/lostpass.php:113
+#: mod/lostpass.php:101
 msgid "Request has expired, please make a new one."
 msgstr ""
 
-#: mod/lostpass.php:128
+#: mod/lostpass.php:116
 msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/lostpass.php:129
+#: mod/lostpass.php:117
 msgid "Enter your email address and submit to have your password reset. Then check your email for further instructions."
 msgstr ""
 
-#: mod/lostpass.php:130 src/Module/Security/Login.php:164
+#: mod/lostpass.php:118 src/Module/Security/Login.php:150
 msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/lostpass.php:131
+#: mod/lostpass.php:119
 msgid "Reset"
 msgstr ""
 
-#: mod/lostpass.php:146 src/Module/Security/Login.php:176
+#: mod/lostpass.php:134 src/Module/Security/Login.php:162
 msgid "Password Reset"
 msgstr ""
 
-#: mod/lostpass.php:147
+#: mod/lostpass.php:135
 msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/lostpass.php:148
+#: mod/lostpass.php:136
 msgid "Your new password is"
 msgstr ""
 
-#: mod/lostpass.php:149
+#: mod/lostpass.php:137
 msgid "Save or copy your new password - and then"
 msgstr ""
 
-#: mod/lostpass.php:150
+#: mod/lostpass.php:138
 msgid "click here to login"
 msgstr ""
 
-#: mod/lostpass.php:151
+#: mod/lostpass.php:139
 msgid "Your password may be changed from the <em>Settings</em> page after successful login."
 msgstr ""
 
-#: mod/lostpass.php:155
+#: mod/lostpass.php:143
 msgid "Your password has been reset."
 msgstr ""
 
-#: mod/lostpass.php:158
+#: mod/lostpass.php:146
 #, php-format
 msgid ""
 "\n"
@@ -190,7 +189,7 @@ msgid ""
 "\t\t"
 msgstr ""
 
-#: mod/lostpass.php:164
+#: mod/lostpass.php:152
 #, php-format
 msgid ""
 "\n"
@@ -204,2862 +203,2862 @@ msgid ""
 "\t\t"
 msgstr ""
 
-#: mod/lostpass.php:176
+#: mod/lostpass.php:164
 #, php-format
 msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321
+#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307
 msgid "New Message"
 msgstr ""
 
-#: mod/message.php:81
+#: mod/message.php:69
 msgid "No recipient selected."
 msgstr ""
 
-#: mod/message.php:86
+#: mod/message.php:74
 msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/message.php:90
+#: mod/message.php:78
 msgid "Message could not be sent."
 msgstr ""
 
-#: mod/message.php:94
+#: mod/message.php:82
 msgid "Message collection failure."
 msgstr ""
 
-#: mod/message.php:121 src/Module/Notifications/Introductions.php:141
-#: src/Module/Notifications/Introductions.php:176
-#: src/Module/Notifications/Notification.php:85
+#: mod/message.php:109 src/Module/Notifications/Introductions.php:127
+#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Notification.php:71
 msgid "Discard"
 msgstr ""
 
-#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244
+#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232
 msgid "Messages"
 msgstr ""
 
-#: mod/message.php:147
+#: mod/message.php:135
 msgid "Conversation not found."
 msgstr ""
 
-#: mod/message.php:152
+#: mod/message.php:140
 msgid "Message was not deleted."
 msgstr ""
 
-#: mod/message.php:167
+#: mod/message.php:155
 msgid "Conversation was not removed."
 msgstr ""
 
-#: mod/message.php:180 mod/message.php:285
+#: mod/message.php:168 mod/message.php:273
 msgid "Please enter a link URL:"
 msgstr ""
 
-#: mod/message.php:189
+#: mod/message.php:177
 msgid "Send Private Message"
 msgstr ""
 
-#: mod/message.php:190 mod/message.php:345
-#: src/Module/Privacy/PermissionTooltip.php:132
+#: mod/message.php:178 mod/message.php:333
+#: src/Module/Privacy/PermissionTooltip.php:118
 msgid "To:"
 msgstr ""
 
-#: mod/message.php:191 mod/message.php:346
+#: mod/message.php:179 mod/message.php:334
 msgid "Subject:"
 msgstr ""
 
-#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171
+#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157
 msgid "Your message:"
 msgstr ""
 
-#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369
-#: src/Module/Post/Edit.php:131
+#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355
+#: src/Module/Post/Edit.php:117
 msgid "Upload photo"
 msgstr ""
 
-#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135
+#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121
 msgid "Insert web link"
 msgstr ""
 
-#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291
-#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576
-#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145
-#: src/Object/Post.php:618
+#: mod/message.php:188 mod/message.php:344 mod/photos.php:1279
+#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562
+#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131
+#: src/Object/Post.php:604
 msgid "Please wait"
 msgstr ""
 
-#: mod/message.php:201 mod/message.php:355 mod/photos.php:694
-#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132
-#: mod/photos.php:1188 mod/photos.php:1268
-#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132
-#: src/Module/Contact/Profile.php:384
-#: src/Module/Debug/ActivityPubConversion.php:146
-#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64
-#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51
-#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234
-#: src/Module/Install.php:274 src/Module/Install.php:309
-#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196
-#: src/Module/Moderation/Item/Source.php:85
-#: src/Module/Moderation/Report/Create.php:168
-#: src/Module/Moderation/Report/Create.php:183
-#: src/Module/Moderation/Report/Create.php:211
-#: src/Module/Moderation/Report/Create.php:263
-#: src/Module/Profile/Profile.php:276 src/Module/Settings/Profile/Index.php:262
-#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189
-#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85
-#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87
-#: view/theme/vier/config.php:135
+#: mod/message.php:189 mod/message.php:343 mod/photos.php:682
+#: mod/photos.php:802 mod/photos.php:1079 mod/photos.php:1120
+#: mod/photos.php:1176 mod/photos.php:1256
+#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118
+#: src/Module/Contact/Profile.php:370
+#: src/Module/Debug/ActivityPubConversion.php:132
+#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37
+#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220
+#: src/Module/Install.php:260 src/Module/Install.php:295
+#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182
+#: src/Module/Moderation/Item/Source.php:71
+#: src/Module/Moderation/Report/Create.php:154
+#: src/Module/Moderation/Report/Create.php:169
+#: src/Module/Moderation/Report/Create.php:197
+#: src/Module/Moderation/Report/Create.php:249
+#: src/Module/Profile/Profile.php:262 src/Module/Settings/Profile/Index.php:248
+#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175
+#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73
+#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75
+#: view/theme/vier/config.php:123
 msgid "Submit"
 msgstr ""
 
-#: mod/message.php:222
+#: mod/message.php:210
 msgid "No messages."
 msgstr ""
 
-#: mod/message.php:278
+#: mod/message.php:266
 msgid "Message not available."
 msgstr ""
 
-#: mod/message.php:322
+#: mod/message.php:310
 msgid "Delete message"
 msgstr ""
 
-#: mod/message.php:324 mod/message.php:453
+#: mod/message.php:312 mod/message.php:441
 msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: mod/message.php:339 mod/message.php:450
+#: mod/message.php:327 mod/message.php:438
 msgid "Delete conversation"
 msgstr ""
 
-#: mod/message.php:341
+#: mod/message.php:329
 msgid "No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."
 msgstr ""
 
-#: mod/message.php:344
+#: mod/message.php:332
 msgid "Send Reply"
 msgstr ""
 
-#: mod/message.php:424
+#: mod/message.php:412
 #, php-format
 msgid "Unknown sender - %s"
 msgstr ""
 
-#: mod/message.php:426
+#: mod/message.php:414
 #, php-format
 msgid "You and %s"
 msgstr ""
 
-#: mod/message.php:428
+#: mod/message.php:416
 #, php-format
 msgid "%s and You"
 msgstr ""
 
-#: mod/message.php:456
+#: mod/message.php:444
 #, php-format
 msgid "%d message"
 msgid_plural "%d messages"
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/notes.php:52 src/Module/BaseProfile.php:108
+#: mod/notes.php:40 src/Module/BaseProfile.php:94
 msgid "Personal Notes"
 msgstr ""
 
-#: mod/notes.php:56
+#: mod/notes.php:44
 msgid "Personal notes are visible only by yourself."
 msgstr ""
 
-#: mod/notes.php:57 src/Content/Text/HTML.php:861
-#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74
-#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229
+#: mod/notes.php:45 src/Content/Text/HTML.php:847
+#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60
+#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215
 msgid "Save"
 msgstr ""
 
-#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573
-#: src/Model/Event.php:512 src/Model/Profile.php:227
-#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74
-#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51
-#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71
-#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72
-#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56
-#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71
-#: src/Module/Register.php:274
+#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:561
+#: src/Model/Event.php:498 src/Model/Profile.php:213
+#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60
+#: src/Module/DFRN/Poll.php:29 src/Module/Feed.php:52 src/Module/HCard.php:37
+#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57
+#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58
+#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42
+#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57
+#: src/Module/Register.php:260
 msgid "User not found."
 msgstr ""
 
-#: mod/photos.php:103 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:375
+#: mod/photos.php:91 src/Module/BaseProfile.php:54
+#: src/Module/Profile/Photos.php:361
 msgid "Photo Albums"
 msgstr ""
 
-#: mod/photos.php:104 src/Module/Profile/Photos.php:376
-#: src/Module/Profile/Photos.php:396
+#: mod/photos.php:92 src/Module/Profile/Photos.php:362
+#: src/Module/Profile/Photos.php:382
 msgid "Recent Photos"
 msgstr ""
 
-#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378
-#: src/Module/Profile/Photos.php:398
+#: mod/photos.php:94 mod/photos.php:850 src/Module/Profile/Photos.php:364
+#: src/Module/Profile/Photos.php:384
 msgid "Upload New Photos"
 msgstr ""
 
-#: mod/photos.php:118 src/Module/BaseSettings.php:72
-#: src/Module/Profile/Photos.php:359
+#: mod/photos.php:106 src/Module/BaseSettings.php:58
+#: src/Module/Profile/Photos.php:345
 msgid "everybody"
 msgstr ""
 
-#: mod/photos.php:154
+#: mod/photos.php:142
 msgid "Contact information unavailable"
 msgstr ""
 
-#: mod/photos.php:183
+#: mod/photos.php:171
 msgid "Album not found."
 msgstr ""
 
-#: mod/photos.php:239
+#: mod/photos.php:227
 msgid "Album successfully deleted"
 msgstr ""
 
-#: mod/photos.php:241
+#: mod/photos.php:229
 msgid "Album was empty."
 msgstr ""
 
-#: mod/photos.php:272
+#: mod/photos.php:260
 msgid "Failed to delete the photo."
 msgstr ""
 
-#: mod/photos.php:540
+#: mod/photos.php:528
 msgid "a photo"
 msgstr ""
 
-#: mod/photos.php:540
+#: mod/photos.php:528
 #, php-format
 msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: mod/photos.php:577 src/Module/Conversation/Community.php:160
-#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293
-#: src/Module/Search/Index.php:65
+#: mod/photos.php:565 src/Module/Conversation/Community.php:148
+#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279
+#: src/Module/Search/Index.php:51
 msgid "Public access denied."
 msgstr ""
 
-#: mod/photos.php:582
+#: mod/photos.php:570
 msgid "No photos selected"
 msgstr ""
 
-#: mod/photos.php:710
+#: mod/photos.php:698
 #, php-format
 msgid "The maximum accepted image size is %s"
 msgstr ""
 
-#: mod/photos.php:717
+#: mod/photos.php:705
 msgid "Upload Photos"
 msgstr ""
 
-#: mod/photos.php:721 mod/photos.php:810
+#: mod/photos.php:709 mod/photos.php:798
 msgid "New album name: "
 msgstr ""
 
-#: mod/photos.php:722
+#: mod/photos.php:710
 msgid "or select existing album:"
 msgstr ""
 
-#: mod/photos.php:723
+#: mod/photos.php:711
 msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183
+#: mod/photos.php:714 mod/photos.php:1075 src/Content/Conversation.php:388
+#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169
 msgid "Permissions"
 msgstr ""
 
-#: mod/photos.php:791
+#: mod/photos.php:779
 msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: mod/photos.php:792 mod/photos.php:815
+#: mod/photos.php:780 mod/photos.php:803
 msgid "Delete Album"
 msgstr ""
 
-#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417
-#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106
-#: src/Module/Contact/Unfollow.php:126
-#: src/Module/Media/Attachment/Browser.php:77
-#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167
-#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134
-#: src/Module/Security/TwoFactor/SignOut.php:125
+#: mod/photos.php:781 mod/photos.php:881 src/Content/Conversation.php:403
+#: src/Module/Contact/Follow.php:159 src/Module/Contact/Revoke.php:92
+#: src/Module/Contact/Unfollow.php:112
+#: src/Module/Media/Attachment/Browser.php:63
+#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153
+#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120
+#: src/Module/Security/TwoFactor/SignOut.php:111
 msgid "Cancel"
 msgstr ""
 
-#: mod/photos.php:819
+#: mod/photos.php:807
 msgid "Edit Album"
 msgstr ""
 
-#: mod/photos.php:820
+#: mod/photos.php:808
 msgid "Drop Album"
 msgstr ""
 
-#: mod/photos.php:824
+#: mod/photos.php:812
 msgid "Show Newest First"
 msgstr ""
 
-#: mod/photos.php:826
+#: mod/photos.php:814
 msgid "Show Oldest First"
 msgstr ""
 
-#: mod/photos.php:847 src/Module/Profile/Photos.php:346
+#: mod/photos.php:835 src/Module/Profile/Photos.php:332
 msgid "View Photo"
 msgstr ""
 
-#: mod/photos.php:879
+#: mod/photos.php:867
 msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: mod/photos.php:881
+#: mod/photos.php:869
 msgid "Photo not available"
 msgstr ""
 
-#: mod/photos.php:891
+#: mod/photos.php:879
 msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: mod/photos.php:892 mod/photos.php:1092
+#: mod/photos.php:880 mod/photos.php:1080
 msgid "Delete Photo"
 msgstr ""
 
-#: mod/photos.php:990
+#: mod/photos.php:978
 msgid "View photo"
 msgstr ""
 
-#: mod/photos.php:992
+#: mod/photos.php:980
 msgid "Edit photo"
 msgstr ""
 
-#: mod/photos.php:993
+#: mod/photos.php:981
 msgid "Delete photo"
 msgstr ""
 
-#: mod/photos.php:994
+#: mod/photos.php:982
 msgid "Use as profile photo"
 msgstr ""
 
-#: mod/photos.php:1001
+#: mod/photos.php:989
 msgid "Private Photo"
 msgstr ""
 
-#: mod/photos.php:1007
+#: mod/photos.php:995
 msgid "View Full Size"
 msgstr ""
 
-#: mod/photos.php:1060
+#: mod/photos.php:1048
 msgid "Tags: "
 msgstr ""
 
-#: mod/photos.php:1063
+#: mod/photos.php:1051
 msgid "[Select tags to remove]"
 msgstr ""
 
-#: mod/photos.php:1078
+#: mod/photos.php:1066
 msgid "New album name"
 msgstr ""
 
-#: mod/photos.php:1079
+#: mod/photos.php:1067
 msgid "Caption"
 msgstr ""
 
-#: mod/photos.php:1080
+#: mod/photos.php:1068
 msgid "Add a Tag"
 msgstr ""
 
-#: mod/photos.php:1080
+#: mod/photos.php:1068
 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/photos.php:1081
+#: mod/photos.php:1069
 msgid "Do not rotate"
 msgstr ""
 
-#: mod/photos.php:1082
+#: mod/photos.php:1070
 msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/photos.php:1083
+#: mod/photos.php:1071
 msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265
-#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1156
+#: mod/photos.php:1117 mod/photos.php:1173 mod/photos.php:1253
+#: src/Module/Contact.php:611 src/Module/Item/Compose.php:181
+#: src/Object/Post.php:1142
 msgid "This is you"
 msgstr ""
 
-#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267
-#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612
-#: src/Object/Post.php:1158
+#: mod/photos.php:1119 mod/photos.php:1175 mod/photos.php:1255
+#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598
+#: src/Object/Post.php:1144
 msgid "Comment"
 msgstr ""
 
-#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269
-#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1172
+#: mod/photos.php:1121 mod/photos.php:1177 mod/photos.php:1257
+#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234
+#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151
+#: src/Object/Post.php:1158
 msgid "Preview"
 msgstr ""
 
-#: mod/photos.php:1134 src/Content/Conversation.php:368
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160
+#: mod/photos.php:1122 src/Content/Conversation.php:354
+#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146
 msgid "Loading..."
 msgstr ""
 
-#: mod/photos.php:1226 src/Content/Conversation.php:1498
-#: src/Object/Post.php:274
+#: mod/photos.php:1214 src/Content/Conversation.php:1484
+#: src/Object/Post.php:260
 msgid "Select"
 msgstr ""
 
-#: mod/photos.php:1227 src/Content/Conversation.php:1499
-#: src/Module/Moderation/Users/Active.php:136
-#: src/Module/Moderation/Users/Blocked.php:136
-#: src/Module/Moderation/Users/Index.php:151
-#: src/Module/Settings/Connectors.php:254
-#: src/Module/Settings/Server/Index.php:109
+#: mod/photos.php:1215 src/Content/Conversation.php:1485
+#: src/Module/Moderation/Users/Active.php:122
+#: src/Module/Moderation/Users/Blocked.php:122
+#: src/Module/Moderation/Users/Index.php:137
+#: src/Module/Settings/Connectors.php:240
+#: src/Module/Settings/Server/Index.php:95
 msgid "Delete"
 msgstr ""
 
-#: mod/photos.php:1288 src/Object/Post.php:440
+#: mod/photos.php:1276 src/Object/Post.php:426
 msgid "Like"
 msgstr ""
 
-#: mod/photos.php:1289 src/Object/Post.php:440
+#: mod/photos.php:1277 src/Object/Post.php:426
 msgid "I like this (toggle)"
 msgstr ""
 
-#: mod/photos.php:1290 src/Object/Post.php:441
+#: mod/photos.php:1278 src/Object/Post.php:427
 msgid "Dislike"
 msgstr ""
 
-#: mod/photos.php:1292 src/Object/Post.php:441
+#: mod/photos.php:1280 src/Object/Post.php:427
 msgid "I don't like this (toggle)"
 msgstr ""
 
-#: mod/photos.php:1314
+#: mod/photos.php:1302
 msgid "Map"
 msgstr ""
 
-#: src/App.php:446
+#: src/App.php:432
 msgid "No system theme config value set."
 msgstr ""
 
-#: src/App.php:554
+#: src/App.php:540
 msgid "Apologies but the website is unavailable at the moment."
 msgstr ""
 
-#: src/App/Page.php:250
+#: src/App/Page.php:236
 msgid "Delete this item?"
 msgstr ""
 
-#: src/App/Page.php:251
+#: src/App/Page.php:237
 msgid "Block this author? They won't be able to follow you nor see your public posts, and you won't be able to see their posts and their notifications."
 msgstr ""
 
-#: src/App/Page.php:252
+#: src/App/Page.php:238
 msgid "Ignore this author? You won't be able to see their posts and their notifications."
 msgstr ""
 
-#: src/App/Page.php:253
+#: src/App/Page.php:239
 msgid "Collapse this author's posts?"
 msgstr ""
 
-#: src/App/Page.php:254
+#: src/App/Page.php:240
 msgid "Ignore this author's server?"
 msgstr ""
 
-#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61
-#: src/Module/Settings/Server/Index.php:108
+#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47
+#: src/Module/Settings/Server/Index.php:94
 msgid "You won't see any content from this server including reshares in your Network page, the community pages and individual conversations."
 msgstr ""
 
-#: src/App/Page.php:257
+#: src/App/Page.php:243
 msgid "Like not successful"
 msgstr ""
 
-#: src/App/Page.php:258
+#: src/App/Page.php:244
 msgid "Dislike not successful"
 msgstr ""
 
-#: src/App/Page.php:259
+#: src/App/Page.php:245
 msgid "Sharing not successful"
 msgstr ""
 
-#: src/App/Page.php:260
+#: src/App/Page.php:246
 msgid "Attendance unsuccessful"
 msgstr ""
 
-#: src/App/Page.php:261
+#: src/App/Page.php:247
 msgid "Backend error"
 msgstr ""
 
-#: src/App/Page.php:262
+#: src/App/Page.php:248
 msgid "Network error"
 msgstr ""
 
-#: src/App/Page.php:265
+#: src/App/Page.php:251
 msgid "Drop files here to upload"
 msgstr ""
 
-#: src/App/Page.php:266
+#: src/App/Page.php:252
 msgid "Your browser does not support drag and drop file uploads."
 msgstr ""
 
-#: src/App/Page.php:267
+#: src/App/Page.php:253
 msgid "Please use the fallback form below to upload your files like in the olden days."
 msgstr ""
 
-#: src/App/Page.php:268
+#: src/App/Page.php:254
 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
 msgstr ""
 
-#: src/App/Page.php:269
+#: src/App/Page.php:255
 msgid "You can't upload files of this type."
 msgstr ""
 
-#: src/App/Page.php:270
+#: src/App/Page.php:256
 msgid "Server responded with {{statusCode}} code."
 msgstr ""
 
-#: src/App/Page.php:271
+#: src/App/Page.php:257
 msgid "Cancel upload"
 msgstr ""
 
-#: src/App/Page.php:272
+#: src/App/Page.php:258
 msgid "Upload canceled."
 msgstr ""
 
-#: src/App/Page.php:273
+#: src/App/Page.php:259
 msgid "Are you sure you want to cancel this upload?"
 msgstr ""
 
-#: src/App/Page.php:274
+#: src/App/Page.php:260
 msgid "Remove file"
 msgstr ""
 
-#: src/App/Page.php:275
+#: src/App/Page.php:261
 msgid "You can't upload any more files."
 msgstr ""
 
-#: src/App/Page.php:353
+#: src/App/Page.php:339
 msgid "toggle mobile"
 msgstr ""
 
-#: src/App/Router.php:309
+#: src/App/Router.php:295
 #, php-format
 msgid "Method not allowed for this module. Allowed method(s): %s"
 msgstr ""
 
-#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49
-#: src/Module/Stats.php:63
+#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35
+#: src/Module/Stats.php:49
 msgid "Page not found."
 msgstr ""
 
-#: src/App/Router.php:323
+#: src/App/Router.php:309
 msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: src/BaseModule.php:407
+#: src/BaseModule.php:393
 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 ""
 
-#: src/BaseModule.php:434
+#: src/BaseModule.php:420
 msgid "All contacts"
 msgstr ""
 
-#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46
-#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420
-#: src/Module/Privacy/PermissionTooltip.php:164
-#: src/Module/Privacy/PermissionTooltip.php:186
-#: src/Module/Settings/Channels.php:160
+#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32
+#: src/Content/Widget.php:226 src/Core/ACL.php:181 src/Module/Contact.php:406
+#: src/Module/Privacy/PermissionTooltip.php:150
+#: src/Module/Privacy/PermissionTooltip.php:172
+#: src/Module/Settings/Channels.php:146
 msgid "Followers"
 msgstr ""
 
-#: src/BaseModule.php:444 src/Content/Widget.php:241 src/Module/Contact.php:423
-#: src/Module/Settings/Channels.php:159
+#: src/BaseModule.php:430 src/Content/Widget.php:227 src/Module/Contact.php:409
+#: src/Module/Settings/Channels.php:145
 msgid "Following"
 msgstr ""
 
-#: src/BaseModule.php:449 src/Content/Widget.php:242 src/Module/Contact.php:426
+#: src/BaseModule.php:435 src/Content/Widget.php:228 src/Module/Contact.php:412
 msgid "Mutual friends"
 msgstr ""
 
-#: src/BaseModule.php:457
+#: src/BaseModule.php:443
 msgid "Common"
 msgstr ""
 
-#: src/Console/Addon.php:175 src/Console/Addon.php:199
+#: src/Console/Addon.php:161 src/Console/Addon.php:185
 msgid "Addon not found"
 msgstr ""
 
-#: src/Console/Addon.php:179
+#: src/Console/Addon.php:165
 msgid "Addon already enabled"
 msgstr ""
 
-#: src/Console/Addon.php:203
+#: src/Console/Addon.php:189
 msgid "Addon already disabled"
 msgstr ""
 
-#: src/Console/ArchiveContact.php:106
+#: src/Console/ArchiveContact.php:92
 #, php-format
 msgid "Could not find any unarchived contact entry for this URL (%s)"
 msgstr ""
 
-#: src/Console/ArchiveContact.php:109
+#: src/Console/ArchiveContact.php:95
 msgid "The contact entries have been archived"
 msgstr ""
 
-#: src/Console/ClearAvatarCache.php:87
+#: src/Console/ClearAvatarCache.php:73
 msgid "The avatar cache needs to be disabled in local.config.php to use this command."
 msgstr ""
 
-#: src/Console/GlobalCommunityBlock.php:96
-#: src/Module/Moderation/Blocklist/Contact.php:65
+#: src/Console/GlobalCommunityBlock.php:82
+#: src/Module/Moderation/Blocklist/Contact.php:51
 #, php-format
 msgid "Could not find any contact entry for this URL (%s)"
 msgstr ""
 
-#: src/Console/GlobalCommunityBlock.php:101
-#: src/Module/Moderation/Blocklist/Contact.php:82
+#: src/Console/GlobalCommunityBlock.php:87
+#: src/Module/Moderation/Blocklist/Contact.php:68
 msgid "The contact has been blocked from the node"
 msgstr ""
 
-#: src/Console/MergeContacts.php:75
+#: src/Console/MergeContacts.php:61
 #, php-format
 msgid "%d %s, %d duplicates."
 msgstr ""
 
-#: src/Console/MergeContacts.php:78
+#: src/Console/MergeContacts.php:64
 #, php-format
 msgid "uri-id is empty for contact %s."
 msgstr ""
 
-#: src/Console/MergeContacts.php:91
+#: src/Console/MergeContacts.php:77
 #, php-format
 msgid "No valid first contact found for uri-id %d."
 msgstr ""
 
-#: src/Console/MergeContacts.php:102
+#: src/Console/MergeContacts.php:88
 #, php-format
 msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)."
 msgstr ""
 
-#: src/Console/MergeContacts.php:106
+#: src/Console/MergeContacts.php:92
 #, php-format
 msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)."
 msgstr ""
 
-#: src/Console/MergeContacts.php:142
+#: src/Console/MergeContacts.php:128
 #, php-format
 msgid "Deletion of id %d failed"
 msgstr ""
 
-#: src/Console/MergeContacts.php:144
+#: src/Console/MergeContacts.php:130
 #, php-format
 msgid "Deletion of id %d was successful"
 msgstr ""
 
-#: src/Console/MergeContacts.php:150
+#: src/Console/MergeContacts.php:136
 #, php-format
 msgid "Updating \"%s\" in \"%s\" from %d to %d"
 msgstr ""
 
-#: src/Console/MergeContacts.php:152
+#: src/Console/MergeContacts.php:138
 msgid " - found"
 msgstr ""
 
-#: src/Console/MergeContacts.php:159
+#: src/Console/MergeContacts.php:145
 msgid " - failed"
 msgstr ""
 
-#: src/Console/MergeContacts.php:161
+#: src/Console/MergeContacts.php:147
 msgid " - success"
 msgstr ""
 
-#: src/Console/MergeContacts.php:165
+#: src/Console/MergeContacts.php:151
 msgid " - deleted"
 msgstr ""
 
-#: src/Console/MergeContacts.php:168
+#: src/Console/MergeContacts.php:154
 msgid " - done"
 msgstr ""
 
-#: src/Console/MoveToAvatarCache.php:91
+#: src/Console/MoveToAvatarCache.php:77
 msgid "The avatar cache needs to be enabled to use this command."
 msgstr ""
 
-#: src/Console/MoveToAvatarCache.php:109
+#: src/Console/MoveToAvatarCache.php:95
 #, php-format
 msgid "no resource in photo %s"
 msgstr ""
 
-#: src/Console/MoveToAvatarCache.php:137
+#: src/Console/MoveToAvatarCache.php:123
 #, php-format
 msgid "no photo with id %s"
 msgstr ""
 
-#: src/Console/MoveToAvatarCache.php:146
+#: src/Console/MoveToAvatarCache.php:132
 #, php-format
 msgid "no image data for photo with id %s"
 msgstr ""
 
-#: src/Console/MoveToAvatarCache.php:155
+#: src/Console/MoveToAvatarCache.php:141
 #, php-format
 msgid "invalid image for id %s"
 msgstr ""
 
-#: src/Console/MoveToAvatarCache.php:168
+#: src/Console/MoveToAvatarCache.php:154
 #, php-format
 msgid "Quit on invalid photo %s"
 msgstr ""
 
-#: src/Console/PostUpdate.php:87
+#: src/Console/PostUpdate.php:73
 #, php-format
 msgid "Post update version number has been set to %s."
 msgstr ""
 
-#: src/Console/PostUpdate.php:95
+#: src/Console/PostUpdate.php:81
 msgid "Check for pending update actions."
 msgstr ""
 
-#: src/Console/PostUpdate.php:97
+#: src/Console/PostUpdate.php:83
 msgid "Done."
 msgstr ""
 
-#: src/Console/PostUpdate.php:99
+#: src/Console/PostUpdate.php:85
 msgid "Execute pending post updates."
 msgstr ""
 
-#: src/Console/PostUpdate.php:105
+#: src/Console/PostUpdate.php:91
 msgid "All pending post updates are done."
 msgstr ""
 
-#: src/Console/User.php:158 src/Console/User.php:246
+#: src/Console/User.php:144 src/Console/User.php:232
 msgid "Enter user nickname: "
 msgstr ""
 
-#: src/Console/User.php:182 src/Model/User.php:847
-#: src/Module/Api/Twitter/ContactEndpoint.php:74
-#: src/Module/Moderation/Users/Active.php:71
-#: src/Module/Moderation/Users/Blocked.php:71
-#: src/Module/Moderation/Users/Index.php:78
-#: src/Module/Moderation/Users/Pending.php:67
+#: src/Console/User.php:168 src/Model/User.php:833
+#: src/Module/Api/Twitter/ContactEndpoint.php:60
+#: src/Module/Moderation/Users/Active.php:57
+#: src/Module/Moderation/Users/Blocked.php:57
+#: src/Module/Moderation/Users/Index.php:64
+#: src/Module/Moderation/Users/Pending.php:53
 msgid "User not found"
 msgstr ""
 
-#: src/Console/User.php:202
+#: src/Console/User.php:188
 msgid "Enter new password: "
 msgstr ""
 
-#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69
-#: src/Module/Settings/Account.php:75
+#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55
+#: src/Module/Settings/Account.php:61
 msgid "Password update failed. Please try again."
 msgstr ""
 
-#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72
-#: src/Module/Settings/Account.php:78
+#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58
+#: src/Module/Settings/Account.php:64
 msgid "Password changed."
 msgstr ""
 
-#: src/Console/User.php:238
+#: src/Console/User.php:224
 msgid "Enter user name: "
 msgstr ""
 
-#: src/Console/User.php:254
+#: src/Console/User.php:240
 msgid "Enter user email address: "
 msgstr ""
 
-#: src/Console/User.php:262
+#: src/Console/User.php:248
 msgid "Enter a language (optional): "
 msgstr ""
 
-#: src/Console/User.php:267
+#: src/Console/User.php:253
 msgid "Enter URL of an image to use as avatar (optional): "
 msgstr ""
 
-#: src/Console/User.php:292
+#: src/Console/User.php:278
 msgid "User is not pending."
 msgstr ""
 
-#: src/Console/User.php:324
+#: src/Console/User.php:310
 msgid "User has already been marked for deletion."
 msgstr ""
 
-#: src/Console/User.php:329
+#: src/Console/User.php:315
 #, php-format
 msgid "Type \"yes\" to delete %s"
 msgstr ""
 
-#: src/Console/User.php:331
+#: src/Console/User.php:317
 msgid "Deletion aborted."
 msgstr ""
 
-#: src/Console/User.php:456
+#: src/Console/User.php:442
 msgid "Enter category: "
 msgstr ""
 
-#: src/Console/User.php:466
+#: src/Console/User.php:452
 msgid "Enter key: "
 msgstr ""
 
-#: src/Console/User.php:500
+#: src/Console/User.php:486
 msgid "Enter value: "
 msgstr ""
 
-#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171
+#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157
 msgid "newer"
 msgstr ""
 
-#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176
+#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162
 msgid "older"
 msgstr ""
 
-#: src/Content/ContactSelector.php:51
+#: src/Content/ContactSelector.php:37
 msgid "Frequently"
 msgstr ""
 
-#: src/Content/ContactSelector.php:52
+#: src/Content/ContactSelector.php:38
 msgid "Hourly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:53
+#: src/Content/ContactSelector.php:39
 msgid "Twice daily"
 msgstr ""
 
-#: src/Content/ContactSelector.php:54
+#: src/Content/ContactSelector.php:40
 msgid "Daily"
 msgstr ""
 
-#: src/Content/ContactSelector.php:55
+#: src/Content/ContactSelector.php:41
 msgid "Weekly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:56
+#: src/Content/ContactSelector.php:42
 msgid "Monthly"
 msgstr ""
 
-#: src/Content/ContactSelector.php:126
+#: src/Content/ContactSelector.php:112
 msgid "DFRN"
 msgstr ""
 
-#: src/Content/ContactSelector.php:127
+#: src/Content/ContactSelector.php:113
 msgid "OStatus"
 msgstr ""
 
-#: src/Content/ContactSelector.php:128
+#: src/Content/ContactSelector.php:114
 msgid "RSS/Atom"
 msgstr ""
 
-#: src/Content/ContactSelector.php:129
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:72
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Content/ContactSelector.php:115
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:58
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85
 msgid "Email"
 msgstr ""
 
-#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315
+#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301
 msgid "Diaspora"
 msgstr ""
 
-#: src/Content/ContactSelector.php:131
+#: src/Content/ContactSelector.php:117
 msgid "Zot!"
 msgstr ""
 
-#: src/Content/ContactSelector.php:132
+#: src/Content/ContactSelector.php:118
 msgid "LinkedIn"
 msgstr ""
 
-#: src/Content/ContactSelector.php:133
+#: src/Content/ContactSelector.php:119
 msgid "XMPP/IM"
 msgstr ""
 
-#: src/Content/ContactSelector.php:134
+#: src/Content/ContactSelector.php:120
 msgid "MySpace"
 msgstr ""
 
-#: src/Content/ContactSelector.php:135
+#: src/Content/ContactSelector.php:121
 msgid "Google+"
 msgstr ""
 
-#: src/Content/ContactSelector.php:136
+#: src/Content/ContactSelector.php:122
 msgid "pump.io"
 msgstr ""
 
-#: src/Content/ContactSelector.php:137
+#: src/Content/ContactSelector.php:123
 msgid "Twitter"
 msgstr ""
 
-#: src/Content/ContactSelector.php:138
+#: src/Content/ContactSelector.php:124
 msgid "Discourse"
 msgstr ""
 
-#: src/Content/ContactSelector.php:139
+#: src/Content/ContactSelector.php:125
 msgid "Diaspora Connector"
 msgstr ""
 
-#: src/Content/ContactSelector.php:140
+#: src/Content/ContactSelector.php:126
 msgid "GNU Social Connector"
 msgstr ""
 
-#: src/Content/ContactSelector.php:141
+#: src/Content/ContactSelector.php:127
 msgid "ActivityPub"
 msgstr ""
 
-#: src/Content/ContactSelector.php:142
+#: src/Content/ContactSelector.php:128
 msgid "pnut"
 msgstr ""
 
-#: src/Content/ContactSelector.php:143
+#: src/Content/ContactSelector.php:129
 msgid "Tumblr"
 msgstr ""
 
-#: src/Content/ContactSelector.php:144
+#: src/Content/ContactSelector.php:130
 msgid "Bluesky"
 msgstr ""
 
-#: src/Content/ContactSelector.php:180
+#: src/Content/ContactSelector.php:166
 #, php-format
 msgid "%s (via %s)"
 msgstr ""
 
-#: src/Content/Conversation.php:226
+#: src/Content/Conversation.php:212
 msgid "and"
 msgstr ""
 
-#: src/Content/Conversation.php:229
+#: src/Content/Conversation.php:215
 #, php-format
 msgid "and %d other people"
 msgstr ""
 
-#: src/Content/Conversation.php:235
+#: src/Content/Conversation.php:221
 #, php-format
 msgid "%2$s likes this."
 msgid_plural "%2$s like this."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:237
+#: src/Content/Conversation.php:223
 #, php-format
 msgid "%2$s doesn't like this."
 msgid_plural "%2$s don't like this."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:239
+#: src/Content/Conversation.php:225
 #, php-format
 msgid "%2$s attends."
 msgid_plural "%2$s attend."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:241
+#: src/Content/Conversation.php:227
 #, php-format
 msgid "%2$s doesn't attend."
 msgid_plural "%2$s don't attend."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:243
+#: src/Content/Conversation.php:229
 #, php-format
 msgid "%2$s attends maybe."
 msgid_plural "%2$s attend maybe."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:245
+#: src/Content/Conversation.php:231
 #, php-format
 msgid "%2$s reshared this."
 msgid_plural "%2$s reshared this."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:276
+#: src/Content/Conversation.php:262
 #, php-format
 msgid "<button type=\"button\" %2$s>%1$d person</button> likes this"
 msgid_plural "<button type=\"button\" %2$s>%1$d people</button> like this"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:279
+#: src/Content/Conversation.php:265
 #, php-format
 msgid "<button type=\"button\" %2$s>%1$d person</button> doesn't like this"
 msgid_plural "<button type=\"button\" %2$s>%1$d peiple</button> don't like this"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:282
+#: src/Content/Conversation.php:268
 #, php-format
 msgid "<button type=\"button\" %2$s>%1$d person</button> attends"
 msgid_plural "<button type=\"button\" %2$s>%1$d people</button> attend"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:285
+#: src/Content/Conversation.php:271
 #, php-format
 msgid "<button type=\"button\" %2$s>%1$d person</button> doesn't attend"
 msgid_plural "<button type=\"button\" %2$s>%1$d people</button> don't attend"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:288
+#: src/Content/Conversation.php:274
 #, php-format
 msgid "<button type=\"button\" %2$s>%1$d person</button> attends maybe"
 msgid_plural "<button type=\"button\" %2$s>%1$d people</button> attend maybe"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:291
+#: src/Content/Conversation.php:277
 #, php-format
 msgid "<button type=\"button\" %2$s>%1$d person</button> reshared this"
 msgid_plural "<button type=\"button\" %2$s>%1$d people</button> reshared this"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Conversation.php:337
+#: src/Content/Conversation.php:323
 msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207
-#: src/Object/Post.php:1171
+#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193
+#: src/Object/Post.php:1157
 msgid "Please enter a image/video/audio/webpage URL:"
 msgstr ""
 
-#: src/Content/Conversation.php:339
+#: src/Content/Conversation.php:325
 msgid "Tag term:"
 msgstr ""
 
-#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59
 msgid "Save to Folder:"
 msgstr ""
 
-#: src/Content/Conversation.php:341
+#: src/Content/Conversation.php:327
 msgid "Where are you right now?"
 msgstr ""
 
-#: src/Content/Conversation.php:342
+#: src/Content/Conversation.php:328
 msgid "Delete item(s)?"
 msgstr ""
 
-#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182
+#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168
 msgid "Created at"
 msgstr ""
 
-#: src/Content/Conversation.php:364
+#: src/Content/Conversation.php:350
 msgid "New Post"
 msgstr ""
 
-#: src/Content/Conversation.php:367
+#: src/Content/Conversation.php:353
 msgid "Share"
 msgstr ""
 
-#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118
 msgid "upload photo"
 msgstr ""
 
-#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119
 msgid "Attach file"
 msgstr ""
 
-#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120
 msgid "attach file"
 msgstr ""
 
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161
+#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183
+#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147
 msgid "Bold"
 msgstr ""
 
-#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162
+#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184
+#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148
 msgid "Italic"
 msgstr ""
 
-#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163
+#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185
+#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149
 msgid "Underline"
 msgstr ""
 
-#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165
+#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
+#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151
 msgid "Quote"
 msgstr ""
 
-#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166
+#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
+#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152
 msgid "Add emojis"
 msgstr ""
 
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202
-#: src/Object/Post.php:1164
+#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
+#: src/Object/Post.php:1150
 msgid "Content Warning"
 msgstr ""
 
-#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167
+#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
+#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153
 msgid "Code"
 msgstr ""
 
-#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204
-#: src/Object/Post.php:1168
+#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
+#: src/Object/Post.php:1154
 msgid "Image"
 msgstr ""
 
-#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169
+#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
+#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155
 msgid "Link"
 msgstr ""
 
-#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206
-#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170
+#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
+#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156
 msgid "Link or Media"
 msgstr ""
 
-#: src/Content/Conversation.php:383
+#: src/Content/Conversation.php:369
 msgid "Video"
 msgstr ""
 
-#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209
-#: src/Module/Post/Edit.php:141
+#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195
+#: src/Module/Post/Edit.php:127
 msgid "Set your location"
 msgstr ""
 
-#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128
 msgid "set location"
 msgstr ""
 
-#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129
 msgid "Clear browser location"
 msgstr ""
 
-#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130
 msgid "clear location"
 msgstr ""
 
-#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214
-#: src/Module/Post/Edit.php:157
+#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200
+#: src/Module/Post/Edit.php:143
 msgid "Set title"
 msgstr ""
 
-#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215
-#: src/Module/Post/Edit.php:159
+#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201
+#: src/Module/Post/Edit.php:145
 msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231
+#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217
 msgid "Scheduled at"
 msgstr ""
 
-#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132
 msgid "Permission settings"
 msgstr ""
 
-#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141
 msgid "Public post"
 msgstr ""
 
-#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131
-#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94
-#: src/Module/Post/Edit.php:181
+#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117
+#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80
+#: src/Module/Post/Edit.php:167
 msgid "Message"
 msgstr ""
 
-#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182
-#: src/Module/Settings/TwoFactor/Trusted.php:143
+#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168
+#: src/Module/Settings/TwoFactor/Trusted.php:129
 msgid "Browser"
 msgstr ""
 
-#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
+#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171
 msgid "Open Compose page"
 msgstr ""
 
-#: src/Content/Conversation.php:594
+#: src/Content/Conversation.php:580
 msgid "remove"
 msgstr ""
 
-#: src/Content/Conversation.php:598
+#: src/Content/Conversation.php:584
 msgid "Delete Selected Items"
 msgstr ""
 
-#: src/Content/Conversation.php:726 src/Content/Conversation.php:729
-#: src/Content/Conversation.php:732 src/Content/Conversation.php:735
-#: src/Content/Conversation.php:738
+#: src/Content/Conversation.php:712 src/Content/Conversation.php:715
+#: src/Content/Conversation.php:718 src/Content/Conversation.php:721
+#: src/Content/Conversation.php:724
 #, php-format
 msgid "You had been addressed (%s)."
 msgstr ""
 
-#: src/Content/Conversation.php:741
+#: src/Content/Conversation.php:727
 #, php-format
 msgid "You are following %s."
 msgstr ""
 
-#: src/Content/Conversation.php:746
+#: src/Content/Conversation.php:732
 #, php-format
 msgid "You subscribed to %s."
 msgstr ""
 
-#: src/Content/Conversation.php:748
+#: src/Content/Conversation.php:734
 msgid "You subscribed to one or more tags in this post."
 msgstr ""
 
-#: src/Content/Conversation.php:768
+#: src/Content/Conversation.php:754
 #, php-format
 msgid "%s reshared this."
 msgstr ""
 
-#: src/Content/Conversation.php:770
+#: src/Content/Conversation.php:756
 msgid "Reshared"
 msgstr ""
 
-#: src/Content/Conversation.php:770
+#: src/Content/Conversation.php:756
 #, php-format
 msgid "Reshared by %s <%s>"
 msgstr ""
 
-#: src/Content/Conversation.php:773
+#: src/Content/Conversation.php:759
 #, php-format
 msgid "%s is participating in this thread."
 msgstr ""
 
-#: src/Content/Conversation.php:776
+#: src/Content/Conversation.php:762
 msgid "Stored for general reasons"
 msgstr ""
 
-#: src/Content/Conversation.php:779
+#: src/Content/Conversation.php:765
 msgid "Global post"
 msgstr ""
 
-#: src/Content/Conversation.php:782
+#: src/Content/Conversation.php:768
 msgid "Sent via an relay server"
 msgstr ""
 
-#: src/Content/Conversation.php:782
+#: src/Content/Conversation.php:768
 #, php-format
 msgid "Sent via the relay server %s <%s>"
 msgstr ""
 
-#: src/Content/Conversation.php:785
+#: src/Content/Conversation.php:771
 msgid "Fetched"
 msgstr ""
 
-#: src/Content/Conversation.php:785
+#: src/Content/Conversation.php:771
 #, php-format
 msgid "Fetched because of %s <%s>"
 msgstr ""
 
-#: src/Content/Conversation.php:788
+#: src/Content/Conversation.php:774
 msgid "Stored because of a child post to complete this thread."
 msgstr ""
 
-#: src/Content/Conversation.php:791
+#: src/Content/Conversation.php:777
 msgid "Local delivery"
 msgstr ""
 
-#: src/Content/Conversation.php:794
+#: src/Content/Conversation.php:780
 msgid "Stored because of your activity (like, comment, star, ...)"
 msgstr ""
 
-#: src/Content/Conversation.php:797
+#: src/Content/Conversation.php:783
 msgid "Distributed"
 msgstr ""
 
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:786
 msgid "Pushed to us"
 msgstr ""
 
-#: src/Content/Conversation.php:1518 src/Object/Post.php:261
+#: src/Content/Conversation.php:1504 src/Object/Post.php:247
 msgid "Pinned item"
 msgstr ""
 
-#: src/Content/Conversation.php:1535 src/Object/Post.php:555
-#: src/Object/Post.php:556
+#: src/Content/Conversation.php:1521 src/Object/Post.php:541
+#: src/Object/Post.php:542
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: src/Content/Conversation.php:1549 src/Object/Post.php:543
+#: src/Content/Conversation.php:1535 src/Object/Post.php:529
 msgid "Categories:"
 msgstr ""
 
-#: src/Content/Conversation.php:1550 src/Object/Post.php:544
+#: src/Content/Conversation.php:1536 src/Object/Post.php:530
 msgid "Filed under:"
 msgstr ""
 
-#: src/Content/Conversation.php:1558 src/Object/Post.php:570
+#: src/Content/Conversation.php:1544 src/Object/Post.php:556
 #, php-format
 msgid "%s from %s"
 msgstr ""
 
-#: src/Content/Conversation.php:1574
+#: src/Content/Conversation.php:1560
 msgid "View in context"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:42
+#: src/Content/Conversation/Factory/Channel.php:28
 msgid "For you"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:42
+#: src/Content/Conversation/Factory/Channel.php:28
 msgid "Posts from contacts you interact with and who interact with you"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:43
+#: src/Content/Conversation/Factory/Channel.php:29
 msgid "Discover"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:43
+#: src/Content/Conversation/Factory/Channel.php:29
 msgid "Posts from accounts that you don't follow, but that you might like."
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:44
+#: src/Content/Conversation/Factory/Channel.php:30
 msgid "What's Hot"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:44
+#: src/Content/Conversation/Factory/Channel.php:30
 msgid "Posts with a lot of interactions"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:45
+#: src/Content/Conversation/Factory/Channel.php:31
 #, php-format
 msgid "Posts in %s"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:46
+#: src/Content/Conversation/Factory/Channel.php:32
 msgid "Posts from your followers that you don't follow"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:47
+#: src/Content/Conversation/Factory/Channel.php:33
 msgid "Sharers of sharers"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:47
+#: src/Content/Conversation/Factory/Channel.php:33
 msgid "Posts from accounts that are followed by accounts that you follow"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:48
+#: src/Content/Conversation/Factory/Channel.php:34
 msgid "Quiet sharers"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:48
+#: src/Content/Conversation/Factory/Channel.php:34
 msgid "Posts from accounts that you follow but who don't post very often"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:49
-#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220
+#: src/Content/Conversation/Factory/Channel.php:35
+#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206
 msgid "Images"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:49
+#: src/Content/Conversation/Factory/Channel.php:35
 msgid "Posts with images"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:50
-#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222
+#: src/Content/Conversation/Factory/Channel.php:36
+#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208
 msgid "Audio"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:50
+#: src/Content/Conversation/Factory/Channel.php:36
 msgid "Posts with audio"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:51
-#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221
+#: src/Content/Conversation/Factory/Channel.php:37
+#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207
 msgid "Videos"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Channel.php:51
+#: src/Content/Conversation/Factory/Channel.php:37
 msgid "Posts with videos"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Community.php:43
+#: src/Content/Conversation/Factory/Community.php:29
 msgid "Local Community"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Community.php:43
+#: src/Content/Conversation/Factory/Community.php:29
 msgid "Posts from local users on this server"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Community.php:47
-#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155
+#: src/Content/Conversation/Factory/Community.php:33
+#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141
 msgid "Global Community"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Community.php:47
+#: src/Content/Conversation/Factory/Community.php:33
 msgid "Posts from users of the whole federated network"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:38
-#: src/Module/Settings/Channels.php:156
+#: src/Content/Conversation/Factory/Network.php:24
+#: src/Module/Settings/Channels.php:142
 msgid "Latest Activity"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:38
+#: src/Content/Conversation/Factory/Network.php:24
 msgid "Sort by latest activity"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:39
-#: src/Module/Settings/Channels.php:157
+#: src/Content/Conversation/Factory/Network.php:25
+#: src/Module/Settings/Channels.php:143
 msgid "Latest Posts"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:39
+#: src/Content/Conversation/Factory/Network.php:25
 msgid "Sort by post received date"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:40
-#: src/Module/Settings/Channels.php:158
+#: src/Content/Conversation/Factory/Network.php:26
+#: src/Module/Settings/Channels.php:144
 msgid "Latest Creation"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:40
+#: src/Content/Conversation/Factory/Network.php:26
 msgid "Sort by post creation date"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:41
-#: src/Module/Settings/Profile/Index.php:265
+#: src/Content/Conversation/Factory/Network.php:27
+#: src/Module/Settings/Profile/Index.php:251
 msgid "Personal"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:41
+#: src/Content/Conversation/Factory/Network.php:27
 msgid "Posts that mention or involve you"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411
+#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397
 msgid "Starred"
 msgstr ""
 
-#: src/Content/Conversation/Factory/Network.php:42
+#: src/Content/Conversation/Factory/Network.php:28
 msgid "Favourite Posts"
 msgstr ""
 
-#: src/Content/Feature.php:107
+#: src/Content/Feature.php:93
 msgid "General Features"
 msgstr ""
 
-#: src/Content/Feature.php:109
+#: src/Content/Feature.php:95
 msgid "Photo Location"
 msgstr ""
 
-#: src/Content/Feature.php:109
+#: src/Content/Feature.php:95
 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/Feature.php:110
+#: src/Content/Feature.php:96
 msgid "Display the community in the navigation"
 msgstr ""
 
-#: src/Content/Feature.php:110
+#: src/Content/Feature.php:96
 msgid "If enabled, the community can be accessed via the navigation menu. Independent from this setting, the community timelines can always be accessed via the channels."
 msgstr ""
 
-#: src/Content/Feature.php:115
+#: src/Content/Feature.php:101
 msgid "Post Composition Features"
 msgstr ""
 
-#: src/Content/Feature.php:116
+#: src/Content/Feature.php:102
 msgid "Explicit Mentions"
 msgstr ""
 
-#: src/Content/Feature.php:116
+#: src/Content/Feature.php:102
 msgid "Add explicit mentions to comment box for manual control over who gets mentioned in replies."
 msgstr ""
 
-#: src/Content/Feature.php:117
+#: src/Content/Feature.php:103
 msgid "Add an abstract from ActivityPub content warnings"
 msgstr ""
 
-#: src/Content/Feature.php:117
+#: src/Content/Feature.php:103
 msgid "Add an abstract when commenting on ActivityPub posts with a content warning. Abstracts are displayed as content warning on systems like Mastodon or Pleroma."
 msgstr ""
 
-#: src/Content/Feature.php:122
+#: src/Content/Feature.php:108
 msgid "Post/Comment Tools"
 msgstr ""
 
-#: src/Content/Feature.php:123
+#: src/Content/Feature.php:109
 msgid "Post Categories"
 msgstr ""
 
-#: src/Content/Feature.php:123
+#: src/Content/Feature.php:109
 msgid "Add categories to your posts"
 msgstr ""
 
-#: src/Content/Feature.php:128
+#: src/Content/Feature.php:114
 msgid "Network Widgets"
 msgstr ""
 
-#: src/Content/Feature.php:129 src/Content/Widget.php:216
-#: src/Model/Circle.php:601 src/Module/Contact.php:406
-#: src/Module/Welcome.php:76
+#: src/Content/Feature.php:115 src/Content/Widget.php:202
+#: src/Model/Circle.php:587 src/Module/Contact.php:392
+#: src/Module/Welcome.php:62
 msgid "Circles"
 msgstr ""
 
-#: src/Content/Feature.php:129
+#: src/Content/Feature.php:115
 msgid "Display posts that have been created by accounts of the selected circle."
 msgstr ""
 
-#: src/Content/Feature.php:130 src/Content/GroupManager.php:147
-#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882
-#: src/Content/Widget.php:538 src/Model/User.php:1413
+#: src/Content/Feature.php:116 src/Content/GroupManager.php:133
+#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868
+#: src/Content/Widget.php:524 src/Model/User.php:1399
 msgid "Groups"
 msgstr ""
 
-#: src/Content/Feature.php:130
+#: src/Content/Feature.php:116
 msgid "Display posts that have been distributed by the selected group."
 msgstr ""
 
-#: src/Content/Feature.php:131 src/Content/Widget.php:507
+#: src/Content/Feature.php:117 src/Content/Widget.php:493
 msgid "Archives"
 msgstr ""
 
-#: src/Content/Feature.php:131
+#: src/Content/Feature.php:117
 msgid "Display an archive where posts can be selected by month and year."
 msgstr ""
 
-#: src/Content/Feature.php:132 src/Content/Widget.php:289
+#: src/Content/Feature.php:118 src/Content/Widget.php:275
 msgid "Protocols"
 msgstr ""
 
-#: src/Content/Feature.php:132
+#: src/Content/Feature.php:118
 msgid "Display posts with the selected protocols."
 msgstr ""
 
-#: src/Content/Feature.php:133 src/Content/Widget.php:544
-#: src/Module/Settings/Account.php:447
+#: src/Content/Feature.php:119 src/Content/Widget.php:530
+#: src/Module/Settings/Account.php:433
 msgid "Account Types"
 msgstr ""
 
-#: src/Content/Feature.php:133
+#: src/Content/Feature.php:119
 msgid "Display posts done by accounts with the selected account type."
 msgstr ""
 
-#: src/Content/Feature.php:134 src/Content/Widget.php:593
-#: src/Module/Admin/Site.php:480 src/Module/BaseSettings.php:125
-#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315
+#: src/Content/Feature.php:120 src/Content/Widget.php:579
+#: src/Module/Admin/Site.php:466 src/Module/BaseSettings.php:111
+#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301
 msgid "Channels"
 msgstr ""
 
-#: src/Content/Feature.php:134
+#: src/Content/Feature.php:120
 msgid "Display posts in the system channels and user defined channels."
 msgstr ""
 
-#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60
+#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46
 msgid "Saved Searches"
 msgstr ""
 
-#: src/Content/Feature.php:135
+#: src/Content/Feature.php:121
 msgid "Display posts that contain subscribed hashtags."
 msgstr ""
 
-#: src/Content/Feature.php:136 src/Content/Widget.php:319
+#: src/Content/Feature.php:122 src/Content/Widget.php:305
 msgid "Saved Folders"
 msgstr ""
 
-#: src/Content/Feature.php:136
+#: src/Content/Feature.php:122
 msgid "Display a list of folders in which posts are stored."
 msgstr ""
 
-#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200
+#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186
 msgid "Own Contacts"
 msgstr ""
 
-#: src/Content/Feature.php:137
+#: src/Content/Feature.php:123
 msgid "Include or exclude posts from subscribed accounts. This widget is not visible on all channels."
 msgstr ""
 
-#: src/Content/Feature.php:138
+#: src/Content/Feature.php:124
 msgid "Trending Tags"
 msgstr ""
 
-#: src/Content/Feature.php:138
+#: src/Content/Feature.php:124
 msgid "Display a list of the most popular tags in recent public posts."
 msgstr ""
 
-#: src/Content/Feature.php:143
+#: src/Content/Feature.php:129
 msgid "Advanced Profile Settings"
 msgstr ""
 
-#: src/Content/Feature.php:144
+#: src/Content/Feature.php:130
 msgid "Tag Cloud"
 msgstr ""
 
-#: src/Content/Feature.php:144
+#: src/Content/Feature.php:130
 msgid "Provide a personal tag cloud on your profile page"
 msgstr ""
 
-#: src/Content/Feature.php:145
+#: src/Content/Feature.php:131
 msgid "Display Membership Date"
 msgstr ""
 
-#: src/Content/Feature.php:145
+#: src/Content/Feature.php:131
 msgid "Display membership date in profile"
 msgstr ""
 
-#: src/Content/Feature.php:150
+#: src/Content/Feature.php:136
 msgid "Advanced Calendar Settings"
 msgstr ""
 
-#: src/Content/Feature.php:151
+#: src/Content/Feature.php:137
 msgid "Allow anonymous access to your calendar"
 msgstr ""
 
-#: src/Content/Feature.php:151
+#: src/Content/Feature.php:137
 msgid "Allows anonymous visitors to consult your calendar and your public events. Contact birthday events are private to you."
 msgstr ""
 
-#: src/Content/GroupManager.php:149
+#: src/Content/GroupManager.php:135
 msgid "External link to group"
 msgstr ""
 
-#: src/Content/GroupManager.php:153 src/Content/Widget.php:513
+#: src/Content/GroupManager.php:139 src/Content/Widget.php:499
 msgid "show less"
 msgstr ""
 
-#: src/Content/GroupManager.php:154 src/Content/Widget.php:411
-#: src/Content/Widget.php:514
+#: src/Content/GroupManager.php:140 src/Content/Widget.php:397
+#: src/Content/Widget.php:500
 msgid "show more"
 msgstr ""
 
-#: src/Content/GroupManager.php:155
+#: src/Content/GroupManager.php:141
 msgid "Create new group"
 msgstr ""
 
-#: src/Content/Item.php:331 src/Model/Item.php:3296
+#: src/Content/Item.php:317 src/Model/Item.php:3282
 msgid "event"
 msgstr ""
 
-#: src/Content/Item.php:334 src/Content/Item.php:344
+#: src/Content/Item.php:320 src/Content/Item.php:330
 msgid "status"
 msgstr ""
 
-#: src/Content/Item.php:340 src/Model/Item.php:3298
-#: src/Module/Post/Tag/Add.php:123
+#: src/Content/Item.php:326 src/Model/Item.php:3284
+#: src/Module/Post/Tag/Add.php:109
 msgid "photo"
 msgstr ""
 
-#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141
+#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127
 #, php-format
 msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: src/Content/Item.php:428 view/theme/frio/theme.php:265
+#: src/Content/Item.php:414 view/theme/frio/theme.php:253
 msgid "Follow Thread"
 msgstr ""
 
-#: src/Content/Item.php:429 src/Model/Contact.php:1256
+#: src/Content/Item.php:415 src/Model/Contact.php:1253
 msgid "View Status"
 msgstr ""
 
-#: src/Content/Item.php:430 src/Content/Item.php:453 src/Model/Contact.php:1191
-#: src/Model/Contact.php:1247 src/Model/Contact.php:1257
-#: src/Module/Directory.php:158 src/Module/Settings/Profile/Index.php:264
+#: src/Content/Item.php:416 src/Content/Item.php:439 src/Model/Contact.php:1188
+#: src/Model/Contact.php:1244 src/Model/Contact.php:1254
+#: src/Module/Directory.php:144 src/Module/Settings/Profile/Index.php:250
 msgid "View Profile"
 msgstr ""
 
-#: src/Content/Item.php:431 src/Model/Contact.php:1258
+#: src/Content/Item.php:417 src/Model/Contact.php:1255
 msgid "View Photos"
 msgstr ""
 
-#: src/Content/Item.php:432 src/Model/Contact.php:1225
-#: src/Model/Profile.php:461
+#: src/Content/Item.php:418 src/Model/Contact.php:1222
+#: src/Model/Profile.php:447
 msgid "Network Posts"
 msgstr ""
 
-#: src/Content/Item.php:433 src/Model/Contact.php:1249
-#: src/Model/Contact.php:1260
+#: src/Content/Item.php:419 src/Model/Contact.php:1246
+#: src/Model/Contact.php:1257
 msgid "View Contact"
 msgstr ""
 
-#: src/Content/Item.php:434 src/Model/Contact.php:1261
+#: src/Content/Item.php:420 src/Model/Contact.php:1258
 msgid "Send PM"
 msgstr ""
 
-#: src/Content/Item.php:435 src/Module/Contact.php:474
-#: src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:116
-#: src/Module/Moderation/Users/Active.php:137
-#: src/Module/Moderation/Users/Index.php:152
+#: src/Content/Item.php:421 src/Module/Contact.php:460
+#: src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:102
+#: src/Module/Moderation/Users/Active.php:123
+#: src/Module/Moderation/Users/Index.php:138
 msgid "Block"
 msgstr ""
 
-#: src/Content/Item.php:436 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:540
-#: src/Module/Notifications/Introductions.php:140
-#: src/Module/Notifications/Introductions.php:212
-#: src/Module/Notifications/Notification.php:89
+#: src/Content/Item.php:422 src/Module/Contact.php:461
+#: src/Module/Contact/Profile.php:526
+#: src/Module/Notifications/Introductions.php:126
+#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Notifications/Notification.php:75
 msgid "Ignore"
 msgstr ""
 
-#: src/Content/Item.php:437 src/Module/Contact.php:476
-#: src/Module/Contact/Profile.php:548
+#: src/Content/Item.php:423 src/Module/Contact.php:462
+#: src/Module/Contact/Profile.php:534
 msgid "Collapse"
 msgstr ""
 
-#: src/Content/Item.php:438 src/Object/Post.php:302
+#: src/Content/Item.php:424 src/Object/Post.php:288
 #, php-format
 msgid "Ignore %s server"
 msgstr ""
 
-#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202
-#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516
+#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188
+#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502
 msgid "Languages"
 msgstr ""
 
-#: src/Content/Item.php:445 src/Object/Post.php:596
+#: src/Content/Item.php:431 src/Object/Post.php:582
 msgid "Search Text"
 msgstr ""
 
-#: src/Content/Item.php:450 src/Content/Widget.php:80
-#: src/Model/Contact.php:1250 src/Model/Contact.php:1262
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195
+#: src/Content/Item.php:436 src/Content/Widget.php:66
+#: src/Model/Contact.php:1247 src/Model/Contact.php:1259
+#: src/Module/Contact/Follow.php:153 view/theme/vier/theme.php:183
 msgid "Connect/Follow"
 msgstr ""
 
-#: src/Content/Item.php:884
+#: src/Content/Item.php:870
 msgid "Unable to fetch user."
 msgstr ""
 
-#: src/Content/Nav.php:121
+#: src/Content/Nav.php:107
 msgid "Nothing new here"
 msgstr ""
 
-#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63
 msgid "Go back"
 msgstr ""
 
-#: src/Content/Nav.php:126
+#: src/Content/Nav.php:112
 msgid "Clear notifications"
 msgstr ""
 
-#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869
+#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855
 msgid "@name, !group, #tags, content"
 msgstr ""
 
-#: src/Content/Nav.php:222 src/Module/Security/Login.php:161
+#: src/Content/Nav.php:208 src/Module/Security/Login.php:147
 msgid "Logout"
 msgstr ""
 
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:208
 msgid "End this session"
 msgstr ""
 
-#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
-#: src/Module/Security/Login.php:162
+#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30
+#: src/Module/Security/Login.php:148
 msgid "Login"
 msgstr ""
 
-#: src/Content/Nav.php:224
+#: src/Content/Nav.php:210
 msgid "Sign in"
 msgstr ""
 
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:518
+#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43
+#: src/Module/Contact.php:504
 msgid "Conversations"
 msgstr ""
 
-#: src/Content/Nav.php:229
+#: src/Content/Nav.php:215
 msgid "Conversations you started"
 msgstr ""
 
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:98 src/Module/Contact.php:510
-#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270
-#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233
+#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35
+#: src/Module/BaseSettings.php:84 src/Module/Contact.php:496
+#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256
+#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221
 msgid "Profile"
 msgstr ""
 
-#: src/Content/Nav.php:230 view/theme/frio/theme.php:233
+#: src/Content/Nav.php:216 view/theme/frio/theme.php:221
 msgid "Your profile page"
 msgstr ""
 
-#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65
-#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237
+#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51
+#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225
 msgid "Photos"
 msgstr ""
 
-#: src/Content/Nav.php:231 view/theme/frio/theme.php:237
+#: src/Content/Nav.php:217 view/theme/frio/theme.php:225
 msgid "Your photos"
 msgstr ""
 
-#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534
-#: view/theme/frio/theme.php:238
+#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59
+#: src/Module/BaseProfile.php:62 src/Module/Contact.php:520
+#: view/theme/frio/theme.php:226
 msgid "Media"
 msgstr ""
 
-#: src/Content/Nav.php:232 view/theme/frio/theme.php:238
+#: src/Content/Nav.php:218 view/theme/frio/theme.php:226
 msgid "Your postings with media"
 msgstr ""
 
-#: src/Content/Nav.php:233 src/Content/Nav.php:293
-#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88
-#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99
-#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239
-#: view/theme/frio/theme.php:243
+#: src/Content/Nav.php:219 src/Content/Nav.php:279
+#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74
+#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85
+#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227
+#: view/theme/frio/theme.php:231
 msgid "Calendar"
 msgstr ""
 
-#: src/Content/Nav.php:233 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:219 view/theme/frio/theme.php:227
 msgid "Your calendar"
 msgstr ""
 
-#: src/Content/Nav.php:234
+#: src/Content/Nav.php:220
 msgid "Personal notes"
 msgstr ""
 
-#: src/Content/Nav.php:234
+#: src/Content/Nav.php:220
 msgid "Your personal notes"
 msgstr ""
 
-#: src/Content/Nav.php:251 src/Content/Nav.php:308
+#: src/Content/Nav.php:237 src/Content/Nav.php:294
 msgid "Home"
 msgstr ""
 
-#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59
 msgid "Home Page"
 msgstr ""
 
-#: src/Content/Nav.php:255 src/Module/Register.php:175
-#: src/Module/Security/Login.php:128
+#: src/Content/Nav.php:241 src/Module/Register.php:161
+#: src/Module/Security/Login.php:114
 msgid "Register"
 msgstr ""
 
-#: src/Content/Nav.php:255
+#: src/Content/Nav.php:241
 msgid "Create an account"
 msgstr ""
 
-#: src/Content/Nav.php:261 src/Module/Help.php:67
-#: src/Module/Settings/TwoFactor/AppSpecific.php:132
-#: src/Module/Settings/TwoFactor/Index.php:139
-#: src/Module/Settings/TwoFactor/Recovery.php:110
-#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240
+#: src/Content/Nav.php:247 src/Module/Help.php:53
+#: src/Module/Settings/TwoFactor/AppSpecific.php:118
+#: src/Module/Settings/TwoFactor/Index.php:125
+#: src/Module/Settings/TwoFactor/Recovery.php:96
+#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228
 msgid "Help"
 msgstr ""
 
-#: src/Content/Nav.php:261
+#: src/Content/Nav.php:247
 msgid "Help and documentation"
 msgstr ""
 
-#: src/Content/Nav.php:265
+#: src/Content/Nav.php:251
 msgid "Apps"
 msgstr ""
 
-#: src/Content/Nav.php:265
+#: src/Content/Nav.php:251
 msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867
-#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112
+#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853
+#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98
 msgid "Search"
 msgstr ""
 
-#: src/Content/Nav.php:269
+#: src/Content/Nav.php:255
 msgid "Search site content"
 msgstr ""
 
-#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876
+#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862
 msgid "Full Text"
 msgstr ""
 
-#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877
-#: src/Content/Widget/TagCloud.php:68
+#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863
+#: src/Content/Widget/TagCloud.php:54
 msgid "Tags"
 msgstr ""
 
-#: src/Content/Nav.php:274 src/Content/Nav.php:329
-#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432
-#: src/Module/Contact.php:542 view/theme/frio/theme.php:246
+#: src/Content/Nav.php:260 src/Content/Nav.php:315
+#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113
+#: src/Module/BaseProfile.php:116 src/Module/Contact.php:418
+#: src/Module/Contact.php:528 view/theme/frio/theme.php:234
 msgid "Contacts"
 msgstr ""
 
-#: src/Content/Nav.php:289
+#: src/Content/Nav.php:275
 msgid "Community"
 msgstr ""
 
-#: src/Content/Nav.php:289
+#: src/Content/Nav.php:275
 msgid "Conversations on this and other servers"
 msgstr ""
 
-#: src/Content/Nav.php:296
+#: src/Content/Nav.php:282
 msgid "Directory"
 msgstr ""
 
-#: src/Content/Nav.php:296
+#: src/Content/Nav.php:282
 msgid "People directory"
 msgstr ""
 
-#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85
-#: src/Module/BaseModeration.php:108
+#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71
+#: src/Module/BaseModeration.php:94
 msgid "Information"
 msgstr ""
 
-#: src/Content/Nav.php:298
+#: src/Content/Nav.php:284
 msgid "Information about this friendica instance"
 msgstr ""
 
-#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78
-#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183
-#: src/Module/Tos.php:101
+#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64
+#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169
+#: src/Module/Tos.php:87
 msgid "Terms of Service"
 msgstr ""
 
-#: src/Content/Nav.php:301
+#: src/Content/Nav.php:287
 msgid "Terms of Service of this Friendica instance"
 msgstr ""
 
-#: src/Content/Nav.php:306 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:292 view/theme/frio/theme.php:230
 msgid "Network"
 msgstr ""
 
-#: src/Content/Nav.php:306 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:292 view/theme/frio/theme.php:230
 msgid "Conversations from your friends"
 msgstr ""
 
-#: src/Content/Nav.php:308 view/theme/frio/theme.php:232
+#: src/Content/Nav.php:294 view/theme/frio/theme.php:220
 msgid "Your posts and conversations"
 msgstr ""
 
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:298
 msgid "Introductions"
 msgstr ""
 
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:298
 msgid "Friend Requests"
 msgstr ""
 
-#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
-#: src/Module/Notifications/Introductions.php:75
+#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135
+#: src/Module/Notifications/Introductions.php:61
 msgid "Notifications"
 msgstr ""
 
-#: src/Content/Nav.php:314
+#: src/Content/Nav.php:300
 msgid "See all notifications"
 msgstr ""
 
-#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254
+#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:240
 msgid "Mark as seen"
 msgstr ""
 
-#: src/Content/Nav.php:315
+#: src/Content/Nav.php:301
 msgid "Mark all system notifications as seen"
 msgstr ""
 
-#: src/Content/Nav.php:318 view/theme/frio/theme.php:244
+#: src/Content/Nav.php:304 view/theme/frio/theme.php:232
 msgid "Private mail"
 msgstr ""
 
-#: src/Content/Nav.php:319
+#: src/Content/Nav.php:305
 msgid "Inbox"
 msgstr ""
 
-#: src/Content/Nav.php:320
+#: src/Content/Nav.php:306
 msgid "Outbox"
 msgstr ""
 
-#: src/Content/Nav.php:324
+#: src/Content/Nav.php:310
 msgid "Accounts"
 msgstr ""
 
-#: src/Content/Nav.php:324
+#: src/Content/Nav.php:310
 msgid "Manage other pages"
 msgstr ""
 
-#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114
-#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182
-#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245
+#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100
+#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168
+#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233
 msgid "Settings"
 msgstr ""
 
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:245
+#: src/Content/Nav.php:313 view/theme/frio/theme.php:233
 msgid "Account settings"
 msgstr ""
 
-#: src/Content/Nav.php:329 view/theme/frio/theme.php:246
+#: src/Content/Nav.php:315 view/theme/frio/theme.php:234
 msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105
 msgid "Admin"
 msgstr ""
 
-#: src/Content/Nav.php:334
+#: src/Content/Nav.php:320
 msgid "Site setup and configuration"
 msgstr ""
 
-#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128
-#: src/Module/Moderation/Blocklist/Contact.php:110
-#: src/Module/Moderation/Blocklist/Server/Add.php:121
-#: src/Module/Moderation/Blocklist/Server/Import.php:118
-#: src/Module/Moderation/Blocklist/Server/Index.php:95
-#: src/Module/Moderation/Item/Delete.php:61
-#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75
-#: src/Module/Moderation/Users/Active.php:133
-#: src/Module/Moderation/Users/Blocked.php:133
-#: src/Module/Moderation/Users/Deleted.php:80
-#: src/Module/Moderation/Users/Index.php:147
+#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114
+#: src/Module/Moderation/Blocklist/Contact.php:96
+#: src/Module/Moderation/Blocklist/Server/Add.php:107
+#: src/Module/Moderation/Blocklist/Server/Import.php:104
+#: src/Module/Moderation/Blocklist/Server/Index.php:81
+#: src/Module/Moderation/Item/Delete.php:47
+#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61
+#: src/Module/Moderation/Users/Active.php:119
+#: src/Module/Moderation/Users/Blocked.php:119
+#: src/Module/Moderation/Users/Deleted.php:66
+#: src/Module/Moderation/Users/Index.php:133
 msgid "Moderation"
 msgstr ""
 
-#: src/Content/Nav.php:335
+#: src/Content/Nav.php:321
 msgid "Content and user moderation"
 msgstr ""
 
-#: src/Content/Nav.php:338
+#: src/Content/Nav.php:324
 msgid "Navigation"
 msgstr ""
 
-#: src/Content/Nav.php:338
+#: src/Content/Nav.php:324
 msgid "Site map"
 msgstr ""
 
-#: src/Content/Pager.php:216
+#: src/Content/Pager.php:202
 msgid "first"
 msgstr ""
 
-#: src/Content/Pager.php:221
+#: src/Content/Pager.php:207
 msgid "prev"
 msgstr ""
 
-#: src/Content/Pager.php:276
+#: src/Content/Pager.php:262
 msgid "next"
 msgstr ""
 
-#: src/Content/Pager.php:281
+#: src/Content/Pager.php:267
 msgid "last"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880
-#: src/Content/Text/BBCode.php:1881
+#: src/Content/Text/BBCode.php:690 src/Content/Text/BBCode.php:1866
+#: src/Content/Text/BBCode.php:1867
 msgid "Image/photo"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:922
+#: src/Content/Text/BBCode.php:908
 #, php-format
 msgid "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4052
-#: src/Model/Item.php:4058 src/Model/Item.php:4059
+#: src/Content/Text/BBCode.php:933 src/Model/Item.php:4038
+#: src/Model/Item.php:4044 src/Model/Item.php:4045
 msgid "Link to source"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906
+#: src/Content/Text/BBCode.php:1747 src/Content/Text/HTML.php:892
 msgid "Click to open/close"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1816
+#: src/Content/Text/BBCode.php:1802
 msgid "$1 wrote:"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891
+#: src/Content/Text/BBCode.php:1876 src/Content/Text/BBCode.php:1877
 msgid "Encrypted content"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:2223
+#: src/Content/Text/BBCode.php:2209
 msgid "Invalid source protocol"
 msgstr ""
 
-#: src/Content/Text/BBCode.php:2242
+#: src/Content/Text/BBCode.php:2228
 msgid "Invalid link protocol"
 msgstr ""
 
-#: src/Content/Text/HTML.php:784
+#: src/Content/Text/HTML.php:770
 msgid "Loading more entries..."
 msgstr ""
 
-#: src/Content/Text/HTML.php:785
+#: src/Content/Text/HTML.php:771
 msgid "The end"
 msgstr ""
 
-#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127
-#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492
+#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113
+#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478
 msgid "Follow"
 msgstr ""
 
-#: src/Content/Widget.php:51
+#: src/Content/Widget.php:37
 msgid "Add New Contact"
 msgstr ""
 
-#: src/Content/Widget.php:52
+#: src/Content/Widget.php:38
 msgid "Enter address or web location"
 msgstr ""
 
-#: src/Content/Widget.php:53
+#: src/Content/Widget.php:39
 msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: src/Content/Widget.php:55
+#: src/Content/Widget.php:41
 msgid "Connect"
 msgstr ""
 
-#: src/Content/Widget.php:72
+#: src/Content/Widget.php:58
 #, php-format
 msgid "%d invitation available"
 msgid_plural "%d invitations available"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:193
+#: src/Content/Widget.php:64 view/theme/vier/theme.php:181
 msgid "Find People"
 msgstr ""
 
-#: src/Content/Widget.php:79 view/theme/vier/theme.php:194
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:182
 msgid "Enter name or interest"
 msgstr ""
 
-#: src/Content/Widget.php:81 view/theme/vier/theme.php:196
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:184
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: src/Content/Widget.php:82 src/Module/Contact.php:466
-#: src/Module/Directory.php:97 view/theme/vier/theme.php:197
+#: src/Content/Widget.php:68 src/Module/Contact.php:452
+#: src/Module/Directory.php:83 view/theme/vier/theme.php:185
 msgid "Find"
 msgstr ""
 
-#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:198
+#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59
+#: view/theme/vier/theme.php:186
 msgid "Friend Suggestions"
 msgstr ""
 
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:199
+#: src/Content/Widget.php:70 view/theme/vier/theme.php:187
 msgid "Similar Interests"
 msgstr ""
 
-#: src/Content/Widget.php:85 view/theme/vier/theme.php:200
+#: src/Content/Widget.php:71 view/theme/vier/theme.php:188
 msgid "Random Profile"
 msgstr ""
 
-#: src/Content/Widget.php:86 view/theme/vier/theme.php:201
+#: src/Content/Widget.php:72 view/theme/vier/theme.php:189
 msgid "Invite Friends"
 msgstr ""
 
-#: src/Content/Widget.php:87 src/Module/Directory.php:89
-#: view/theme/vier/theme.php:202
+#: src/Content/Widget.php:73 src/Module/Directory.php:75
+#: view/theme/vier/theme.php:190
 msgid "Global Directory"
 msgstr ""
 
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
+#: src/Content/Widget.php:75 view/theme/vier/theme.php:192
 msgid "Local Directory"
 msgstr ""
 
-#: src/Content/Widget.php:218
+#: src/Content/Widget.php:204
 msgid "Everyone"
 msgstr ""
 
-#: src/Content/Widget.php:243 src/Module/Contact.php:429
+#: src/Content/Widget.php:229 src/Module/Contact.php:415
 msgid "No relationship"
 msgstr ""
 
-#: src/Content/Widget.php:248
+#: src/Content/Widget.php:234
 msgid "Relationships"
 msgstr ""
 
-#: src/Content/Widget.php:250 src/Module/Circle.php:294
-#: src/Module/Contact.php:350
+#: src/Content/Widget.php:236 src/Module/Circle.php:280
+#: src/Module/Contact.php:336
 msgid "All Contacts"
 msgstr ""
 
-#: src/Content/Widget.php:291
+#: src/Content/Widget.php:277
 msgid "All Protocols"
 msgstr ""
 
-#: src/Content/Widget.php:321 src/Content/Widget.php:352
+#: src/Content/Widget.php:307 src/Content/Widget.php:338
 msgid "Everything"
 msgstr ""
 
-#: src/Content/Widget.php:350
+#: src/Content/Widget.php:336
 msgid "Categories"
 msgstr ""
 
-#: src/Content/Widget.php:407
+#: src/Content/Widget.php:393
 #, php-format
 msgid "%d contact in common"
 msgid_plural "%d contacts in common"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Widget.php:515
+#: src/Content/Widget.php:501
 msgid "On this date"
 msgstr ""
 
-#: src/Content/Widget.php:535
+#: src/Content/Widget.php:521
 msgid "Persons"
 msgstr ""
 
-#: src/Content/Widget.php:536
+#: src/Content/Widget.php:522
 msgid "Organisations"
 msgstr ""
 
-#: src/Content/Widget.php:537 src/Model/Contact.php:1754
+#: src/Content/Widget.php:523 src/Model/Contact.php:1751
 msgid "News"
 msgstr ""
 
-#: src/Content/Widget.php:539
+#: src/Content/Widget.php:525
 msgid "Relays"
 msgstr ""
 
-#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:70
+#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:56
 msgid "All"
 msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:56
+#: src/Content/Widget/CalendarExport.php:42
 msgid "Export"
 msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:57
+#: src/Content/Widget/CalendarExport.php:43
 msgid "Export calendar as ical"
 msgstr ""
 
-#: src/Content/Widget/CalendarExport.php:58
+#: src/Content/Widget/CalendarExport.php:44
 msgid "Export calendar as csv"
 msgstr ""
 
-#: src/Content/Widget/ContactBlock.php:79
+#: src/Content/Widget/ContactBlock.php:65
 msgid "No contacts"
 msgstr ""
 
-#: src/Content/Widget/ContactBlock.php:110
+#: src/Content/Widget/ContactBlock.php:96
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Widget/ContactBlock.php:127
+#: src/Content/Widget/ContactBlock.php:113
 msgid "View Contacts"
 msgstr ""
 
-#: src/Content/Widget/SavedSearches.php:47
+#: src/Content/Widget/SavedSearches.php:33
 msgid "Remove term"
 msgstr ""
 
-#: src/Content/Widget/TrendingTags.php:53
+#: src/Content/Widget/TrendingTags.php:39
 #, php-format
 msgid "Trending Tags (last %d hour)"
 msgid_plural "Trending Tags (last %d hours)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Content/Widget/TrendingTags.php:54
+#: src/Content/Widget/TrendingTags.php:40
 msgid "More Trending Tags"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219
-#: src/Model/Profile.php:455
+#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1216
+#: src/Model/Profile.php:441
 msgid "Post to group"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223
-#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91
+#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1220
+#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77
 msgid "Mention"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374
-#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201
+#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360
+#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187
 msgid "XMPP:"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375
-#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205
+#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361
+#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191
 msgid "Matrix:"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82
-#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960
-#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426
-#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193
-#: src/Module/Profile/Profile.php:223
+#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68
+#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946
+#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412
+#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179
+#: src/Module/Profile/Profile.php:209
 msgid "Location:"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483
-#: src/Module/Notifications/Introductions.php:207
+#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469
+#: src/Module/Notifications/Introductions.php:193
 msgid "Network:"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251
-#: src/Model/Contact.php:1263 src/Model/Profile.php:472
-#: src/Module/Contact/Profile.php:484
+#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1248
+#: src/Model/Contact.php:1260 src/Model/Profile.php:458
+#: src/Module/Contact/Profile.php:470
 msgid "Unfollow"
 msgstr ""
 
-#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221
-#: src/Model/Profile.php:457
+#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1218
+#: src/Model/Profile.php:443
 msgid "View group"
 msgstr ""
 
-#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271
+#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257
 msgid "Yourself"
 msgstr ""
 
-#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170
-#: src/Module/Privacy/PermissionTooltip.php:192
+#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156
+#: src/Module/Privacy/PermissionTooltip.php:178
 msgid "Mutuals"
 msgstr ""
 
-#: src/Core/ACL.php:294
+#: src/Core/ACL.php:280
 msgid "Post to Email"
 msgstr ""
 
-#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117
-#: src/Module/Privacy/PermissionTooltip.php:231
+#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103
+#: src/Module/Privacy/PermissionTooltip.php:217
 msgid "Public"
 msgstr ""
 
-#: src/Core/ACL.php:322
+#: src/Core/ACL.php:308
 msgid "This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."
 msgstr ""
 
-#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119
+#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105
 msgid "Limited/Private"
 msgstr ""
 
-#: src/Core/ACL.php:324
+#: src/Core/ACL.php:310
 msgid "This content will be shown only to the people in the first box, to the exception of the people mentioned in the second box. It won't appear anywhere public."
 msgstr ""
 
-#: src/Core/ACL.php:324
+#: src/Core/ACL.php:310
 msgid "Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles \"Followers\" and \"Mutuals\"."
 msgstr ""
 
-#: src/Core/ACL.php:325
+#: src/Core/ACL.php:311
 msgid "Show to:"
 msgstr ""
 
-#: src/Core/ACL.php:326
+#: src/Core/ACL.php:312
 msgid "Except to:"
 msgstr ""
 
-#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154
+#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140
 msgid "CC: email addresses"
 msgstr ""
 
-#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160
+#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146
 msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: src/Core/ACL.php:329
+#: src/Core/ACL.php:315
 msgid "Connectors"
 msgstr ""
 
-#: src/Core/Installer.php:180
+#: src/Core/Installer.php:166
 msgid "The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."
 msgstr ""
 
-#: src/Core/Installer.php:197
+#: src/Core/Installer.php:183
 msgid "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
 msgstr ""
 
-#: src/Core/Installer.php:198 src/Module/Install.php:207
-#: src/Module/Install.php:350
+#: src/Core/Installer.php:184 src/Module/Install.php:193
+#: src/Module/Install.php:336
 msgid "Please see the file \"doc/INSTALL.md\"."
 msgstr ""
 
-#: src/Core/Installer.php:259
+#: src/Core/Installer.php:245
 msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: src/Core/Installer.php:260
+#: src/Core/Installer.php:246
 msgid "If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/stable/doc/Install.md#set-up-the-worker'>'Setup the worker'</a>"
 msgstr ""
 
-#: src/Core/Installer.php:265
+#: src/Core/Installer.php:251
 msgid "PHP executable path"
 msgstr ""
 
-#: src/Core/Installer.php:265
+#: src/Core/Installer.php:251
 msgid "Enter full path to php executable. You can leave this blank to continue the installation."
 msgstr ""
 
-#: src/Core/Installer.php:270
+#: src/Core/Installer.php:256
 msgid "Command line PHP"
 msgstr ""
 
-#: src/Core/Installer.php:279
+#: src/Core/Installer.php:265
 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: src/Core/Installer.php:280
+#: src/Core/Installer.php:266
 msgid "Found PHP version: "
 msgstr ""
 
-#: src/Core/Installer.php:282
+#: src/Core/Installer.php:268
 msgid "PHP cli binary"
 msgstr ""
 
-#: src/Core/Installer.php:295
+#: src/Core/Installer.php:281
 msgid "The command line version of PHP on your system does not have \"register_argc_argv\" enabled."
 msgstr ""
 
-#: src/Core/Installer.php:296
+#: src/Core/Installer.php:282
 msgid "This is required for message delivery to work."
 msgstr ""
 
-#: src/Core/Installer.php:301
+#: src/Core/Installer.php:287
 msgid "PHP register_argc_argv"
 msgstr ""
 
-#: src/Core/Installer.php:333
+#: src/Core/Installer.php:319
 msgid "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"
 msgstr ""
 
-#: src/Core/Installer.php:334
+#: src/Core/Installer.php:320
 msgid "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."
 msgstr ""
 
-#: src/Core/Installer.php:337
+#: src/Core/Installer.php:323
 msgid "Generate encryption keys"
 msgstr ""
 
-#: src/Core/Installer.php:388
+#: src/Core/Installer.php:374
 msgid "Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:392
+#: src/Core/Installer.php:378
 msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: src/Core/Installer.php:398
+#: src/Core/Installer.php:384
 msgid "Error: PDO or MySQLi PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:402
+#: src/Core/Installer.php:388
 msgid "Error: The MySQL driver for PDO is not installed."
 msgstr ""
 
-#: src/Core/Installer.php:405
+#: src/Core/Installer.php:391
 msgid "PDO or MySQLi PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:411
+#: src/Core/Installer.php:397
 msgid "Error: The IntlChar module is not installed."
 msgstr ""
 
-#: src/Core/Installer.php:414
+#: src/Core/Installer.php:400
 msgid "IntlChar PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:422
+#: src/Core/Installer.php:408
 msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:426
+#: src/Core/Installer.php:412
 msgid "XML PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:429
+#: src/Core/Installer.php:415
 msgid "libCurl PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:430
+#: src/Core/Installer.php:416
 msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:436
+#: src/Core/Installer.php:422
 msgid "GD graphics PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:437
+#: src/Core/Installer.php:423
 msgid "Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:443
+#: src/Core/Installer.php:429
 msgid "OpenSSL PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:444
+#: src/Core/Installer.php:430
 msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:450
+#: src/Core/Installer.php:436
 msgid "mb_string PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:451
+#: src/Core/Installer.php:437
 msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:457
+#: src/Core/Installer.php:443
 msgid "iconv PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:458
+#: src/Core/Installer.php:444
 msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:464
+#: src/Core/Installer.php:450
 msgid "POSIX PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:465
+#: src/Core/Installer.php:451
 msgid "Error: POSIX PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:471
+#: src/Core/Installer.php:457
 msgid "Program execution functions"
 msgstr ""
 
-#: src/Core/Installer.php:472
+#: src/Core/Installer.php:458
 msgid "Error: Program execution functions (proc_open) required but not enabled."
 msgstr ""
 
-#: src/Core/Installer.php:478
+#: src/Core/Installer.php:464
 msgid "JSON PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:479
+#: src/Core/Installer.php:465
 msgid "Error: JSON PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:485
+#: src/Core/Installer.php:471
 msgid "File Information PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:486
+#: src/Core/Installer.php:472
 msgid "Error: File Information PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:492
+#: src/Core/Installer.php:478
 msgid "GNU Multiple Precision PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:493
+#: src/Core/Installer.php:479
 msgid "Error: GNU Multiple Precision PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:499
+#: src/Core/Installer.php:485
 msgid "IDN Functions PHP module"
 msgstr ""
 
-#: src/Core/Installer.php:500
+#: src/Core/Installer.php:486
 msgid "Error: IDN Functions PHP module required but not installed."
 msgstr ""
 
-#: src/Core/Installer.php:523
+#: src/Core/Installer.php:509
 msgid "The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."
 msgstr ""
 
-#: src/Core/Installer.php:524
+#: src/Core/Installer.php:510
 msgid "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."
 msgstr ""
 
-#: src/Core/Installer.php:525
+#: src/Core/Installer.php:511
 msgid "At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."
 msgstr ""
 
-#: src/Core/Installer.php:526
+#: src/Core/Installer.php:512
 msgid "You can alternatively skip this procedure and perform a manual installation. Please see the file \"doc/INSTALL.md\" for instructions."
 msgstr ""
 
-#: src/Core/Installer.php:529
+#: src/Core/Installer.php:515
 msgid "config/local.config.php is writable"
 msgstr ""
 
-#: src/Core/Installer.php:549
+#: src/Core/Installer.php:535
 msgid "Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: src/Core/Installer.php:550
+#: src/Core/Installer.php:536
 msgid "In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."
 msgstr ""
 
-#: src/Core/Installer.php:551
+#: src/Core/Installer.php:537
 msgid "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."
 msgstr ""
 
-#: src/Core/Installer.php:552
+#: src/Core/Installer.php:538
 msgid "Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."
 msgstr ""
 
-#: src/Core/Installer.php:555
+#: src/Core/Installer.php:541
 msgid "view/smarty3 is writable"
 msgstr ""
 
-#: src/Core/Installer.php:583
+#: src/Core/Installer.php:569
 msgid "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess."
 msgstr ""
 
-#: src/Core/Installer.php:584
+#: src/Core/Installer.php:570
 msgid "In some circumstances (like running inside containers), you can skip this error."
 msgstr ""
 
-#: src/Core/Installer.php:586
+#: src/Core/Installer.php:572
 msgid "Error message from Curl when fetching"
 msgstr ""
 
-#: src/Core/Installer.php:592
+#: src/Core/Installer.php:578
 msgid "Url rewrite is working"
 msgstr ""
 
-#: src/Core/Installer.php:621
+#: src/Core/Installer.php:607
 msgid "The detection of TLS to secure the communication between the browser and the new Friendica server failed."
 msgstr ""
 
-#: src/Core/Installer.php:622
+#: src/Core/Installer.php:608
 msgid "It is highly encouraged to use Friendica only over a secure connection as sensitive information like passwords will be transmitted."
 msgstr ""
 
-#: src/Core/Installer.php:623
+#: src/Core/Installer.php:609
 msgid "Please ensure that the connection to the server is secure."
 msgstr ""
 
-#: src/Core/Installer.php:624
+#: src/Core/Installer.php:610
 msgid "No TLS detected"
 msgstr ""
 
-#: src/Core/Installer.php:626
+#: src/Core/Installer.php:612
 msgid "TLS detected"
 msgstr ""
 
-#: src/Core/Installer.php:643
+#: src/Core/Installer.php:629
 msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: src/Core/Installer.php:645
+#: src/Core/Installer.php:631
 msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: src/Core/Installer.php:666
+#: src/Core/Installer.php:652
 msgid "Database already in use."
 msgstr ""
 
-#: src/Core/Installer.php:671
+#: src/Core/Installer.php:657
 msgid "Could not connect to database."
 msgstr ""
 
-#: src/Core/L10n.php:444 src/Model/Item.php:2340
+#: src/Core/L10n.php:430 src/Model/Item.php:2326
 msgid "Undetermined"
 msgstr ""
 
-#: src/Core/L10n.php:451
+#: src/Core/L10n.php:437
 #, php-format
 msgid "%s (%s)"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:430
-#: src/Module/Settings/Display.php:284
+#: src/Core/L10n.php:485 src/Model/Event.php:416
+#: src/Module/Settings/Display.php:270
 msgid "Monday"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:285
+#: src/Core/L10n.php:485 src/Model/Event.php:417
+#: src/Module/Settings/Display.php:271
 msgid "Tuesday"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:286
+#: src/Core/L10n.php:485 src/Model/Event.php:418
+#: src/Module/Settings/Display.php:272
 msgid "Wednesday"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:287
+#: src/Core/L10n.php:485 src/Model/Event.php:419
+#: src/Module/Settings/Display.php:273
 msgid "Thursday"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:288
+#: src/Core/L10n.php:485 src/Model/Event.php:420
+#: src/Module/Settings/Display.php:274
 msgid "Friday"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:289
+#: src/Core/L10n.php:485 src/Model/Event.php:421
+#: src/Module/Settings/Display.php:275
 msgid "Saturday"
 msgstr ""
 
-#: src/Core/L10n.php:499 src/Model/Event.php:429
-#: src/Module/Settings/Display.php:283
+#: src/Core/L10n.php:485 src/Model/Event.php:415
+#: src/Module/Settings/Display.php:269
 msgid "Sunday"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:450
+#: src/Core/L10n.php:489 src/Model/Event.php:436
 msgid "January"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:451
+#: src/Core/L10n.php:489 src/Model/Event.php:437
 msgid "February"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:452
+#: src/Core/L10n.php:489 src/Model/Event.php:438
 msgid "March"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:453
+#: src/Core/L10n.php:489 src/Model/Event.php:439
 msgid "April"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441
+#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427
 msgid "May"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:454
+#: src/Core/L10n.php:489 src/Model/Event.php:440
 msgid "June"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:455
+#: src/Core/L10n.php:489 src/Model/Event.php:441
 msgid "July"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:456
+#: src/Core/L10n.php:489 src/Model/Event.php:442
 msgid "August"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:457
+#: src/Core/L10n.php:489 src/Model/Event.php:443
 msgid "September"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:458
+#: src/Core/L10n.php:489 src/Model/Event.php:444
 msgid "October"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:459
+#: src/Core/L10n.php:489 src/Model/Event.php:445
 msgid "November"
 msgstr ""
 
-#: src/Core/L10n.php:503 src/Model/Event.php:460
+#: src/Core/L10n.php:489 src/Model/Event.php:446
 msgid "December"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:422
+#: src/Core/L10n.php:504 src/Model/Event.php:408
 msgid "Mon"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:423
+#: src/Core/L10n.php:504 src/Model/Event.php:409
 msgid "Tue"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:424
+#: src/Core/L10n.php:504 src/Model/Event.php:410
 msgid "Wed"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:425
+#: src/Core/L10n.php:504 src/Model/Event.php:411
 msgid "Thu"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:426
+#: src/Core/L10n.php:504 src/Model/Event.php:412
 msgid "Fri"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:427
+#: src/Core/L10n.php:504 src/Model/Event.php:413
 msgid "Sat"
 msgstr ""
 
-#: src/Core/L10n.php:518 src/Model/Event.php:421
+#: src/Core/L10n.php:504 src/Model/Event.php:407
 msgid "Sun"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:437
+#: src/Core/L10n.php:508 src/Model/Event.php:423
 msgid "Jan"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:438
+#: src/Core/L10n.php:508 src/Model/Event.php:424
 msgid "Feb"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:439
+#: src/Core/L10n.php:508 src/Model/Event.php:425
 msgid "Mar"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:440
+#: src/Core/L10n.php:508 src/Model/Event.php:426
 msgid "Apr"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:442
+#: src/Core/L10n.php:508 src/Model/Event.php:428
 msgid "Jun"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:443
+#: src/Core/L10n.php:508 src/Model/Event.php:429
 msgid "Jul"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:444
+#: src/Core/L10n.php:508 src/Model/Event.php:430
 msgid "Aug"
 msgstr ""
 
-#: src/Core/L10n.php:522
+#: src/Core/L10n.php:508
 msgid "Sep"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:446
+#: src/Core/L10n.php:508 src/Model/Event.php:432
 msgid "Oct"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:447
+#: src/Core/L10n.php:508 src/Model/Event.php:433
 msgid "Nov"
 msgstr ""
 
-#: src/Core/L10n.php:522 src/Model/Event.php:448
+#: src/Core/L10n.php:508 src/Model/Event.php:434
 msgid "Dec"
 msgstr ""
 
-#: src/Core/Logger/Util/LoggerSettingsCheck.php:60
+#: src/Core/Logger/Util/LoggerSettingsCheck.php:46
 #, php-format
 msgid "The logfile '%s' is not usable. No logging possible (error: '%s')"
 msgstr ""
 
-#: src/Core/Logger/Util/LoggerSettingsCheck.php:85
+#: src/Core/Logger/Util/LoggerSettingsCheck.php:71
 #, php-format
 msgid "The debug logfile '%s' is not usable. No logging possible (error: '%s')"
 msgstr ""
 
-#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 src/Core/Renderer.php:150
-#: src/Core/Renderer.php:184 src/Render/FriendicaSmartyEngine.php:60
+#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 src/Core/Renderer.php:136
+#: src/Core/Renderer.php:170 src/Render/FriendicaSmartyEngine.php:46
 msgid "Friendica can't display this page at the moment, please contact the administrator."
 msgstr ""
 
-#: src/Core/Renderer.php:146
+#: src/Core/Renderer.php:132
 msgid "template engine cannot be registered without a name."
 msgstr ""
 
-#: src/Core/Renderer.php:180
+#: src/Core/Renderer.php:166
 msgid "template engine is not registered!"
 msgstr ""
 
-#: src/Core/Storage/Type/FilesystemConfig.php:78
+#: src/Core/Storage/Type/FilesystemConfig.php:64
 msgid "Storage base path"
 msgstr ""
 
-#: src/Core/Storage/Type/FilesystemConfig.php:80
+#: src/Core/Storage/Type/FilesystemConfig.php:66
 msgid "Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"
 msgstr ""
 
-#: src/Core/Storage/Type/FilesystemConfig.php:93
+#: src/Core/Storage/Type/FilesystemConfig.php:79
 msgid "Enter a valid existing folder"
 msgstr ""
 
-#: src/Core/Update.php:80
+#: src/Core/Update.php:66
 #, php-format
 msgid "Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."
 msgstr ""
 
-#: src/Core/Update.php:91
+#: src/Core/Update.php:77
 #, php-format
 msgid "Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."
 msgstr ""
 
-#: src/Core/Update.php:183
+#: src/Core/Update.php:169
 #, php-format
 msgid "%s: executing pre update %d"
 msgstr ""
 
-#: src/Core/Update.php:225
+#: src/Core/Update.php:211
 #, php-format
 msgid "%s: executing post update %d"
 msgstr ""
 
-#: src/Core/Update.php:299
+#: src/Core/Update.php:285
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: src/Core/Update.php:339
+#: src/Core/Update.php:325
 #, php-format
 msgid ""
 "\n"
@@ -3069,45 +3068,45 @@ msgid ""
 "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
 msgstr ""
 
-#: src/Core/Update.php:345
+#: src/Core/Update.php:331
 #, php-format
 msgid "The error message is\\n[pre]%s[/pre]"
 msgstr ""
 
-#: src/Core/Update.php:349 src/Core/Update.php:377
+#: src/Core/Update.php:335 src/Core/Update.php:363
 msgid "[Friendica Notify] Database update"
 msgstr ""
 
-#: src/Core/Update.php:371
+#: src/Core/Update.php:357
 #, php-format
 msgid ""
 "\n"
 "\t\t\t\tThe friendica database was successfully updated from %s to %s."
 msgstr ""
 
-#: src/Database/DBStructure.php:57
+#: src/Database/DBStructure.php:43
 #, php-format
 msgid "The database version had been set to %s."
 msgstr ""
 
-#: src/Database/DBStructure.php:82
+#: src/Database/DBStructure.php:68
 #, php-format
 msgid "The post update is at version %d, it has to be at %d to safely drop the tables."
 msgstr ""
 
-#: src/Database/DBStructure.php:95
+#: src/Database/DBStructure.php:81
 msgid "No unused tables found."
 msgstr ""
 
-#: src/Database/DBStructure.php:100
+#: src/Database/DBStructure.php:86
 msgid "These tables are not used for friendica and will be deleted when you execute \"dbstructure drop -e\":"
 msgstr ""
 
-#: src/Database/DBStructure.php:137
+#: src/Database/DBStructure.php:123
 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format."
 msgstr ""
 
-#: src/Database/DBStructure.php:161
+#: src/Database/DBStructure.php:147
 #, php-format
 msgid ""
 "\n"
@@ -3115,639 +3114,639 @@ msgid ""
 "%s\n"
 msgstr ""
 
-#: src/Database/DBStructure.php:164
+#: src/Database/DBStructure.php:150
 msgid "Errors encountered performing database changes: "
 msgstr ""
 
-#: src/Database/DBStructure.php:232
+#: src/Database/DBStructure.php:218
 msgid "Another database update is currently running."
 msgstr ""
 
-#: src/Database/DBStructure.php:236
+#: src/Database/DBStructure.php:222
 #, php-format
 msgid "%s: Database update"
 msgstr ""
 
-#: src/Database/DBStructure.php:493
+#: src/Database/DBStructure.php:479
 #, php-format
 msgid "%s: updating %s table."
 msgstr ""
 
-#: src/Factory/Api/Mastodon/Error.php:42
+#: src/Factory/Api/Mastodon/Error.php:28
 msgid "Record not found"
 msgstr ""
 
-#: src/Factory/Api/Mastodon/Error.php:49
+#: src/Factory/Api/Mastodon/Error.php:35
 msgid "Unprocessable Entity"
 msgstr ""
 
-#: src/Factory/Api/Mastodon/Error.php:56
+#: src/Factory/Api/Mastodon/Error.php:42
 msgid "Unauthorized"
 msgstr ""
 
-#: src/Factory/Api/Mastodon/Error.php:62
+#: src/Factory/Api/Mastodon/Error.php:48
 msgid "Token is not authorized with a valid user or is missing a required scope"
 msgstr ""
 
-#: src/Factory/Api/Mastodon/Error.php:69
+#: src/Factory/Api/Mastodon/Error.php:55
 msgid "Internal Server Error"
 msgstr ""
 
-#: src/LegacyModule.php:63
+#: src/LegacyModule.php:49
 #, php-format
 msgid "Legacy module file not found: %s"
 msgstr ""
 
-#: src/Model/Circle.php:106
+#: src/Model/Circle.php:92
 msgid "A deleted circle with this name was revived. Existing item permissions <strong>may</strong> apply to this circle and any future members. If this is not what you intended, please create another circle with a different name."
 msgstr ""
 
-#: src/Model/Circle.php:544
+#: src/Model/Circle.php:530
 msgid "Everybody"
 msgstr ""
 
-#: src/Model/Circle.php:563
+#: src/Model/Circle.php:549
 msgid "edit"
 msgstr ""
 
-#: src/Model/Circle.php:600
+#: src/Model/Circle.php:586
 msgid "add"
 msgstr ""
 
-#: src/Model/Circle.php:605
+#: src/Model/Circle.php:591
 msgid "Edit circle"
 msgstr ""
 
-#: src/Model/Circle.php:606 src/Module/Circle.php:195
+#: src/Model/Circle.php:592 src/Module/Circle.php:181
 msgid "Contacts not in any circle"
 msgstr ""
 
-#: src/Model/Circle.php:608
+#: src/Model/Circle.php:594
 msgid "Create a new circle"
 msgstr ""
 
-#: src/Model/Circle.php:609 src/Module/Circle.php:180 src/Module/Circle.php:203
-#: src/Module/Circle.php:278
+#: src/Model/Circle.php:595 src/Module/Circle.php:166 src/Module/Circle.php:189
+#: src/Module/Circle.php:264
 msgid "Circle Name: "
 msgstr ""
 
-#: src/Model/Circle.php:610
+#: src/Model/Circle.php:596
 msgid "Edit circles"
 msgstr ""
 
-#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102
-#: src/Module/Notifications/Introductions.php:138
-#: src/Module/Notifications/Introductions.php:210
+#: src/Model/Contact.php:1267 src/Module/Moderation/Users/Pending.php:88
+#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:196
 msgid "Approve"
 msgstr ""
 
-#: src/Model/Contact.php:1750
+#: src/Model/Contact.php:1747
 msgid "Organisation"
 msgstr ""
 
-#: src/Model/Contact.php:1758
+#: src/Model/Contact.php:1755
 msgid "Group"
 msgstr ""
 
-#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:134
+#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:120
 msgid "Relay"
 msgstr ""
 
-#: src/Model/Contact.php:3097
+#: src/Model/Contact.php:3095
 msgid "Disallowed profile URL."
 msgstr ""
 
-#: src/Model/Contact.php:3102 src/Module/Friendica.php:100
+#: src/Model/Contact.php:3100 src/Module/Friendica.php:86
 msgid "Blocked domain"
 msgstr ""
 
-#: src/Model/Contact.php:3107
+#: src/Model/Contact.php:3105
 msgid "Connect URL missing."
 msgstr ""
 
-#: src/Model/Contact.php:3116
+#: src/Model/Contact.php:3114
 msgid "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."
 msgstr ""
 
-#: src/Model/Contact.php:3134
+#: src/Model/Contact.php:3132
 #, php-format
 msgid "Expected network %s does not match actual network %s"
 msgstr ""
 
-#: src/Model/Contact.php:3151
+#: src/Model/Contact.php:3149
 msgid "This seems to be a relay account. They can't be followed by users."
 msgstr ""
 
-#: src/Model/Contact.php:3158
+#: src/Model/Contact.php:3156
 msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: src/Model/Contact.php:3160
+#: src/Model/Contact.php:3158
 msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: src/Model/Contact.php:3163
+#: src/Model/Contact.php:3161
 msgid "An author or name was not found."
 msgstr ""
 
-#: src/Model/Contact.php:3166
+#: src/Model/Contact.php:3164
 msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: src/Model/Contact.php:3169
+#: src/Model/Contact.php:3167
 msgid "Unable to match @-style Identity Address with a known protocol or email contact."
 msgstr ""
 
-#: src/Model/Contact.php:3170
+#: src/Model/Contact.php:3168
 msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: src/Model/Contact.php:3176
+#: src/Model/Contact.php:3174
 msgid "The profile address specified belongs to a network which has been disabled on this site."
 msgstr ""
 
-#: src/Model/Contact.php:3181
+#: src/Model/Contact.php:3179
 msgid "Limited profile. This person will be unable to receive direct/personal notifications from you."
 msgstr ""
 
-#: src/Model/Contact.php:3247
+#: src/Model/Contact.php:3245
 msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: src/Model/Event.php:54
+#: src/Model/Event.php:40
 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)"
 msgstr ""
 
-#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469
-#: src/Model/Event.php:942
+#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455
+#: src/Model/Event.php:928
 msgid "Starts:"
 msgstr ""
 
-#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470
-#: src/Model/Event.php:946
+#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456
+#: src/Model/Event.php:932
 msgid "Finishes:"
 msgstr ""
 
-#: src/Model/Event.php:419
+#: src/Model/Event.php:405
 msgid "all-day"
 msgstr ""
 
-#: src/Model/Event.php:445
+#: src/Model/Event.php:431
 msgid "Sept"
 msgstr ""
 
-#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
-#: src/Util/Temporal.php:343
+#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114
+#: src/Util/Temporal.php:329
 msgid "today"
 msgstr ""
 
-#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353
+#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115
+#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339
 msgid "month"
 msgstr ""
 
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354
+#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116
+#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340
 msgid "week"
 msgstr ""
 
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355
+#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117
+#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341
 msgid "day"
 msgstr ""
 
-#: src/Model/Event.php:467
+#: src/Model/Event.php:453
 msgid "No events to display"
 msgstr ""
 
-#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70
-#: src/Module/Update/Profile.php:56
+#: src/Model/Event.php:502 src/Module/DFRN/Poll.php:33 src/Module/Feed.php:56
+#: src/Module/Update/Profile.php:42
 msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53
 msgid "Event not found."
 msgstr ""
 
-#: src/Model/Event.php:637
+#: src/Model/Event.php:623
 msgid "l, F j"
 msgstr ""
 
-#: src/Model/Event.php:664
+#: src/Model/Event.php:650
 msgid "Edit event"
 msgstr ""
 
-#: src/Model/Event.php:665
+#: src/Model/Event.php:651
 msgid "Duplicate event"
 msgstr ""
 
-#: src/Model/Event.php:666
+#: src/Model/Event.php:652
 msgid "Delete event"
 msgstr ""
 
-#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38
+#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24
 msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: src/Model/Event.php:897
+#: src/Model/Event.php:883
 msgid "D g:i A"
 msgstr ""
 
-#: src/Model/Event.php:898
+#: src/Model/Event.php:884
 msgid "g:i A"
 msgstr ""
 
-#: src/Model/Event.php:961 src/Model/Event.php:963
+#: src/Model/Event.php:947 src/Model/Event.php:949
 msgid "Show map"
 msgstr ""
 
-#: src/Model/Event.php:962
+#: src/Model/Event.php:948
 msgid "Hide map"
 msgstr ""
 
-#: src/Model/Event.php:1055
+#: src/Model/Event.php:1041
 #, php-format
 msgid "%s's birthday"
 msgstr ""
 
-#: src/Model/Event.php:1056
+#: src/Model/Event.php:1042
 #, php-format
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: src/Model/Item.php:2347
+#: src/Model/Item.php:2333
 #, php-format
 msgid "%s (%s - %s): %s"
 msgstr ""
 
-#: src/Model/Item.php:2349
+#: src/Model/Item.php:2335
 #, php-format
 msgid "%s (%s): %s"
 msgstr ""
 
-#: src/Model/Item.php:2352
+#: src/Model/Item.php:2338
 #, php-format
 msgid "Detected languages in this post:\\n%s"
 msgstr ""
 
-#: src/Model/Item.php:3300
+#: src/Model/Item.php:3286
 msgid "activity"
 msgstr ""
 
-#: src/Model/Item.php:3302
+#: src/Model/Item.php:3288
 msgid "comment"
 msgstr ""
 
-#: src/Model/Item.php:3305 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3291 src/Module/Post/Tag/Add.php:109
 msgid "post"
 msgstr ""
 
-#: src/Model/Item.php:3475
+#: src/Model/Item.php:3461
 #, php-format
 msgid "%s is blocked"
 msgstr ""
 
-#: src/Model/Item.php:3477
+#: src/Model/Item.php:3463
 #, php-format
 msgid "%s is ignored"
 msgstr ""
 
-#: src/Model/Item.php:3479
+#: src/Model/Item.php:3465
 #, php-format
 msgid "Content from %s is collapsed"
 msgstr ""
 
-#: src/Model/Item.php:3483
+#: src/Model/Item.php:3469
 msgid "Sensitive content"
 msgstr ""
 
-#: src/Model/Item.php:3952
+#: src/Model/Item.php:3938
 msgid "bytes"
 msgstr ""
 
-#: src/Model/Item.php:3983
+#: src/Model/Item.php:3969
 #, php-format
 msgid "%2$s (%3$d%%, %1$d vote)"
 msgid_plural "%2$s (%3$d%%, %1$d votes)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3985
+#: src/Model/Item.php:3971
 #, php-format
 msgid "%2$s (%1$d vote)"
 msgid_plural "%2$s (%1$d votes)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3990
+#: src/Model/Item.php:3976
 #, php-format
 msgid "%d voter. Poll end: %s"
 msgid_plural "%d voters. Poll end: %s"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3992
+#: src/Model/Item.php:3978
 #, php-format
 msgid "%d voter."
 msgid_plural "%d voters."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/Item.php:3994
+#: src/Model/Item.php:3980
 #, php-format
 msgid "Poll end: %s"
 msgstr ""
 
-#: src/Model/Item.php:4035 src/Model/Item.php:4036
+#: src/Model/Item.php:4021 src/Model/Item.php:4022
 msgid "View on separate page"
 msgstr ""
 
-#: src/Model/Mail.php:135
+#: src/Model/Mail.php:121
 msgid "[no subject]"
 msgstr ""
 
-#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168
+#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154
 msgid "Wall Photos"
 msgstr ""
 
-#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285
-#: src/Module/Profile/Profile.php:287
+#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271
+#: src/Module/Profile/Profile.php:273
 msgid "Edit profile"
 msgstr ""
 
-#: src/Model/Profile.php:359
+#: src/Model/Profile.php:345
 msgid "Change profile photo"
 msgstr ""
 
-#: src/Model/Profile.php:372 src/Module/Directory.php:153
-#: src/Module/Profile/Profile.php:211
+#: src/Model/Profile.php:358 src/Module/Directory.php:139
+#: src/Module/Profile/Profile.php:197
 msgid "Homepage:"
 msgstr ""
 
-#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432
-#: src/Module/Notifications/Introductions.php:195
+#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418
+#: src/Module/Notifications/Introductions.php:181
 msgid "About:"
 msgstr ""
 
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:460
 msgid "Atom feed"
 msgstr ""
 
-#: src/Model/Profile.php:481
+#: src/Model/Profile.php:467
 msgid "This website has been verified to belong to the same person."
 msgstr ""
 
-#: src/Model/Profile.php:532
+#: src/Model/Profile.php:518
 msgid "F d"
 msgstr ""
 
-#: src/Model/Profile.php:596 src/Model/Profile.php:677
+#: src/Model/Profile.php:582 src/Model/Profile.php:663
 msgid "[today]"
 msgstr ""
 
-#: src/Model/Profile.php:605
+#: src/Model/Profile.php:591
 msgid "Birthday Reminders"
 msgstr ""
 
-#: src/Model/Profile.php:606
+#: src/Model/Profile.php:592
 msgid "Birthdays this week:"
 msgstr ""
 
-#: src/Model/Profile.php:622
+#: src/Model/Profile.php:608
 msgid "g A l F d"
 msgstr ""
 
-#: src/Model/Profile.php:664
+#: src/Model/Profile.php:650
 msgid "[No description]"
 msgstr ""
 
-#: src/Model/Profile.php:690
+#: src/Model/Profile.php:676
 msgid "Event Reminders"
 msgstr ""
 
-#: src/Model/Profile.php:691
+#: src/Model/Profile.php:677
 msgid "Upcoming events the next 7 days:"
 msgstr ""
 
-#: src/Model/Profile.php:803
+#: src/Model/Profile.php:789
 msgid "Hometown:"
 msgstr ""
 
-#: src/Model/Profile.php:804
+#: src/Model/Profile.php:790
 msgid "Marital Status:"
 msgstr ""
 
-#: src/Model/Profile.php:805
+#: src/Model/Profile.php:791
 msgid "With:"
 msgstr ""
 
-#: src/Model/Profile.php:806
+#: src/Model/Profile.php:792
 msgid "Since:"
 msgstr ""
 
-#: src/Model/Profile.php:807
+#: src/Model/Profile.php:793
 msgid "Sexual Preference:"
 msgstr ""
 
-#: src/Model/Profile.php:808
+#: src/Model/Profile.php:794
 msgid "Political Views:"
 msgstr ""
 
-#: src/Model/Profile.php:809
+#: src/Model/Profile.php:795
 msgid "Religious Views:"
 msgstr ""
 
-#: src/Model/Profile.php:810
+#: src/Model/Profile.php:796
 msgid "Likes:"
 msgstr ""
 
-#: src/Model/Profile.php:811
+#: src/Model/Profile.php:797
 msgid "Dislikes:"
 msgstr ""
 
-#: src/Model/Profile.php:812
+#: src/Model/Profile.php:798
 msgid "Title/Description:"
 msgstr ""
 
-#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197
-#: src/Module/Moderation/Report/Create.php:280
-#: src/Module/Moderation/Summary.php:76
+#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183
+#: src/Module/Moderation/Report/Create.php:266
+#: src/Module/Moderation/Summary.php:62
 msgid "Summary"
 msgstr ""
 
-#: src/Model/Profile.php:814
+#: src/Model/Profile.php:800
 msgid "Musical interests"
 msgstr ""
 
-#: src/Model/Profile.php:815
+#: src/Model/Profile.php:801
 msgid "Books, literature"
 msgstr ""
 
-#: src/Model/Profile.php:816
+#: src/Model/Profile.php:802
 msgid "Television"
 msgstr ""
 
-#: src/Model/Profile.php:817
+#: src/Model/Profile.php:803
 msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: src/Model/Profile.php:818
+#: src/Model/Profile.php:804
 msgid "Hobbies/Interests"
 msgstr ""
 
-#: src/Model/Profile.php:819
+#: src/Model/Profile.php:805
 msgid "Love/romance"
 msgstr ""
 
-#: src/Model/Profile.php:820
+#: src/Model/Profile.php:806
 msgid "Work/employment"
 msgstr ""
 
-#: src/Model/Profile.php:821
+#: src/Model/Profile.php:807
 msgid "School/education"
 msgstr ""
 
-#: src/Model/Profile.php:822
+#: src/Model/Profile.php:808
 msgid "Contact information and Social Networks"
 msgstr ""
 
-#: src/Model/Profile.php:870
+#: src/Model/Profile.php:856
 #, php-format
 msgid "Responsible account: %s"
 msgstr ""
 
-#: src/Model/User.php:233 src/Model/User.php:1326
+#: src/Model/User.php:219 src/Model/User.php:1312
 msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: src/Model/User.php:756 src/Model/User.php:789
+#: src/Model/User.php:742 src/Model/User.php:775
 msgid "Login failed"
 msgstr ""
 
-#: src/Model/User.php:821
+#: src/Model/User.php:807
 msgid "Not enough information to authenticate"
 msgstr ""
 
-#: src/Model/User.php:946
+#: src/Model/User.php:932
 msgid "Password can't be empty"
 msgstr ""
 
-#: src/Model/User.php:988
+#: src/Model/User.php:974
 msgid "Empty passwords are not allowed."
 msgstr ""
 
-#: src/Model/User.php:992
+#: src/Model/User.php:978
 msgid "The new password has been exposed in a public data dump, please choose another."
 msgstr ""
 
-#: src/Model/User.php:996
+#: src/Model/User.php:982
 msgid "The password length is limited to 72 characters."
 msgstr ""
 
-#: src/Model/User.php:1000
+#: src/Model/User.php:986
 msgid "The password can't contain white spaces nor accentuated letters"
 msgstr ""
 
-#: src/Model/User.php:1209
+#: src/Model/User.php:1195
 msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: src/Model/User.php:1216
+#: src/Model/User.php:1202
 msgid "An invitation is required."
 msgstr ""
 
-#: src/Model/User.php:1220
+#: src/Model/User.php:1206
 msgid "Invitation could not be verified."
 msgstr ""
 
-#: src/Model/User.php:1228
+#: src/Model/User.php:1214
 msgid "Invalid OpenID url"
 msgstr ""
 
-#: src/Model/User.php:1241 src/Security/Authentication.php:228
+#: src/Model/User.php:1227 src/Security/Authentication.php:214
 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:1241 src/Security/Authentication.php:228
+#: src/Model/User.php:1227 src/Security/Authentication.php:214
 msgid "The error message was:"
 msgstr ""
 
-#: src/Model/User.php:1247
+#: src/Model/User.php:1233
 msgid "Please enter the required information."
 msgstr ""
 
-#: src/Model/User.php:1261
+#: src/Model/User.php:1247
 #, php-format
 msgid "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."
 msgstr ""
 
-#: src/Model/User.php:1268
+#: src/Model/User.php:1254
 #, php-format
 msgid "Username should be at least %s character."
 msgid_plural "Username should be at least %s characters."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/User.php:1272
+#: src/Model/User.php:1258
 #, php-format
 msgid "Username should be at most %s character."
 msgid_plural "Username should be at most %s characters."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Model/User.php:1280
+#: src/Model/User.php:1266
 msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: src/Model/User.php:1285
+#: src/Model/User.php:1271
 msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: src/Model/User.php:1289
+#: src/Model/User.php:1275
 msgid "Not a valid email address."
 msgstr ""
 
-#: src/Model/User.php:1292
+#: src/Model/User.php:1278
 msgid "The nickname was blocked from registration by the nodes admin."
 msgstr ""
 
-#: src/Model/User.php:1296 src/Model/User.php:1302
+#: src/Model/User.php:1282 src/Model/User.php:1288
 msgid "Cannot use that email."
 msgstr ""
 
-#: src/Model/User.php:1308
+#: src/Model/User.php:1294
 msgid "Your nickname can only contain a-z, 0-9 and _."
 msgstr ""
 
-#: src/Model/User.php:1316 src/Model/User.php:1373
+#: src/Model/User.php:1302 src/Model/User.php:1359
 msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: src/Model/User.php:1360 src/Model/User.php:1364
+#: src/Model/User.php:1346 src/Model/User.php:1350
 msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: src/Model/User.php:1387
+#: src/Model/User.php:1373
 msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: src/Model/User.php:1394
+#: src/Model/User.php:1380
 msgid "An error occurred creating your self contact. Please try again."
 msgstr ""
 
-#: src/Model/User.php:1399
+#: src/Model/User.php:1385
 msgid "Friends"
 msgstr ""
 
-#: src/Model/User.php:1403
+#: src/Model/User.php:1389
 msgid "An error occurred creating your default contact circle. Please try again."
 msgstr ""
 
-#: src/Model/User.php:1445
+#: src/Model/User.php:1437
 msgid "Profile Photos"
 msgstr ""
 
-#: src/Model/User.php:1633
+#: src/Model/User.php:1625
 #, php-format
 msgid ""
 "\n"
@@ -3755,7 +3754,7 @@ msgid ""
 "\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: src/Model/User.php:1636
+#: src/Model/User.php:1628
 #, php-format
 msgid ""
 "\n"
@@ -3786,12 +3785,12 @@ msgid ""
 "\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: src/Model/User.php:1668 src/Model/User.php:1774
+#: src/Model/User.php:1660 src/Model/User.php:1766
 #, php-format
 msgid "Registration details for %s"
 msgstr ""
 
-#: src/Model/User.php:1688
+#: src/Model/User.php:1680
 #, php-format
 msgid ""
 "\n"
@@ -3806,12 +3805,12 @@ msgid ""
 "\t\t"
 msgstr ""
 
-#: src/Model/User.php:1707
+#: src/Model/User.php:1699
 #, php-format
 msgid "Registration at %s"
 msgstr ""
 
-#: src/Model/User.php:1731
+#: src/Model/User.php:1723
 #, php-format
 msgid ""
 "\n"
@@ -3820,7 +3819,7 @@ msgid ""
 "\t\t\t"
 msgstr ""
 
-#: src/Model/User.php:1739
+#: src/Model/User.php:1731
 #, php-format
 msgid ""
 "\n"
@@ -3851,676 +3850,676 @@ msgid ""
 "\t\t\tThank you and welcome to %2$s."
 msgstr ""
 
-#: src/Model/User.php:1801
+#: src/Model/User.php:1793
 msgid "User with delegates can't be removed, please remove delegate users first"
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:65
+#: src/Module/Admin/Addons/Details.php:51
 msgid "Addon not found."
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55
+#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41
 #, php-format
 msgid "Addon %s disabled."
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57
+#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43
 #, php-format
 msgid "Addon %s enabled."
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:88
-#: src/Module/Admin/Themes/Details.php:52
+#: src/Module/Admin/Addons/Details.php:74
+#: src/Module/Admin/Themes/Details.php:38
 msgid "Disable"
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:91
-#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340
+#: src/Module/Admin/Addons/Details.php:77
+#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326
 msgid "Enable"
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:73
-#: src/Module/Admin/Federation.php:220 src/Module/Admin/Logs/Settings.php:88
-#: src/Module/Admin/Logs/View.php:85 src/Module/Admin/Queue.php:73
-#: src/Module/Admin/Site.php:463 src/Module/Admin/Storage.php:138
-#: src/Module/Admin/Summary.php:196 src/Module/Admin/Themes/Details.php:96
-#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77
-#: src/Module/Moderation/Users/Create.php:61
-#: src/Module/Moderation/Users/Pending.php:96
+#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59
+#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74
+#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59
+#: src/Module/Admin/Site.php:449 src/Module/Admin/Storage.php:124
+#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82
+#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63
+#: src/Module/Moderation/Users/Create.php:47
+#: src/Module/Moderation/Users/Pending.php:82
 msgid "Administration"
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:112 src/Module/Admin/Addons/Index.php:74
-#: src/Module/BaseAdmin.php:92 src/Module/BaseSettings.php:139
+#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60
+#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125
 msgid "Addons"
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:113
-#: src/Module/Admin/Themes/Details.php:98
+#: src/Module/Admin/Addons/Details.php:99
+#: src/Module/Admin/Themes/Details.php:84
 msgid "Toggle"
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:120
-#: src/Module/Admin/Themes/Details.php:106
+#: src/Module/Admin/Addons/Details.php:106
+#: src/Module/Admin/Themes/Details.php:92
 msgid "Author: "
 msgstr ""
 
-#: src/Module/Admin/Addons/Details.php:121
-#: src/Module/Admin/Themes/Details.php:107
+#: src/Module/Admin/Addons/Details.php:107
+#: src/Module/Admin/Themes/Details.php:93
 msgid "Maintainer: "
 msgstr ""
 
-#: src/Module/Admin/Addons/Index.php:48
+#: src/Module/Admin/Addons/Index.php:34
 msgid "Addons reloaded"
 msgstr ""
 
-#: src/Module/Admin/Addons/Index.php:59
+#: src/Module/Admin/Addons/Index.php:45
 #, php-format
 msgid "Addon %s failed to install."
 msgstr ""
 
-#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83
-#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:466
-#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86
-#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78
-#: src/Module/Settings/Connectors.php:163
-#: src/Module/Settings/Connectors.php:256
-#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309
-#: src/Module/Settings/Features.php:75
+#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69
+#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:452
+#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72
+#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64
+#: src/Module/Settings/Connectors.php:149
+#: src/Module/Settings/Connectors.php:242
+#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295
+#: src/Module/Settings/Features.php:61
 msgid "Save Settings"
 msgstr ""
 
-#: src/Module/Admin/Addons/Index.php:76
+#: src/Module/Admin/Addons/Index.php:62
 msgid "Reload active addons"
 msgstr ""
 
-#: src/Module/Admin/Addons/Index.php:80
+#: src/Module/Admin/Addons/Index.php:66
 #, php-format
 msgid "There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:51
+#: src/Module/Admin/DBSync.php:37
 msgid "Update has been marked successful"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:59
+#: src/Module/Admin/DBSync.php:45
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:61
+#: src/Module/Admin/DBSync.php:47
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:76
+#: src/Module/Admin/DBSync.php:62
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:78
+#: src/Module/Admin/DBSync.php:64
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:81
+#: src/Module/Admin/DBSync.php:67
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:84
+#: src/Module/Admin/DBSync.php:70
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:105
+#: src/Module/Admin/DBSync.php:91
 msgid "No failed updates."
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:106
+#: src/Module/Admin/DBSync.php:92
 msgid "Check database structure"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:110
+#: src/Module/Admin/DBSync.php:96
 msgid "Failed Updates"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:111
+#: src/Module/Admin/DBSync.php:97
 msgid "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:112
+#: src/Module/Admin/DBSync.php:98
 msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: src/Module/Admin/DBSync.php:113
+#: src/Module/Admin/DBSync.php:99
 msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: src/Module/Admin/Features.php:67
-#: src/Module/Notifications/Introductions.php:150
-#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138
-#: src/Module/Settings/TwoFactor/Trusted.php:129
+#: src/Module/Admin/Features.php:53
+#: src/Module/Notifications/Introductions.php:136
+#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124
+#: src/Module/Settings/TwoFactor/Trusted.php:115
 msgid "No"
 msgstr ""
 
-#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105
-#: src/Module/Notifications/Introductions.php:150
-#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137
-#: src/Module/Settings/TwoFactor/Trusted.php:129
+#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91
+#: src/Module/Notifications/Introductions.php:136
+#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123
+#: src/Module/Settings/TwoFactor/Trusted.php:115
 msgid "Yes"
 msgstr ""
 
-#: src/Module/Admin/Features.php:67
+#: src/Module/Admin/Features.php:53
 msgid "Locked"
 msgstr ""
 
-#: src/Module/Admin/Features.php:81
+#: src/Module/Admin/Features.php:67
 msgid "Manage Additional Features"
 msgstr ""
 
-#: src/Module/Admin/Federation.php:82
-#: src/Module/Moderation/Report/Create.php:191
-#: src/Module/Moderation/Report/Create.php:316
+#: src/Module/Admin/Federation.php:68
+#: src/Module/Moderation/Report/Create.php:177
+#: src/Module/Moderation/Report/Create.php:302
 msgid "Other"
 msgstr ""
 
-#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408
+#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394
 msgid "unknown"
 msgstr ""
 
-#: src/Module/Admin/Federation.php:193
+#: src/Module/Admin/Federation.php:179
 #, php-format
 msgid "%2$s total system"
 msgid_plural "%2$s total systems"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:194
+#: src/Module/Admin/Federation.php:180
 #, php-format
 msgid "%2$s active user last month"
 msgid_plural "%2$s active users last month"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:195
+#: src/Module/Admin/Federation.php:181
 #, php-format
 msgid "%2$s active user last six months"
 msgid_plural "%2$s active users last six months"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:196
+#: src/Module/Admin/Federation.php:182
 #, php-format
 msgid "%2$s registered user"
 msgid_plural "%2$s registered users"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:197
+#: src/Module/Admin/Federation.php:183
 #, php-format
 msgid "%2$s locally created post or comment"
 msgid_plural "%2$s locally created posts and comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:200
+#: src/Module/Admin/Federation.php:186
 #, php-format
 msgid "%2$s post per user"
 msgid_plural "%2$s posts per user"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:205
+#: src/Module/Admin/Federation.php:191
 #, php-format
 msgid "%2$s user per system"
 msgid_plural "%2$s users per system"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Federation.php:215
+#: src/Module/Admin/Federation.php:201
 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 ""
 
-#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87
+#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73
 msgid "Federation Statistics"
 msgstr ""
 
-#: src/Module/Admin/Federation.php:224
+#: src/Module/Admin/Federation.php:210
 #, php-format
 msgid "Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:"
 msgid_plural "Currently this node is aware of %2$s nodes (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Admin/Logs/Settings.php:47
+#: src/Module/Admin/Logs/Settings.php:33
 #, php-format
 msgid "The logfile '%s' is not writable. No logging possible"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:80
+#: src/Module/Admin/Logs/Settings.php:66
 msgid "PHP log currently enabled."
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:82
+#: src/Module/Admin/Logs/Settings.php:68
 msgid "PHP log currently disabled."
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102
-#: src/Module/BaseAdmin.php:103
+#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88
+#: src/Module/BaseAdmin.php:89
 msgid "Logs"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:91
+#: src/Module/Admin/Logs/Settings.php:77
 msgid "Clear"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:94
+#: src/Module/Admin/Logs/Settings.php:80
 msgid "Enable Debugging"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95
-#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:486
-#: src/Module/Admin/Site.php:494
+#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81
+#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:472
+#: src/Module/Admin/Site.php:480
 msgid "<strong>Read-only</strong> because it is set by an environment variable"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:95
+#: src/Module/Admin/Logs/Settings.php:81
 msgid "Log file"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:95
+#: src/Module/Admin/Logs/Settings.php:81
 msgid "Must be writable by web server. Relative to your Friendica top-level directory."
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:96
+#: src/Module/Admin/Logs/Settings.php:82
 msgid "Log level"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:98
+#: src/Module/Admin/Logs/Settings.php:84
 msgid "PHP logging"
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:99
+#: src/Module/Admin/Logs/Settings.php:85
 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 ""
 
-#: src/Module/Admin/Logs/View.php:72
+#: src/Module/Admin/Logs/View.php:58
 #, php-format
 msgid "Error trying to open <strong>%1$s</strong> log file.<br/>Check to see if file %1$s exist and is readable."
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:81
+#: src/Module/Admin/Logs/View.php:67
 #, php-format
 msgid "Couldn't open <strong>%1$s</strong> log file.<br/>Check to see if file %1$s is readable."
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104
+#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90
 msgid "View Logs"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:89
+#: src/Module/Admin/Logs/View.php:75
 msgid "Search in logs"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:90
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Admin/Logs/View.php:76
+#: src/Module/Notifications/Notifications.php:132
 msgid "Show all"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:91
+#: src/Module/Admin/Logs/View.php:77
 msgid "Date"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:92
+#: src/Module/Admin/Logs/View.php:78
 msgid "Level"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:93
+#: src/Module/Admin/Logs/View.php:79
 msgid "Context"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:95
+#: src/Module/Admin/Logs/View.php:81
 msgid "ALL"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:96
+#: src/Module/Admin/Logs/View.php:82
 msgid "View details"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:97
+#: src/Module/Admin/Logs/View.php:83
 msgid "Click to view details"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207
+#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193
 msgid "Event details"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:99
+#: src/Module/Admin/Logs/View.php:85
 msgid "Data"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:100
-#: src/Module/Debug/ActivityPubConversion.php:63
+#: src/Module/Admin/Logs/View.php:86
+#: src/Module/Debug/ActivityPubConversion.php:49
 msgid "Source"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:101
+#: src/Module/Admin/Logs/View.php:87
 msgid "File"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:102
+#: src/Module/Admin/Logs/View.php:88
 msgid "Line"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:103
+#: src/Module/Admin/Logs/View.php:89
 msgid "Function"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:104
+#: src/Module/Admin/Logs/View.php:90
 msgid "UID"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:105
+#: src/Module/Admin/Logs/View.php:91
 msgid "Process ID"
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:106
+#: src/Module/Admin/Logs/View.php:92
 msgid "Close"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:50
+#: src/Module/Admin/Queue.php:36
 msgid "Inspect Deferred Worker Queue"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:51
+#: src/Module/Admin/Queue.php:37
 msgid "This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."
 msgstr ""
 
-#: src/Module/Admin/Queue.php:54
+#: src/Module/Admin/Queue.php:40
 msgid "Inspect Worker Queue"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:55
+#: src/Module/Admin/Queue.php:41
 msgid "This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."
 msgstr ""
 
-#: src/Module/Admin/Queue.php:76
+#: src/Module/Admin/Queue.php:62
 msgid "ID"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:77
+#: src/Module/Admin/Queue.php:63
 msgid "Command"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:78
+#: src/Module/Admin/Queue.php:64
 msgid "Job Parameters"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116
-#: src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102
+#: src/Module/Settings/OAuth.php:60
 msgid "Created"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:80
+#: src/Module/Admin/Queue.php:66
 msgid "Next Try"
 msgstr ""
 
-#: src/Module/Admin/Queue.php:81
+#: src/Module/Admin/Queue.php:67
 msgid "Priority"
 msgstr ""
 
-#: src/Module/Admin/Site.php:245
+#: src/Module/Admin/Site.php:231
 #, php-format
 msgid "%s is no valid input for maximum media size"
 msgstr ""
 
-#: src/Module/Admin/Site.php:250
+#: src/Module/Admin/Site.php:236
 #, php-format
 msgid "%s is no valid input for maximum image size"
 msgstr ""
 
-#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:215
+#: src/Module/Admin/Site.php:364 src/Module/Settings/Display.php:201
 msgid "No special theme for mobile devices"
 msgstr ""
 
-#: src/Module/Admin/Site.php:395 src/Module/Settings/Display.php:225
+#: src/Module/Admin/Site.php:381 src/Module/Settings/Display.php:211
 #, php-format
 msgid "%s - (Experimental)"
 msgstr ""
 
-#: src/Module/Admin/Site.php:407
+#: src/Module/Admin/Site.php:393
 msgid "No community page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:408
+#: src/Module/Admin/Site.php:394
 msgid "No community page for visitors"
 msgstr ""
 
-#: src/Module/Admin/Site.php:409
+#: src/Module/Admin/Site.php:395
 msgid "Public postings from users of this site"
 msgstr ""
 
-#: src/Module/Admin/Site.php:410
+#: src/Module/Admin/Site.php:396
 msgid "Public postings from the federated network"
 msgstr ""
 
-#: src/Module/Admin/Site.php:411
+#: src/Module/Admin/Site.php:397
 msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:403
 msgid "Multi user instance"
 msgstr ""
 
-#: src/Module/Admin/Site.php:440
+#: src/Module/Admin/Site.php:426
 msgid "Closed"
 msgstr ""
 
-#: src/Module/Admin/Site.php:441
+#: src/Module/Admin/Site.php:427
 msgid "Requires approval"
 msgstr ""
 
-#: src/Module/Admin/Site.php:442
+#: src/Module/Admin/Site.php:428
 msgid "Open"
 msgstr ""
 
-#: src/Module/Admin/Site.php:446
+#: src/Module/Admin/Site.php:432
 msgid "Don't check"
 msgstr ""
 
-#: src/Module/Admin/Site.php:447
+#: src/Module/Admin/Site.php:433
 msgid "check the stable version"
 msgstr ""
 
-#: src/Module/Admin/Site.php:448
+#: src/Module/Admin/Site.php:434
 msgid "check the development version"
 msgstr ""
 
-#: src/Module/Admin/Site.php:452
+#: src/Module/Admin/Site.php:438
 msgid "none"
 msgstr ""
 
-#: src/Module/Admin/Site.php:453
+#: src/Module/Admin/Site.php:439
 msgid "Local contacts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:440
 msgid "Interactors"
 msgstr ""
 
-#: src/Module/Admin/Site.php:464 src/Module/BaseAdmin.php:90
+#: src/Module/Admin/Site.php:450 src/Module/BaseAdmin.php:76
 msgid "Site"
 msgstr ""
 
-#: src/Module/Admin/Site.php:465
+#: src/Module/Admin/Site.php:451
 msgid "General Information"
 msgstr ""
 
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:453
 msgid "Republish users to directory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:468 src/Module/Register.php:159
+#: src/Module/Admin/Site.php:454 src/Module/Register.php:145
 msgid "Registration"
 msgstr ""
 
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:455
 msgid "File upload"
 msgstr ""
 
-#: src/Module/Admin/Site.php:470
+#: src/Module/Admin/Site.php:456
 msgid "Policies"
 msgstr ""
 
-#: src/Module/Admin/Site.php:471 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278
+#: src/Module/Admin/Site.php:457 src/Module/Calendar/Event/Form.php:238
+#: src/Module/Contact.php:539 src/Module/Profile/Profile.php:264
 msgid "Advanced"
 msgstr ""
 
-#: src/Module/Admin/Site.php:472
+#: src/Module/Admin/Site.php:458
 msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:459
 msgid "Performance"
 msgstr ""
 
-#: src/Module/Admin/Site.php:474
+#: src/Module/Admin/Site.php:460
 msgid "Worker"
 msgstr ""
 
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:461
 msgid "Message Relay"
 msgstr ""
 
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:462
 msgid "Use the command \"console relay\" in the command line to add or remove relays."
 msgstr ""
 
-#: src/Module/Admin/Site.php:477
+#: src/Module/Admin/Site.php:463
 msgid "The system is not subscribed to any relays at the moment."
 msgstr ""
 
-#: src/Module/Admin/Site.php:478
+#: src/Module/Admin/Site.php:464
 msgid "The system is currently subscribed to the following relays:"
 msgstr ""
 
-#: src/Module/Admin/Site.php:481
+#: src/Module/Admin/Site.php:467
 msgid "Relocate Node"
 msgstr ""
 
-#: src/Module/Admin/Site.php:482
+#: src/Module/Admin/Site.php:468
 msgid "Relocating your node enables you to change the DNS domain of this node and keep all the existing users and posts. This process takes a while and can only be started from the relocate console command like this:"
 msgstr ""
 
-#: src/Module/Admin/Site.php:483
+#: src/Module/Admin/Site.php:469
 msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
 msgstr ""
 
-#: src/Module/Admin/Site.php:486
+#: src/Module/Admin/Site.php:472
 msgid "Site name"
 msgstr ""
 
-#: src/Module/Admin/Site.php:487
+#: src/Module/Admin/Site.php:473
 msgid "Sender Email"
 msgstr ""
 
-#: src/Module/Admin/Site.php:487
+#: src/Module/Admin/Site.php:473
 msgid "The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:474
 msgid "Name of the system actor"
 msgstr ""
 
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:474
 msgid "Name of the internal system account that is used to perform ActivityPub requests. This must be an unused username. If set, this can't be changed again."
 msgstr ""
 
-#: src/Module/Admin/Site.php:489
+#: src/Module/Admin/Site.php:475
 msgid "Banner/Logo"
 msgstr ""
 
-#: src/Module/Admin/Site.php:490
+#: src/Module/Admin/Site.php:476
 msgid "Email Banner/Logo"
 msgstr ""
 
-#: src/Module/Admin/Site.php:491
+#: src/Module/Admin/Site.php:477
 msgid "Shortcut icon"
 msgstr ""
 
-#: src/Module/Admin/Site.php:491
+#: src/Module/Admin/Site.php:477
 msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: src/Module/Admin/Site.php:492
+#: src/Module/Admin/Site.php:478
 msgid "Touch icon"
 msgstr ""
 
-#: src/Module/Admin/Site.php:492
+#: src/Module/Admin/Site.php:478
 msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:479
 msgid "Additional Info"
 msgstr ""
 
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:479
 #, php-format
 msgid "For public servers: you can add additional information here that will be listed at %s/servers."
 msgstr ""
 
-#: src/Module/Admin/Site.php:494
+#: src/Module/Admin/Site.php:480
 msgid "System language"
 msgstr ""
 
-#: src/Module/Admin/Site.php:495
+#: src/Module/Admin/Site.php:481
 msgid "System theme"
 msgstr ""
 
-#: src/Module/Admin/Site.php:495
+#: src/Module/Admin/Site.php:481
 #, php-format
 msgid "Default system theme - may be over-ridden by user profiles - <a href=\"%s\" id=\"cnftheme\">Change default theme settings</a>"
 msgstr ""
 
-#: src/Module/Admin/Site.php:496
+#: src/Module/Admin/Site.php:482
 msgid "Mobile system theme"
 msgstr ""
 
-#: src/Module/Admin/Site.php:496
+#: src/Module/Admin/Site.php:482
 msgid "Theme for mobile devices"
 msgstr ""
 
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:483
 msgid "Force SSL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:483
 msgid "Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."
 msgstr ""
 
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:484
 msgid "Show help entry from navigation menu"
 msgstr ""
 
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:484
 msgid "Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly."
 msgstr ""
 
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:485
 msgid "Single user instance"
 msgstr ""
 
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:485
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:487
 msgid "Maximum image size"
 msgstr ""
 
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:487
 #, php-format
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
@@ -4528,27 +4527,27 @@ msgid ""
 "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently <code>upload_max_filesize</code> is set to %s (%s byte)"
 msgstr ""
 
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:491
 msgid "Maximum image length"
 msgstr ""
 
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:491
 msgid "Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."
 msgstr ""
 
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:492
 msgid "JPEG image quality"
 msgstr ""
 
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:492
 msgid "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."
 msgstr ""
 
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:493
 msgid "Maximum media file size"
 msgstr ""
 
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:493
 #, php-format
 msgid ""
 "Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
@@ -4556,3050 +4555,3050 @@ msgid ""
 "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently <code>upload_max_filesize</code> is set to %s (%s byte)"
 msgstr ""
 
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:498
 msgid "Register policy"
 msgstr ""
 
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:499
 msgid "Maximum Users"
 msgstr ""
 
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:499
 msgid "If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval."
 msgstr ""
 
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:500
 msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:500
 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 ""
 
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:501
 msgid "Register text"
 msgstr ""
 
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:501
 msgid "Will be displayed prominently on the registration page. You can use BBCode here."
 msgstr ""
 
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:502
 msgid "Forbidden Nicknames"
 msgstr ""
 
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:502
 msgid "Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142."
 msgstr ""
 
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:503
 msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:503
 msgid "Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:504
 msgid "Allowed friend domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:504
 msgid "Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:505
 msgid "Allowed email domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:505
 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 ""
 
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:506
 msgid "Disallowed email domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:520
+#: src/Module/Admin/Site.php:506
 msgid "Comma separated list of domains which are rejected as email addresses for registrations to this site. Wildcards are accepted."
 msgstr ""
 
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:507
 msgid "No OEmbed rich content"
 msgstr ""
 
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:507
 msgid "Don't show the rich content (e.g. embedded PDF), except from the domains listed below."
 msgstr ""
 
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:508
 msgid "Trusted third-party domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:508
 msgid "Comma separated list of domains from which content is allowed to be embedded in posts like with OEmbed. All sub-domains of the listed domains are allowed as well."
 msgstr ""
 
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:509
 msgid "Block public"
 msgstr ""
 
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:509
 msgid "Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."
 msgstr ""
 
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:510
 msgid "Force publish"
 msgstr ""
 
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:510
 msgid "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:510
 msgid "Enabling this may violate privacy laws like the GDPR"
 msgstr ""
 
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:511
 msgid "Global directory URL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:511
 msgid "URL to the global directory. If this is not set, the global directory is completely unavailable to the application."
 msgstr ""
 
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:512
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: src/Module/Admin/Site.php:526
+#: src/Module/Admin/Site.php:512
 msgid "Set default post permissions for all new members to the default privacy circle rather than public."
 msgstr ""
 
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:513
 msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:513
 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 ""
 
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:514
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:514
 msgid "Checking this box will restrict addons listed in the apps menu to members only."
 msgstr ""
 
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:515
 msgid "Don't embed private images in posts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:515
 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 ""
 
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:516
 msgid "Explicit Content"
 msgstr ""
 
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:516
 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."
 msgstr ""
 
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:517
 msgid "Only local search"
 msgstr ""
 
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:517
 msgid "Blocks search for users who are not logged in to prevent crawlers from blocking your system."
 msgstr ""
 
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:518
 msgid "Blocked tags for trending tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:518
 msgid "Comma separated list of hashtags that shouldn't be displayed in the trending tags."
 msgstr ""
 
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:519
 msgid "Cache contact avatars"
 msgstr ""
 
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:519
 msgid "Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance."
 msgstr ""
 
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:520
 msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:520
 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 ""
 
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:521
 msgid "Allow Users to set up relay channels"
 msgstr ""
 
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:521
 msgid "If enabled, it is possible to create relay users that are used to reshare content based on user defined channels."
 msgstr ""
 
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:522
 msgid "Adjust the feed poll frequency"
 msgstr ""
 
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:522
 msgid "Automatically detect and set the best feed poll frequency."
 msgstr ""
 
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:523
 msgid "Minimum poll interval"
 msgstr ""
 
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:523
 msgid "Minimal distance in minutes between two polls for mail and feed contacts. Reasonable values are between 1 and 59."
 msgstr ""
 
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:524
 msgid "Enable multiple registrations"
 msgstr ""
 
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:524
 msgid "Enable users to register additional accounts for use as pages."
 msgstr ""
 
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:525
 msgid "Enable OpenID"
 msgstr ""
 
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:525
 msgid "Enable OpenID support for registration and logins."
 msgstr ""
 
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:526
 msgid "Enable full name check"
 msgstr ""
 
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:526
 msgid "Prevents users from registering with a display name with fewer than two parts separated by spaces."
 msgstr ""
 
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:527
 msgid "Email administrators on new registration"
 msgstr ""
 
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:527
 msgid "If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators."
 msgstr ""
 
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:528
 msgid "Community pages for visitors"
 msgstr ""
 
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:528
 msgid "Which community pages should be available for visitors. Local users always see both pages."
 msgstr ""
 
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:529
 msgid "Posts per user on community page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:529
 msgid "The maximum number of posts per user on the local community page. This is useful, when a single user floods the local community page."
 msgstr ""
 
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:530
 msgid "Posts per server on community page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:530
 msgid "The maximum number of posts per server on the global community page. This is useful, when posts from a single server flood the global community page."
 msgstr ""
 
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:532
 msgid "Enable Mail support"
 msgstr ""
 
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:532
 msgid "Enable built-in mail support to poll IMAP folders and to reply via mail."
 msgstr ""
 
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:533
 msgid "Mail support can't be enabled because the PHP IMAP module is not installed."
 msgstr ""
 
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:534
 msgid "Enable OStatus support"
 msgstr ""
 
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:534
 msgid "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public."
 msgstr ""
 
-#: src/Module/Admin/Site.php:550
+#: src/Module/Admin/Site.php:536
 msgid "Diaspora support can't be enabled because Friendica was installed into a sub directory."
 msgstr ""
 
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:537
 msgid "Enable Diaspora support"
 msgstr ""
 
-#: src/Module/Admin/Site.php:551
+#: src/Module/Admin/Site.php:537
 msgid "Enable built-in Diaspora network compatibility for communicating with diaspora servers."
 msgstr ""
 
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:538
 msgid "Verify SSL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:552
+#: src/Module/Admin/Site.php:538
 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 ""
 
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:539
 msgid "Proxy user"
 msgstr ""
 
-#: src/Module/Admin/Site.php:553
+#: src/Module/Admin/Site.php:539
 msgid "User name for the proxy server."
 msgstr ""
 
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:540
 msgid "Proxy URL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:554
+#: src/Module/Admin/Site.php:540
 msgid "If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here."
 msgstr ""
 
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:541
 msgid "Network timeout"
 msgstr ""
 
-#: src/Module/Admin/Site.php:555
+#: src/Module/Admin/Site.php:541
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:542
 msgid "Maximum Load Average"
 msgstr ""
 
-#: src/Module/Admin/Site.php:556
+#: src/Module/Admin/Site.php:542
 #, php-format
 msgid "Maximum system load before delivery and poll processes are deferred - default %d."
 msgstr ""
 
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:543
 msgid "Minimal Memory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:557
+#: src/Module/Admin/Site.php:543
 msgid "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."
 msgstr ""
 
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:544
 msgid "Periodically optimize tables"
 msgstr ""
 
-#: src/Module/Admin/Site.php:558
+#: src/Module/Admin/Site.php:544
 msgid "Periodically optimize tables like the cache and the workerqueue"
 msgstr ""
 
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:546
 msgid "Discover followers/followings from contacts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:560
+#: src/Module/Admin/Site.php:546
 msgid "If enabled, contacts are checked for their followers and following contacts."
 msgstr ""
 
-#: src/Module/Admin/Site.php:561
+#: src/Module/Admin/Site.php:547
 msgid "None - deactivated"
 msgstr ""
 
-#: src/Module/Admin/Site.php:562
+#: src/Module/Admin/Site.php:548
 msgid "Local contacts - contacts of our local contacts are discovered for their followers/followings."
 msgstr ""
 
-#: src/Module/Admin/Site.php:563
+#: src/Module/Admin/Site.php:549
 msgid "Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings."
 msgstr ""
 
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:551
 msgid "Only update contacts/servers with local data"
 msgstr ""
 
-#: src/Module/Admin/Site.php:565
+#: src/Module/Admin/Site.php:551
 msgid "If enabled, the system will only look for changes in contacts and servers that engaged on this system by either being in a contact list of a user or when posts or comments exists from the contact on this system."
 msgstr ""
 
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:552
 msgid "Synchronize the contacts with the directory server"
 msgstr ""
 
-#: src/Module/Admin/Site.php:566
+#: src/Module/Admin/Site.php:552
 msgid "if enabled, the system will check periodically for new contacts on the defined directory server."
 msgstr ""
 
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:554
 msgid "Discover contacts from other servers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:568
+#: src/Module/Admin/Site.php:554
 msgid "Periodically query other servers for contacts and servers that they know of. The system queries Friendica, Mastodon and Hubzilla servers. Keep it deactivated on small machines to decrease the database size and load."
 msgstr ""
 
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:555
 msgid "Days between requery"
 msgstr ""
 
-#: src/Module/Admin/Site.php:569
+#: src/Module/Admin/Site.php:555
 msgid "Number of days after which a server is requeried for their contacts and servers it knows of. This is only used when the discovery is activated."
 msgstr ""
 
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:556
 msgid "Search the local directory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:570
+#: src/Module/Admin/Site.php:556
 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 ""
 
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:558
 msgid "Publish server information"
 msgstr ""
 
-#: src/Module/Admin/Site.php:572
+#: src/Module/Admin/Site.php:558
 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 ""
 
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:560
 msgid "Check upstream version"
 msgstr ""
 
-#: src/Module/Admin/Site.php:574
+#: src/Module/Admin/Site.php:560
 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 ""
 
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:561
 msgid "Suppress Tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:575
+#: src/Module/Admin/Site.php:561
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:562
 msgid "Clean database"
 msgstr ""
 
-#: src/Module/Admin/Site.php:576
+#: src/Module/Admin/Site.php:562
 msgid "Remove old remote items, orphaned database records and old content from some other helper tables."
 msgstr ""
 
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:563
 msgid "Lifespan of remote items"
 msgstr ""
 
-#: src/Module/Admin/Site.php:577
+#: src/Module/Admin/Site.php:563
 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 ""
 
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:564
 msgid "Lifespan of unclaimed items"
 msgstr ""
 
-#: src/Module/Admin/Site.php:578
+#: src/Module/Admin/Site.php:564
 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 ""
 
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:565
 msgid "Lifespan of raw conversation data"
 msgstr ""
 
-#: src/Module/Admin/Site.php:579
+#: src/Module/Admin/Site.php:565
 msgid "The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days."
 msgstr ""
 
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:566
 msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: src/Module/Admin/Site.php:580
+#: src/Module/Admin/Site.php:566
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:567
 msgid "Maximum numbers of comments per post on the display page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:581
+#: src/Module/Admin/Site.php:567
 msgid "How many comments should be shown on the single view for each post? Default value is 1000."
 msgstr ""
 
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:568
 msgid "Items per page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:582
+#: src/Module/Admin/Site.php:568
 msgid "Number of items per page in stream pages (network, community, profile/contact statuses, search)."
 msgstr ""
 
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:569
 msgid "Items per page for mobile devices"
 msgstr ""
 
-#: src/Module/Admin/Site.php:583
+#: src/Module/Admin/Site.php:569
 msgid "Number of items per page in stream pages (network, community, profile/contact statuses, search) for mobile devices."
 msgstr ""
 
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:570
 msgid "Temp path"
 msgstr ""
 
-#: src/Module/Admin/Site.php:584
+#: src/Module/Admin/Site.php:570
 msgid "If you have a restricted system where the webserver can't access the system temp path, enter another path here."
 msgstr ""
 
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:571
 msgid "Only search in tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:585
+#: src/Module/Admin/Site.php:571
 msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:572
 msgid "Limited search scope"
 msgstr ""
 
-#: src/Module/Admin/Site.php:586
+#: src/Module/Admin/Site.php:572
 msgid "If enabled, searches will only be performed in the data used for the channels and not in all posts."
 msgstr ""
 
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:573
 msgid "Maximum age of items in the search table"
 msgstr ""
 
-#: src/Module/Admin/Site.php:587
+#: src/Module/Admin/Site.php:573
 msgid "Maximum age of items in the search table in days. Lower values will increase the performance and reduce disk usage. 0 means no age restriction."
 msgstr ""
 
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:574
 msgid "Generate counts per contact circle when calculating network count"
 msgstr ""
 
-#: src/Module/Admin/Site.php:588
+#: src/Module/Admin/Site.php:574
 msgid "On systems with users that heavily use contact circles the query can be very expensive."
 msgstr ""
 
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:575
 msgid "Process \"view\" activities"
 msgstr ""
 
-#: src/Module/Admin/Site.php:589
+#: src/Module/Admin/Site.php:575
 msgid "\"view\" activities are mostly geberated by Peertube systems. Per default they are not processed for performance reasons. Only activate this option on performant system."
 msgstr ""
 
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:576
 msgid "Days, after which a contact is archived"
 msgstr ""
 
-#: src/Module/Admin/Site.php:590
+#: src/Module/Admin/Site.php:576
 msgid "Number of days that we try to deliver content or to update the contact data before we archive a contact."
 msgstr ""
 
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:578
 msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:592
+#: src/Module/Admin/Site.php:578
 #, php-format
 msgid "On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."
 msgstr ""
 
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:579
 msgid "Maximum load for workers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:593
+#: src/Module/Admin/Site.php:579
 msgid "Maximum load that causes a cooldown before each worker function call."
 msgstr ""
 
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:580
 msgid "Enable fastlane"
 msgstr ""
 
-#: src/Module/Admin/Site.php:594
+#: src/Module/Admin/Site.php:580
 msgid "When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:581
 msgid "Decoupled receiver"
 msgstr ""
 
-#: src/Module/Admin/Site.php:595
+#: src/Module/Admin/Site.php:581
 msgid "Decouple incoming ActivityPub posts by processing them in the background via a worker process. Only enable this on fast systems."
 msgstr ""
 
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:582
 msgid "Cron interval"
 msgstr ""
 
-#: src/Module/Admin/Site.php:596
+#: src/Module/Admin/Site.php:582
 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job."
 msgstr ""
 
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:583
 msgid "Worker defer limit"
 msgstr ""
 
-#: src/Module/Admin/Site.php:597
+#: src/Module/Admin/Site.php:583
 msgid "Per default the systems tries delivering for 15 times before dropping it."
 msgstr ""
 
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:584
 msgid "Worker fetch limit"
 msgstr ""
 
-#: src/Module/Admin/Site.php:598
+#: src/Module/Admin/Site.php:584
 msgid "Number of worker tasks that are fetched in a single query. Higher values should increase the performance, too high values will mostly likely decrease it. Only change it, when you know how to measure the performance of your system."
 msgstr ""
 
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:586
 msgid "Direct relay transfer"
 msgstr ""
 
-#: src/Module/Admin/Site.php:600
+#: src/Module/Admin/Site.php:586
 msgid "Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:587
 msgid "Relay scope"
 msgstr ""
 
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:587
 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 ""
 
-#: src/Module/Admin/Site.php:601 src/Module/Contact/Profile.php:328
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Admin/Site.php:587 src/Module/Contact/Profile.php:314
+#: src/Module/Settings/TwoFactor/Index.php:132
 msgid "Disabled"
 msgstr ""
 
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:587
 msgid "all"
 msgstr ""
 
-#: src/Module/Admin/Site.php:601
+#: src/Module/Admin/Site.php:587
 msgid "tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:588
 msgid "Server tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:602
+#: src/Module/Admin/Site.php:588
 msgid "Comma separated list of tags for the \"tags\" subscription."
 msgstr ""
 
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:589
 msgid "Deny Server tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:603
+#: src/Module/Admin/Site.php:589
 msgid "Comma separated list of tags that are rejected."
 msgstr ""
 
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:590
 msgid "Maximum amount of tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:604
+#: src/Module/Admin/Site.php:590
 msgid "Maximum amount of tags in a post before it is rejected as spam. The post has to contain at least one link. Posts from subscribed accounts will not be rejected."
 msgstr ""
 
-#: src/Module/Admin/Site.php:605
+#: src/Module/Admin/Site.php:591
 msgid "Allow user tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:605
+#: src/Module/Admin/Site.php:591
 msgid "If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."
 msgstr ""
 
-#: src/Module/Admin/Site.php:606
+#: src/Module/Admin/Site.php:592
 msgid "Deny undetected languages"
 msgstr ""
 
-#: src/Module/Admin/Site.php:606
+#: src/Module/Admin/Site.php:592
 msgid "If enabled, posts with undetected languages will be rejected."
 msgstr ""
 
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:593
 msgid "Language Quality"
 msgstr ""
 
-#: src/Module/Admin/Site.php:607
+#: src/Module/Admin/Site.php:593
 msgid "The minimum language quality that is required to accept the post."
 msgstr ""
 
-#: src/Module/Admin/Site.php:608
+#: src/Module/Admin/Site.php:594
 msgid "Number of languages for the language detection"
 msgstr ""
 
-#: src/Module/Admin/Site.php:608
+#: src/Module/Admin/Site.php:594
 msgid "The system detects a list of languages per post. Only if the desired languages are in the list, the message will be accepted. The higher the number, the more posts will be falsely detected."
 msgstr ""
 
-#: src/Module/Admin/Site.php:610
+#: src/Module/Admin/Site.php:596
 msgid "Maximum age of channel"
 msgstr ""
 
-#: src/Module/Admin/Site.php:610
+#: src/Module/Admin/Site.php:596
 msgid "This defines the maximum age in hours of items that should be displayed in channels. This affects the channel performance."
 msgstr ""
 
-#: src/Module/Admin/Site.php:611
+#: src/Module/Admin/Site.php:597
 msgid "Maximum number of channel posts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:611
+#: src/Module/Admin/Site.php:597
 msgid "For performance reasons, the channels use a dedicated table to store content. The higher the value the slower the channels."
 msgstr ""
 
-#: src/Module/Admin/Site.php:612
+#: src/Module/Admin/Site.php:598
 msgid "Interaction score days"
 msgstr ""
 
-#: src/Module/Admin/Site.php:612
+#: src/Module/Admin/Site.php:598
 msgid "Number of days that are used to calculate the interaction score."
 msgstr ""
 
-#: src/Module/Admin/Site.php:613
+#: src/Module/Admin/Site.php:599
 msgid "Maximum number of posts per author"
 msgstr ""
 
-#: src/Module/Admin/Site.php:613
+#: src/Module/Admin/Site.php:599
 msgid "Maximum number of posts per page by author if the contact frequency is set to \"Display only few posts\". If there are more posts, then the post with the most interactions will be displayed."
 msgstr ""
 
-#: src/Module/Admin/Site.php:614
+#: src/Module/Admin/Site.php:600
 msgid "Sharer interaction days"
 msgstr ""
 
-#: src/Module/Admin/Site.php:614
+#: src/Module/Admin/Site.php:600
 msgid "Number of days of the last interaction that are used to define which sharers are used for the \"sharers of sharers\" channel."
 msgstr ""
 
-#: src/Module/Admin/Site.php:617
+#: src/Module/Admin/Site.php:603
 msgid "Start Relocation"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:46
+#: src/Module/Admin/Storage.php:32
 #, php-format
 msgid "Storage backend, %s is invalid."
 msgstr ""
 
-#: src/Module/Admin/Storage.php:73
+#: src/Module/Admin/Storage.php:59
 #, php-format
 msgid "Storage backend %s error: %s"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87
+#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73
 msgid "Invalid storage backend setting value."
 msgstr ""
 
-#: src/Module/Admin/Storage.php:139
+#: src/Module/Admin/Storage.php:125
 msgid "Current Storage Backend"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:140
+#: src/Module/Admin/Storage.php:126
 msgid "Storage Configuration"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91
+#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
 msgid "Storage"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:143
+#: src/Module/Admin/Storage.php:129
 msgid "Save & Use storage backend"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:144
+#: src/Module/Admin/Storage.php:130
 msgid "Use storage backend"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:145
+#: src/Module/Admin/Storage.php:131
 msgid "Save & Reload"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:146
+#: src/Module/Admin/Storage.php:132
 msgid "This backend doesn't have custom settings"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:148
+#: src/Module/Admin/Storage.php:134
 msgid "Changing the current backend is prohibited because it is set by an environment variable"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:150
+#: src/Module/Admin/Storage.php:136
 msgid "Database (legacy)"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:55
+#: src/Module/Admin/Summary.php:41
 #, php-format
 msgid "Template engine (%s) error: %s"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:59
+#: src/Module/Admin/Summary.php:45
 #, 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 ""
 
-#: src/Module/Admin/Summary.php:64
+#: src/Module/Admin/Summary.php:50
 #, php-format
 msgid "Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. 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 ""
 
-#: src/Module/Admin/Summary.php:74
+#: src/Module/Admin/Summary.php:60
 #, php-format
 msgid "Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d. See <a href=\"%s\">here</a> for more information.<br />"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:85
+#: src/Module/Admin/Summary.php:71
 #, 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 ""
 
-#: src/Module/Admin/Summary.php:94
+#: src/Module/Admin/Summary.php:80
 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 ""
 
-#: src/Module/Admin/Summary.php:98
+#: src/Module/Admin/Summary.php:84
 msgid "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:102
+#: src/Module/Admin/Summary.php:88
 msgid "The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:107
+#: src/Module/Admin/Summary.php:93
 msgid "The worker was never executed. Please check your database structure!"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:109
+#: src/Module/Admin/Summary.php:95
 #, php-format
 msgid "The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."
 msgstr ""
 
-#: src/Module/Admin/Summary.php:114
+#: src/Module/Admin/Summary.php:100
 #, php-format
 msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.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 ""
 
-#: src/Module/Admin/Summary.php:118
+#: src/Module/Admin/Summary.php:104
 #, php-format
 msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>config/local.ini.php</code>. See <a href=\"%s\">the Config help page</a> for help with the transition."
 msgstr ""
 
-#: src/Module/Admin/Summary.php:124
+#: src/Module/Admin/Summary.php:110
 #, php-format
 msgid "<a href=\"%s\">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href=\"%s\">the installation page</a> for help."
 msgstr ""
 
-#: src/Module/Admin/Summary.php:148
+#: src/Module/Admin/Summary.php:134
 #, php-format
 msgid "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."
 msgstr ""
 
-#: src/Module/Admin/Summary.php:156
+#: src/Module/Admin/Summary.php:142
 #, php-format
 msgid "Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."
 msgstr ""
 
-#: src/Module/Admin/Summary.php:164
+#: src/Module/Admin/Summary.php:150
 #, php-format
 msgid "Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."
 msgstr ""
 
-#: src/Module/Admin/Summary.php:175
+#: src/Module/Admin/Summary.php:161
 msgid "Message queues"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:181
+#: src/Module/Admin/Summary.php:167
 msgid "Server Settings"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:199
+#: src/Module/Admin/Summary.php:185
 msgid "Version"
 msgstr ""
 
-#: src/Module/Admin/Summary.php:203
+#: src/Module/Admin/Summary.php:189
 msgid "Active addons"
 msgstr ""
 
-#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71
+#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57
 #, php-format
 msgid "Theme %s disabled."
 msgstr ""
 
-#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73
+#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59
 #, php-format
 msgid "Theme %s successfully enabled."
 msgstr ""
 
-#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75
+#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61
 #, php-format
 msgid "Theme %s failed to install."
 msgstr ""
 
-#: src/Module/Admin/Themes/Details.php:89
+#: src/Module/Admin/Themes/Details.php:75
 msgid "Screenshot"
 msgstr ""
 
-#: src/Module/Admin/Themes/Details.php:97 src/Module/Admin/Themes/Index.php:118
-#: src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Themes/Details.php:83 src/Module/Admin/Themes/Index.php:104
+#: src/Module/BaseAdmin.php:79
 msgid "Themes"
 msgstr ""
 
-#: src/Module/Admin/Themes/Embed.php:80
+#: src/Module/Admin/Themes/Embed.php:66
 msgid "Unknown theme."
 msgstr ""
 
-#: src/Module/Admin/Themes/Index.php:57
+#: src/Module/Admin/Themes/Index.php:43
 msgid "Themes reloaded"
 msgstr ""
 
-#: src/Module/Admin/Themes/Index.php:120
+#: src/Module/Admin/Themes/Index.php:106
 msgid "Reload active themes"
 msgstr ""
 
-#: src/Module/Admin/Themes/Index.php:124
+#: src/Module/Admin/Themes/Index.php:110
 #, php-format
 msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: src/Module/Admin/Themes/Index.php:125
+#: src/Module/Admin/Themes/Index.php:111
 msgid "[Experimental]"
 msgstr ""
 
-#: src/Module/Admin/Themes/Index.php:126
+#: src/Module/Admin/Themes/Index.php:112
 msgid "[Unsupported]"
 msgstr ""
 
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
 msgid "Display Terms of Service"
 msgstr ""
 
-#: src/Module/Admin/Tos.php:79
+#: src/Module/Admin/Tos.php:65
 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 ""
 
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
 msgid "Display Privacy Statement"
 msgstr ""
 
-#: src/Module/Admin/Tos.php:80
+#: src/Module/Admin/Tos.php:66
 #, php-format
 msgid "Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">EU-GDPR</a>."
 msgstr ""
 
-#: src/Module/Admin/Tos.php:81
+#: src/Module/Admin/Tos.php:67
 msgid "Privacy Statement Preview"
 msgstr ""
 
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
 msgid "The Terms of Service"
 msgstr ""
 
-#: src/Module/Admin/Tos.php:83
+#: src/Module/Admin/Tos.php:69
 msgid "Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."
 msgstr ""
 
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
 msgid "The rules"
 msgstr ""
 
-#: src/Module/Admin/Tos.php:84
+#: src/Module/Admin/Tos.php:70
 msgid "Enter your system rules here. Each line represents one rule."
 msgstr ""
 
-#: src/Module/Api/ApiResponse.php:293
+#: src/Module/Api/ApiResponse.php:279
 #, php-format
 msgid "API endpoint %s %s is not implemented but might be in the future."
 msgstr ""
 
-#: src/Module/Api/Mastodon/Apps.php:73
+#: src/Module/Api/Mastodon/Apps.php:59
 msgid "Missing parameters"
 msgstr ""
 
-#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50
+#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36
 msgid "Only starting posts can be bookmarked"
 msgstr ""
 
-#: src/Module/Api/Mastodon/Statuses/Mute.php:51
+#: src/Module/Api/Mastodon/Statuses/Mute.php:37
 msgid "Only starting posts can be muted"
 msgstr ""
 
-#: src/Module/Api/Mastodon/Statuses/Reblog.php:58
+#: src/Module/Api/Mastodon/Statuses/Reblog.php:44
 #, php-format
 msgid "Posts from %s can't be shared"
 msgstr ""
 
-#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51
+#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37
 msgid "Only starting posts can be unbookmarked"
 msgstr ""
 
-#: src/Module/Api/Mastodon/Statuses/Unmute.php:51
+#: src/Module/Api/Mastodon/Statuses/Unmute.php:37
 msgid "Only starting posts can be unmuted"
 msgstr ""
 
-#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64
+#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50
 #, php-format
 msgid "Posts from %s can't be unshared"
 msgstr ""
 
-#: src/Module/Api/Twitter/ContactEndpoint.php:66
+#: src/Module/Api/Twitter/ContactEndpoint.php:52
 msgid "Contact not found"
 msgstr ""
 
-#: src/Module/Apps.php:62
+#: src/Module/Apps.php:48
 msgid "No installed applications."
 msgstr ""
 
-#: src/Module/Apps.php:67
+#: src/Module/Apps.php:53
 msgid "Applications"
 msgstr ""
 
-#: src/Module/Attach.php:49 src/Module/Attach.php:61
+#: src/Module/Attach.php:35 src/Module/Attach.php:47
 msgid "Item was not found."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58
-#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81
+#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
+#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
 msgid "Please login to continue."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:63
+#: src/Module/BaseAdmin.php:49
 msgid "You don't have access to administration pages."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:67
+#: src/Module/BaseAdmin.php:53
 msgid "Submanaged account can't access the administration pages. Please log back in as the main account."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109
+#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
 msgid "Overview"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
+#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
 msgid "Configuration"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
+#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
 msgid "Additional features"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:83
 msgid "Database"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:98
+#: src/Module/BaseAdmin.php:84
 msgid "DB updates"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:99
+#: src/Module/BaseAdmin.php:85
 msgid "Inspect Deferred Workers"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:100
+#: src/Module/BaseAdmin.php:86
 msgid "Inspect worker Queue"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
+#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
 msgid "Diagnostics"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:93
 msgid "PHP Info"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:94
 msgid "probe address"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:95
 msgid "check webfinger"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:110
+#: src/Module/BaseAdmin.php:96
 msgid "Babel"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143
+#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
 msgid "ActivityPub Conversion"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:106
 msgid "Addon Features"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
+#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
 msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471
-#: src/Module/BaseApi.php:487
+#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
+#: src/Module/BaseApi.php:473
 msgid "Too Many Requests"
 msgstr ""
 
-#: src/Module/BaseApi.php:456
+#: src/Module/BaseApi.php:442
 #, 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] ""
 
-#: src/Module/BaseApi.php:472
+#: src/Module/BaseApi.php:458
 #, 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] ""
 
-#: src/Module/BaseApi.php:488
+#: src/Module/BaseApi.php:474
 #, php-format
 msgid "Monthly posting limit of %d post reached. The post was rejected."
 msgid_plural "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/BaseModeration.php:86
+#: src/Module/BaseModeration.php:72
 msgid "You don't have access to moderation pages."
 msgstr ""
 
-#: src/Module/BaseModeration.php:90
+#: src/Module/BaseModeration.php:76
 msgid "Submanaged account can't access the moderation pages. Please log back in as the main account."
 msgstr ""
 
-#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115
+#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
 msgid "Reports"
 msgstr ""
 
-#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148
-#: src/Module/Moderation/Users/Index.php:158
+#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
+#: src/Module/Moderation/Users/Index.php:144
 msgid "Users"
 msgstr ""
 
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:101
 msgid "Tools"
 msgstr ""
 
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:102
 msgid "Contact Blocklist"
 msgstr ""
 
-#: src/Module/BaseModeration.php:117
+#: src/Module/BaseModeration.php:103
 msgid "Server Blocklist"
 msgstr ""
 
-#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
 msgid "Delete Item"
 msgstr ""
 
-#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82
+#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
 msgid "Item Source"
 msgstr ""
 
-#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513
+#: src/Module/BaseProfile.php:38 src/Module/Contact.php:499
 msgid "Profile Details"
 msgstr ""
 
-#: src/Module/BaseProfile.php:60
+#: src/Module/BaseProfile.php:46
 msgid "Conversations started"
 msgstr ""
 
-#: src/Module/BaseProfile.php:111
+#: src/Module/BaseProfile.php:97
 msgid "Only You Can See This"
 msgstr ""
 
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
+#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
 msgid "Scheduled Posts"
 msgstr ""
 
-#: src/Module/BaseProfile.php:119
+#: src/Module/BaseProfile.php:105
 msgid "Posts that are scheduled for publishing"
 msgstr ""
 
-#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141
+#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
 msgid "Tips for New Members"
 msgstr ""
 
-#: src/Module/BaseSearch.php:71
+#: src/Module/BaseSearch.php:57
 #, php-format
 msgid "People Search - %s"
 msgstr ""
 
-#: src/Module/BaseSearch.php:75
+#: src/Module/BaseSearch.php:61
 #, php-format
 msgid "Group Search - %s"
 msgstr ""
 
-#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140
+#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
 msgid "No matches"
 msgstr ""
 
-#: src/Module/BaseSearch.php:147
+#: src/Module/BaseSearch.php:133
 #, php-format
 msgid "%d result was filtered out because your node blocks the domain it is registered on. You can review the list of domains your node is currently blocking in the <a href=\"/friendica\">About page</a>."
 msgid_plural "%d results were filtered out because your node blocks the domain they are registered on. You can review the list of domains your node is currently blocking in the <a href=\"/friendica\">About page</a>."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/BaseSettings.php:78
+#: src/Module/BaseSettings.php:64
 msgid "Account"
 msgstr ""
 
-#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
-#: src/Module/Settings/TwoFactor/Index.php:138
+#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
+#: src/Module/Settings/TwoFactor/Index.php:124
 msgid "Two-factor authentication"
 msgstr ""
 
-#: src/Module/BaseSettings.php:118
+#: src/Module/BaseSettings.php:104
 msgid "Display"
 msgstr ""
 
-#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213
+#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:199
 msgid "Social Networks"
 msgstr ""
 
-#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194
+#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
 msgid "Manage Accounts"
 msgstr ""
 
-#: src/Module/BaseSettings.php:153
+#: src/Module/BaseSettings.php:139
 msgid "Connected apps"
 msgstr ""
 
-#: src/Module/BaseSettings.php:160
+#: src/Module/BaseSettings.php:146
 msgid "Remote servers"
 msgstr ""
 
-#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84
 msgid "Export personal data"
 msgstr ""
 
-#: src/Module/BaseSettings.php:174
+#: src/Module/BaseSettings.php:160
 msgid "Remove account"
 msgstr ""
 
-#: src/Module/Bookmarklet.php:54
+#: src/Module/Bookmarklet.php:40
 msgid "This page is missing a url parameter."
 msgstr ""
 
-#: src/Module/Bookmarklet.php:66
+#: src/Module/Bookmarklet.php:52
 msgid "The post was created"
 msgstr ""
 
-#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135
-#: src/Module/Calendar/Event/Form.php:80
+#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
+#: src/Module/Calendar/Event/Form.php:66
 msgid "Invalid Request"
 msgstr ""
 
-#: src/Module/Calendar/Event/API.php:109
+#: src/Module/Calendar/Event/API.php:95
 msgid "Event id is missing."
 msgstr ""
 
-#: src/Module/Calendar/Event/API.php:131
+#: src/Module/Calendar/Event/API.php:117
 msgid "Failed to remove event"
 msgstr ""
 
-#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189
+#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
 msgid "Event can not end before it has started."
 msgstr ""
 
-#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198
+#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
 msgid "Event title and start time are required."
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:208
+#: src/Module/Calendar/Event/Form.php:194
 msgid "Starting date and Title are required."
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:214
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:200
 msgid "Event Starts:"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:209
-#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59
-#: src/Module/Install.php:201 src/Module/Install.php:227
-#: src/Module/Install.php:232 src/Module/Install.php:246
-#: src/Module/Install.php:255 src/Module/Install.php:260
-#: src/Module/Install.php:266 src/Module/Install.php:271
-#: src/Module/Install.php:285 src/Module/Install.php:298
-#: src/Module/Install.php:325
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
-#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/TwoFactor/Index.php:161
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Calendar/Event/Form.php:195
+#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
+#: src/Module/Install.php:187 src/Module/Install.php:213
+#: src/Module/Install.php:218 src/Module/Install.php:232
+#: src/Module/Install.php:241 src/Module/Install.php:246
+#: src/Module/Install.php:252 src/Module/Install.php:257
+#: src/Module/Install.php:271 src/Module/Install.php:284
+#: src/Module/Install.php:311
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
+#: src/Module/Moderation/Blocklist/Server/Import.php:115
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
+#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Verify.php:144
 msgid "Required"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:223
-#: src/Module/Calendar/Event/Form.php:247
+#: src/Module/Calendar/Event/Form.php:209
+#: src/Module/Calendar/Event/Form.php:233
 msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:225
-#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:211
+#: src/Module/Calendar/Event/Form.php:216
 msgid "Event Finishes:"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:237
-#: src/Module/Calendar/Event/Form.php:243
+#: src/Module/Calendar/Event/Form.php:223
+#: src/Module/Calendar/Event/Form.php:229
 msgid "Title (BBCode not allowed)"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:239
+#: src/Module/Calendar/Event/Form.php:225
 msgid "Description (BBCode allowed)"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:241
+#: src/Module/Calendar/Event/Form.php:227
 msgid "Location (BBCode not allowed)"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:244
-#: src/Module/Calendar/Event/Form.php:245
+#: src/Module/Calendar/Event/Form.php:230
+#: src/Module/Calendar/Event/Form.php:231
 msgid "Share this event"
 msgstr ""
 
-#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277
+#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
 msgid "Basic"
 msgstr ""
 
-#: src/Module/Calendar/Export.php:94
+#: src/Module/Calendar/Export.php:80
 msgid "This calendar format is not supported"
 msgstr ""
 
-#: src/Module/Calendar/Export.php:96
+#: src/Module/Calendar/Export.php:82
 msgid "No exportable data found"
 msgstr ""
 
-#: src/Module/Calendar/Export.php:113
+#: src/Module/Calendar/Export.php:99
 msgid "calendar"
 msgstr ""
 
-#: src/Module/Calendar/Show.php:124
+#: src/Module/Calendar/Show.php:110
 msgid "Events"
 msgstr ""
 
-#: src/Module/Calendar/Show.php:125
+#: src/Module/Calendar/Show.php:111
 msgid "View"
 msgstr ""
 
-#: src/Module/Calendar/Show.php:126
+#: src/Module/Calendar/Show.php:112
 msgid "Create New Event"
 msgstr ""
 
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297
+#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283
 msgid "list"
 msgstr ""
 
-#: src/Module/Circle.php:57
+#: src/Module/Circle.php:43
 msgid "Could not create circle."
 msgstr ""
 
-#: src/Module/Circle.php:68 src/Module/Circle.php:216 src/Module/Circle.php:240
+#: src/Module/Circle.php:54 src/Module/Circle.php:202 src/Module/Circle.php:226
 msgid "Circle not found."
 msgstr ""
 
-#: src/Module/Circle.php:74
+#: src/Module/Circle.php:60
 msgid "Circle name was not changed."
 msgstr ""
 
-#: src/Module/Circle.php:92
+#: src/Module/Circle.php:78
 msgid "Unknown circle."
 msgstr ""
 
-#: src/Module/Circle.php:98 src/Module/Circle.php:107
-#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109
-#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86
-#: src/Module/Contact/Conversations.php:91
-#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61
-#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83
-#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159
-#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183
-#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145
-#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109
+#: src/Module/Circle.php:84 src/Module/Circle.php:93
+#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
+#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
+#: src/Module/Contact/Conversations.php:77
+#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
+#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
+#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169
+#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
+#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
 msgid "Contact not found."
 msgstr ""
 
-#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66
+#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
 msgid "Invalid contact."
 msgstr ""
 
-#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70
+#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
 msgid "Contact is deleted."
 msgstr ""
 
-#: src/Module/Circle.php:117
+#: src/Module/Circle.php:103
 msgid "Unable to add the contact to the circle."
 msgstr ""
 
-#: src/Module/Circle.php:120
+#: src/Module/Circle.php:106
 msgid "Contact successfully added to circle."
 msgstr ""
 
-#: src/Module/Circle.php:124
+#: src/Module/Circle.php:110
 msgid "Unable to remove the contact from the circle."
 msgstr ""
 
-#: src/Module/Circle.php:127
+#: src/Module/Circle.php:113
 msgid "Contact successfully removed from circle."
 msgstr ""
 
-#: src/Module/Circle.php:131
+#: src/Module/Circle.php:117
 msgid "Bad request."
 msgstr ""
 
-#: src/Module/Circle.php:172
+#: src/Module/Circle.php:158
 msgid "Save Circle"
 msgstr ""
 
-#: src/Module/Circle.php:173
+#: src/Module/Circle.php:159
 msgid "Filter"
 msgstr ""
 
-#: src/Module/Circle.php:179
+#: src/Module/Circle.php:165
 msgid "Create a circle of contacts/friends."
 msgstr ""
 
-#: src/Module/Circle.php:221
+#: src/Module/Circle.php:207
 msgid "Unable to remove circle."
 msgstr ""
 
-#: src/Module/Circle.php:272
+#: src/Module/Circle.php:258
 msgid "Delete Circle"
 msgstr ""
 
-#: src/Module/Circle.php:282
+#: src/Module/Circle.php:268
 msgid "Edit Circle Name"
 msgstr ""
 
-#: src/Module/Circle.php:292
+#: src/Module/Circle.php:278
 msgid "Members"
 msgstr ""
 
-#: src/Module/Circle.php:295
+#: src/Module/Circle.php:281
 msgid "Circle is empty"
 msgstr ""
 
-#: src/Module/Circle.php:311
+#: src/Module/Circle.php:297
 msgid "Remove contact from circle"
 msgstr ""
 
-#: src/Module/Circle.php:334
+#: src/Module/Circle.php:320
 msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: src/Module/Circle.php:351
+#: src/Module/Circle.php:337
 msgid "Add contact to circle"
 msgstr ""
 
-#: src/Module/Contact.php:102
+#: src/Module/Contact.php:88
 #, php-format
 msgid "%d contact edited."
 msgid_plural "%d contacts edited."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Contact.php:353
+#: src/Module/Contact.php:339
 msgid "Show all contacts"
 msgstr ""
 
-#: src/Module/Contact.php:358 src/Module/Contact.php:437
-#: src/Module/Moderation/BaseUsers.php:86
+#: src/Module/Contact.php:344 src/Module/Contact.php:423
+#: src/Module/Moderation/BaseUsers.php:72
 msgid "Pending"
 msgstr ""
 
-#: src/Module/Contact.php:361
+#: src/Module/Contact.php:347
 msgid "Only show pending contacts"
 msgstr ""
 
-#: src/Module/Contact.php:366 src/Module/Contact.php:440
-#: src/Module/Moderation/BaseUsers.php:94
+#: src/Module/Contact.php:352 src/Module/Contact.php:426
+#: src/Module/Moderation/BaseUsers.php:80
 msgid "Blocked"
 msgstr ""
 
-#: src/Module/Contact.php:369
+#: src/Module/Contact.php:355
 msgid "Only show blocked contacts"
 msgstr ""
 
-#: src/Module/Contact.php:374 src/Module/Contact.php:446
-#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399
+#: src/Module/Contact.php:360 src/Module/Contact.php:432
+#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
 msgid "Ignored"
 msgstr ""
 
-#: src/Module/Contact.php:377
+#: src/Module/Contact.php:363
 msgid "Only show ignored contacts"
 msgstr ""
 
-#: src/Module/Contact.php:382 src/Module/Contact.php:449
+#: src/Module/Contact.php:368 src/Module/Contact.php:435
 msgid "Collapsed"
 msgstr ""
 
-#: src/Module/Contact.php:385
+#: src/Module/Contact.php:371
 msgid "Only show collapsed contacts"
 msgstr ""
 
-#: src/Module/Contact.php:390 src/Module/Contact.php:452
+#: src/Module/Contact.php:376 src/Module/Contact.php:438
 msgid "Archived"
 msgstr ""
 
-#: src/Module/Contact.php:393
+#: src/Module/Contact.php:379
 msgid "Only show archived contacts"
 msgstr ""
 
-#: src/Module/Contact.php:398 src/Module/Contact.php:443
+#: src/Module/Contact.php:384 src/Module/Contact.php:429
 msgid "Hidden"
 msgstr ""
 
-#: src/Module/Contact.php:401
+#: src/Module/Contact.php:387
 msgid "Only show hidden contacts"
 msgstr ""
 
-#: src/Module/Contact.php:409
+#: src/Module/Contact.php:395
 msgid "Organize your contact circles"
 msgstr ""
 
-#: src/Module/Contact.php:464
+#: src/Module/Contact.php:450
 msgid "Search your contacts"
 msgstr ""
 
-#: src/Module/Contact.php:465 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:451 src/Module/Search/Index.php:193
 #, php-format
 msgid "Results for: %s"
 msgstr ""
 
-#: src/Module/Contact.php:473
+#: src/Module/Contact.php:459
 msgid "Update"
 msgstr ""
 
-#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532
-#: src/Module/Moderation/Blocklist/Contact.php:117
-#: src/Module/Moderation/Users/Blocked.php:138
-#: src/Module/Moderation/Users/Index.php:154
+#: src/Module/Contact.php:460 src/Module/Contact/Profile.php:518
+#: src/Module/Moderation/Blocklist/Contact.php:103
+#: src/Module/Moderation/Users/Blocked.php:124
+#: src/Module/Moderation/Users/Index.php:140
 msgid "Unblock"
 msgstr ""
 
-#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540
+#: src/Module/Contact.php:461 src/Module/Contact/Profile.php:526
 msgid "Unignore"
 msgstr ""
 
-#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548
+#: src/Module/Contact.php:462 src/Module/Contact/Profile.php:534
 msgid "Uncollapse"
 msgstr ""
 
-#: src/Module/Contact.php:478
+#: src/Module/Contact.php:464
 msgid "Batch Actions"
 msgstr ""
 
-#: src/Module/Contact.php:521
+#: src/Module/Contact.php:507
 msgid "Conversations started by this contact"
 msgstr ""
 
-#: src/Module/Contact.php:526
+#: src/Module/Contact.php:512
 msgid "Posts and Comments"
 msgstr ""
 
-#: src/Module/Contact.php:529
+#: src/Module/Contact.php:515
 msgid "Individual Posts and Replies"
 msgstr ""
 
-#: src/Module/Contact.php:537
+#: src/Module/Contact.php:523
 msgid "Posts containing media objects"
 msgstr ""
 
-#: src/Module/Contact.php:545
+#: src/Module/Contact.php:531
 msgid "View all known contacts"
 msgstr ""
 
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:542
 msgid "Advanced Contact Settings"
 msgstr ""
 
-#: src/Module/Contact.php:592
+#: src/Module/Contact.php:578
 msgid "Mutual Friendship"
 msgstr ""
 
-#: src/Module/Contact.php:596
+#: src/Module/Contact.php:582
 msgid "is a fan of yours"
 msgstr ""
 
-#: src/Module/Contact.php:600
+#: src/Module/Contact.php:586
 msgid "you are a fan of"
 msgstr ""
 
-#: src/Module/Contact.php:618
+#: src/Module/Contact.php:604
 msgid "Pending outgoing contact request"
 msgstr ""
 
-#: src/Module/Contact.php:620
+#: src/Module/Contact.php:606
 msgid "Pending incoming contact request"
 msgstr ""
 
-#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391
+#: src/Module/Contact.php:619 src/Module/Contact/Profile.php:377
 #, php-format
 msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:99
+#: src/Module/Contact/Advanced.php:85
 msgid "Contact update failed."
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:130
+#: src/Module/Contact/Advanced.php:116
 msgid "Return to contact editor"
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:134
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Create.php:70
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
-#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
+#: src/Module/Contact/Advanced.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Create.php:56
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
+#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
 msgid "Name"
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:135
+#: src/Module/Contact/Advanced.php:121
 msgid "Account Nickname"
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:136
+#: src/Module/Contact/Advanced.php:122
 msgid "Account URL"
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:137
+#: src/Module/Contact/Advanced.php:123
 msgid "Poll/Feed URL"
 msgstr ""
 
-#: src/Module/Contact/Advanced.php:138
+#: src/Module/Contact/Advanced.php:124
 msgid "New photo from this URL"
 msgstr ""
 
-#: src/Module/Contact/Contacts.php:89
+#: src/Module/Contact/Contacts.php:75
 msgid "No known contacts."
 msgstr ""
 
-#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128
+#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
 msgid "No common contacts."
 msgstr ""
 
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135
+#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
 #, php-format
 msgid "Follower (%s)"
 msgid_plural "Followers (%s)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138
+#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
 #, php-format
 msgid "Following (%s)"
 msgid_plural "Following (%s)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141
+#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
 #, php-format
 msgid "Mutual friend (%s)"
 msgid_plural "Mutual friends (%s)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143
+#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
 #, php-format
 msgid "These contacts both follow and are followed by <strong>%s</strong>."
 msgstr ""
 
-#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116
+#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
 #, php-format
 msgid "Common contact (%s)"
 msgid_plural "Common contacts (%s)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118
+#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
 #, php-format
 msgid "Both <strong>%s</strong> and yourself have publicly interacted with these contacts (follow, comment or likes on public posts)."
 msgstr ""
 
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149
+#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
 #, php-format
 msgid "Contact (%s)"
 msgid_plural "Contacts (%s)"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59
-#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166
-#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59
-#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59
-#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41
-#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41
-#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53
-#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37
+#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
+#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
+#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
+#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
+#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
+#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
+#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
+#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23
 msgid "Access denied."
 msgstr ""
 
-#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125
-#: src/Module/Profile/RemoteFollow.php:133
+#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111
+#: src/Module/Profile/RemoteFollow.php:119
 msgid "Submit Request"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:115
+#: src/Module/Contact/Follow.php:101
 msgid "You already added this contact."
 msgstr ""
 
-#: src/Module/Contact/Follow.php:130
+#: src/Module/Contact/Follow.php:116
 msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: src/Module/Contact/Follow.php:138
+#: src/Module/Contact/Follow.php:124
 msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: src/Module/Contact/Follow.php:143
+#: src/Module/Contact/Follow.php:129
 msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:154 src/Module/Profile/RemoteFollow.php:118
 msgid "Please answer the following:"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:155 src/Module/Contact/Unfollow.php:109
 msgid "Your Identity Address:"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422
-#: src/Module/Contact/Unfollow.php:129
-#: src/Module/Moderation/Blocklist/Contact.php:131
-#: src/Module/Moderation/Reports.php:123
-#: src/Module/Notifications/Introductions.php:135
-#: src/Module/Notifications/Introductions.php:204
+#: src/Module/Contact/Follow.php:156 src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Unfollow.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:117
+#: src/Module/Moderation/Reports.php:109
+#: src/Module/Notifications/Introductions.php:121
+#: src/Module/Notifications/Introductions.php:190
 msgid "Profile URL"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434
-#: src/Module/Notifications/Introductions.php:197
-#: src/Module/Profile/Profile.php:236
+#: src/Module/Contact/Follow.php:157 src/Module/Contact/Profile.php:420
+#: src/Module/Notifications/Introductions.php:183
+#: src/Module/Profile/Profile.php:222
 msgid "Tags:"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:168
 #, php-format
 msgid "%s knows you"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:183
+#: src/Module/Contact/Follow.php:169
 msgid "Add a personal note:"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:178 src/Module/Contact/Unfollow.php:124
 msgid "Posts and Replies"
 msgstr ""
 
-#: src/Module/Contact/Follow.php:221
+#: src/Module/Contact/Follow.php:207
 msgid "The contact could not be added."
 msgstr ""
 
-#: src/Module/Contact/MatchInterests.php:95
-#: src/Module/Media/Attachment/Upload.php:77
-#: src/Module/Media/Attachment/Upload.php:82
-#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86
-#: src/Module/Media/Photo/Upload.php:135
+#: src/Module/Contact/MatchInterests.php:81
+#: src/Module/Media/Attachment/Upload.php:63
+#: src/Module/Media/Attachment/Upload.php:68
+#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72
+#: src/Module/Media/Photo/Upload.php:121
 msgid "Invalid request."
 msgstr ""
 
-#: src/Module/Contact/MatchInterests.php:102
+#: src/Module/Contact/MatchInterests.php:88
 msgid "No keywords to match. Please add keywords to your profile."
 msgstr ""
 
-#: src/Module/Contact/MatchInterests.php:145
+#: src/Module/Contact/MatchInterests.php:141
 msgid "Profile Match"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:145
+#: src/Module/Contact/Profile.php:131
 msgid "Failed to update contact record."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:209
+#: src/Module/Contact/Profile.php:195
 msgid "Contact has been unblocked"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:213
+#: src/Module/Contact/Profile.php:199
 msgid "Contact has been blocked"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:225
+#: src/Module/Contact/Profile.php:211
 msgid "Contact has been unignored"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:229
+#: src/Module/Contact/Profile.php:215
 msgid "Contact has been ignored"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:241
+#: src/Module/Contact/Profile.php:227
 msgid "Contact has been uncollapsed"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:231
 msgid "Contact has been collapsed"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:273
+#: src/Module/Contact/Profile.php:259
 #, php-format
 msgid "You are mutual friends with %s"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:274
+#: src/Module/Contact/Profile.php:260
 #, php-format
 msgid "You are sharing with %s"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:275
+#: src/Module/Contact/Profile.php:261
 #, php-format
 msgid "%s is sharing with you"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:291
+#: src/Module/Contact/Profile.php:277
 msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:301
+#: src/Module/Contact/Profile.php:287
 msgid "This contact is on a server you ignored."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:304
+#: src/Module/Contact/Profile.php:290
 msgid "Never"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
 msgid "(Update was not successful)"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:307
+#: src/Module/Contact/Profile.php:293
 msgid "(Update was successful)"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503
+#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489
 msgid "Suggest friends"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:313
+#: src/Module/Contact/Profile.php:299
 #, php-format
 msgid "Network type: %s"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:318
+#: src/Module/Contact/Profile.php:304
 msgid "Communications lost with this contact!"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:324
+#: src/Module/Contact/Profile.php:310
 msgid "Fetch further information for feeds"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:326
+#: src/Module/Contact/Profile.php:312
 msgid "Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:315
 msgid "Fetch information"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:316
 msgid "Fetch keywords"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:331
+#: src/Module/Contact/Profile.php:317
 msgid "Fetch information and keywords"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346
-#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332
+#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343
 msgid "No mirroring"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352
-#: src/Module/Contact/Profile.php:358
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:344
 msgid "Mirror as my own posting"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353
+#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339
 msgid "Native reshare"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:373
+#: src/Module/Contact/Profile.php:359
 msgid "Contact Information / Notes"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:374
+#: src/Module/Contact/Profile.php:360
 msgid "Contact Settings"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:382
+#: src/Module/Contact/Profile.php:368
 msgid "Contact"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:386
+#: src/Module/Contact/Profile.php:372
 msgid "Their personal note"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:388
+#: src/Module/Contact/Profile.php:374
 msgid "Edit contact notes"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:392
+#: src/Module/Contact/Profile.php:378
 msgid "Block/Unblock contact"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:393
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Contact/Profile.php:379
+#: src/Module/Moderation/Report/Create.php:279
 msgid "Ignore contact"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:394
+#: src/Module/Contact/Profile.php:380
 msgid "View conversations"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:399
+#: src/Module/Contact/Profile.php:385
 msgid "Last update:"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:401
+#: src/Module/Contact/Profile.php:387
 msgid "Update public posts"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513
+#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499
 msgid "Update now"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:405
+#: src/Module/Contact/Profile.php:391
 msgid "Awaiting connection acknowledge"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:406
+#: src/Module/Contact/Profile.php:392
 msgid "Currently blocked"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:407
+#: src/Module/Contact/Profile.php:393
 msgid "Currently ignored"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:408
+#: src/Module/Contact/Profile.php:394
 msgid "Currently collapsed"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:409
+#: src/Module/Contact/Profile.php:395
 msgid "Currently archived"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:412
+#: src/Module/Contact/Profile.php:398
 msgid "Manage remote servers"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:414
-#: src/Module/Notifications/Introductions.php:198
+#: src/Module/Contact/Profile.php:400
+#: src/Module/Notifications/Introductions.php:184
 msgid "Hide this contact from others"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:414
+#: src/Module/Contact/Profile.php:400
 msgid "Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
 msgid "Notification for new posts"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:415
+#: src/Module/Contact/Profile.php:401
 msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
 msgid "Keyword Deny List"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:417
+#: src/Module/Contact/Profile.php:403
 msgid "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:435
-#: src/Module/Settings/TwoFactor/Index.php:160
+#: src/Module/Contact/Profile.php:421
+#: src/Module/Settings/TwoFactor/Index.php:146
 msgid "Actions"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:437
-#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232
+#: src/Module/Contact/Profile.php:423
+#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
 msgid "Status"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:443
+#: src/Module/Contact/Profile.php:429
 msgid "Mirror postings from this contact"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:445
+#: src/Module/Contact/Profile.php:431
 msgid "Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:434
 msgid "Channel Settings"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:435
 msgid "Frequency of this contact in relevant channels"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:450
+#: src/Module/Contact/Profile.php:436
 msgid "Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don't want to see their content at all, but you don't want to block or hide the contact completely."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
 msgid "Default frequency"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:451
+#: src/Module/Contact/Profile.php:437
 msgid "Posts by this contact are displayed in the \"for you\" channel if you interact often with this contact or if a post reached some level of interaction."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
 msgid "Display all posts of this contact"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:452
+#: src/Module/Contact/Profile.php:438
 msgid "All posts from this contact will appear on the \"for you\" channel"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
 msgid "Display only few posts"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:453
+#: src/Module/Contact/Profile.php:439
 msgid "When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
 msgid "Never display posts"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:454
+#: src/Module/Contact/Profile.php:440
 msgid "Posts from this contact will never be displayed in any channel"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
 msgid "Channel Only"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:455
+#: src/Module/Contact/Profile.php:441
 msgid "If enabled, posts from this contact will only appear in channels and network streams in circles, but not in the general network stream."
 msgstr ""
 
-#: src/Module/Contact/Profile.php:523
+#: src/Module/Contact/Profile.php:509
 msgid "Refetch contact data"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:534
+#: src/Module/Contact/Profile.php:520
 msgid "Toggle Blocked status"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:542
+#: src/Module/Contact/Profile.php:528
 msgid "Toggle Ignored status"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:550
+#: src/Module/Contact/Profile.php:536
 msgid "Toggle Collapsed status"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103
+#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89
 msgid "Revoke Follow"
 msgstr ""
 
-#: src/Module/Contact/Profile.php:559
+#: src/Module/Contact/Profile.php:545
 msgid "Revoke the follow from this contact"
 msgstr ""
 
-#: src/Module/Contact/Redir.php:139
+#: src/Module/Contact/Redir.php:125
 msgid "Bad Request."
 msgstr ""
 
-#: src/Module/Contact/Revoke.php:74
+#: src/Module/Contact/Revoke.php:60
 msgid "Contact is being deleted."
 msgstr ""
 
-#: src/Module/Contact/Revoke.php:88
+#: src/Module/Contact/Revoke.php:74
 msgid "Follow was successfully revoked."
 msgstr ""
 
-#: src/Module/Contact/Revoke.php:104
+#: src/Module/Contact/Revoke.php:90
 msgid "Do you really want to revoke this contact's follow? This cannot be undone and they will have to manually follow you back again."
 msgstr ""
 
-#: src/Module/Contact/Suggestions.php:62
+#: src/Module/Contact/Suggestions.php:48
 msgid "No suggestions available. If this is a new site, please try again in 24 hours."
 msgstr ""
 
-#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167
+#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153
 msgid "You aren't following this contact."
 msgstr ""
 
-#: src/Module/Contact/Unfollow.php:103
+#: src/Module/Contact/Unfollow.php:89
 msgid "Unfollowing is currently not supported by your network."
 msgstr ""
 
-#: src/Module/Contact/Unfollow.php:121
+#: src/Module/Contact/Unfollow.php:107
 msgid "Disconnect/Unfollow"
 msgstr ""
 
-#: src/Module/Contact/Unfollow.php:175
+#: src/Module/Contact/Unfollow.php:161
 msgid "Contact was successfully unfollowed"
 msgstr ""
 
-#: src/Module/Contact/Unfollow.php:178
+#: src/Module/Contact/Unfollow.php:164
 msgid "Unable to unfollow this contact, please contact your administrator"
 msgstr ""
 
-#: src/Module/Conversation/Channel.php:139
-#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
+#: src/Module/Conversation/Channel.php:125
+#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
+#: src/Module/Search/Index.php:180
 msgid "No results."
 msgstr ""
 
-#: src/Module/Conversation/Channel.php:177
+#: src/Module/Conversation/Channel.php:163
 msgid "Channel not available."
 msgstr ""
 
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:80
 msgid "This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."
 msgstr ""
 
-#: src/Module/Conversation/Community.php:180
+#: src/Module/Conversation/Community.php:168
 msgid "Community option not available."
 msgstr ""
 
-#: src/Module/Conversation/Community.php:196
+#: src/Module/Conversation/Community.php:184
 msgid "Not available."
 msgstr ""
 
-#: src/Module/Conversation/Network.php:216
+#: src/Module/Conversation/Network.php:202
 msgid "No such circle"
 msgstr ""
 
-#: src/Module/Conversation/Network.php:220
+#: src/Module/Conversation/Network.php:206
 #, php-format
 msgid "Circle: %s"
 msgstr ""
 
-#: src/Module/Conversation/Network.php:239
+#: src/Module/Conversation/Network.php:225
 #, php-format
 msgid "Error %d (%s) while fetching the timeline."
 msgstr ""
 
-#: src/Module/Conversation/Network.php:316
+#: src/Module/Conversation/Network.php:302
 msgid "Network feed not available."
 msgstr ""
 
-#: src/Module/Conversation/Timeline.php:204
+#: src/Module/Conversation/Timeline.php:190
 msgid "Include"
 msgstr ""
 
-#: src/Module/Conversation/Timeline.php:205
+#: src/Module/Conversation/Timeline.php:191
 msgid "Hide"
 msgstr ""
 
-#: src/Module/Credits.php:44
+#: src/Module/Credits.php:30
 msgid "Credits"
 msgstr ""
 
-#: src/Module/Credits.php:45
+#: src/Module/Credits.php:31
 msgid "Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"
 msgstr ""
 
-#: src/Module/Debug/ActivityPubConversion.php:59
+#: src/Module/Debug/ActivityPubConversion.php:45
 msgid "Formatted"
 msgstr ""
 
-#: src/Module/Debug/ActivityPubConversion.php:71
+#: src/Module/Debug/ActivityPubConversion.php:57
 msgid "Activity"
 msgstr ""
 
-#: src/Module/Debug/ActivityPubConversion.php:123
+#: src/Module/Debug/ActivityPubConversion.php:109
 msgid "Object data"
 msgstr ""
 
-#: src/Module/Debug/ActivityPubConversion.php:130
+#: src/Module/Debug/ActivityPubConversion.php:116
 msgid "Result Item"
 msgstr ""
 
-#: src/Module/Debug/ActivityPubConversion.php:135
-#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93
-#: src/Module/Security/TwoFactor/Verify.php:98
+#: src/Module/Debug/ActivityPubConversion.php:121
+#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
+#: src/Module/Security/TwoFactor/Verify.php:84
 msgid "Error"
 msgid_plural "Errors"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Debug/ActivityPubConversion.php:144
+#: src/Module/Debug/ActivityPubConversion.php:130
 msgid "Source activity"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:58
+#: src/Module/Debug/Babel.php:44
 msgid "Source input"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:64
+#: src/Module/Debug/Babel.php:50
 msgid "BBCode::toPlaintext"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:70
+#: src/Module/Debug/Babel.php:56
 msgid "BBCode::convert (raw HTML)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:75
+#: src/Module/Debug/Babel.php:61
 msgid "BBCode::convert (hex)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:80
+#: src/Module/Debug/Babel.php:66
 msgid "BBCode::convert"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:86
+#: src/Module/Debug/Babel.php:72
 msgid "BBCode::convert => HTML::toBBCode"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:92
+#: src/Module/Debug/Babel.php:78
 msgid "BBCode::toMarkdown"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:98
+#: src/Module/Debug/Babel.php:84
 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:102
+#: src/Module/Debug/Babel.php:88
 msgid "BBCode::toMarkdown => Markdown::convert"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:108
+#: src/Module/Debug/Babel.php:94
 msgid "BBCode::toMarkdown => Markdown::toBBCode"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:114
+#: src/Module/Debug/Babel.php:100
 msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:122
+#: src/Module/Debug/Babel.php:108
 msgid "Item Body"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:126
+#: src/Module/Debug/Babel.php:112
 msgid "Item Tags"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:132
+#: src/Module/Debug/Babel.php:118
 msgid "PageInfo::appendToBody"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:137
+#: src/Module/Debug/Babel.php:123
 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:141
+#: src/Module/Debug/Babel.php:127
 msgid "PageInfo::appendToBody => BBCode::convert"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:148
+#: src/Module/Debug/Babel.php:134
 msgid "Source input (Diaspora format)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:157
+#: src/Module/Debug/Babel.php:143
 msgid "Source input (Markdown)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:163
+#: src/Module/Debug/Babel.php:149
 msgid "Markdown::convert (raw HTML)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:168
+#: src/Module/Debug/Babel.php:154
 msgid "Markdown::convert"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:174
+#: src/Module/Debug/Babel.php:160
 msgid "Markdown::toBBCode"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:181
+#: src/Module/Debug/Babel.php:167
 msgid "Raw HTML input"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:186
+#: src/Module/Debug/Babel.php:172
 msgid "HTML Input"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:193
+#: src/Module/Debug/Babel.php:179
 msgid "HTML Purified (raw)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:198
+#: src/Module/Debug/Babel.php:184
 msgid "HTML Purified (hex)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:203
+#: src/Module/Debug/Babel.php:189
 msgid "HTML Purified"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:209
+#: src/Module/Debug/Babel.php:195
 msgid "HTML::toBBCode"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:215
+#: src/Module/Debug/Babel.php:201
 msgid "HTML::toBBCode => BBCode::convert"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:220
+#: src/Module/Debug/Babel.php:206
 msgid "HTML::toBBCode => BBCode::convert (raw HTML)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:226
+#: src/Module/Debug/Babel.php:212
 msgid "HTML::toBBCode => BBCode::toPlaintext"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:232
+#: src/Module/Debug/Babel.php:218
 msgid "HTML::toMarkdown"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:238
+#: src/Module/Debug/Babel.php:224
 msgid "HTML::toPlaintext"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:244
+#: src/Module/Debug/Babel.php:230
 msgid "HTML::toPlaintext (compact)"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:262
+#: src/Module/Debug/Babel.php:248
 msgid "Decoded post"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:283
+#: src/Module/Debug/Babel.php:269
 msgid "Post array before expand entities"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:290
+#: src/Module/Debug/Babel.php:276
 msgid "Post converted"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:295
+#: src/Module/Debug/Babel.php:281
 msgid "Converted body"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:301
+#: src/Module/Debug/Babel.php:287
 msgid "Twitter addon is absent from the addon/ folder."
 msgstr ""
 
-#: src/Module/Debug/Babel.php:311
+#: src/Module/Debug/Babel.php:297
 msgid "Babel Diagnostic"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:313
+#: src/Module/Debug/Babel.php:299
 msgid "Source text"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:314
+#: src/Module/Debug/Babel.php:300
 msgid "BBCode"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:316
+#: src/Module/Debug/Babel.php:302
 msgid "Markdown"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:317
+#: src/Module/Debug/Babel.php:303
 msgid "HTML"
 msgstr ""
 
-#: src/Module/Debug/Babel.php:319
+#: src/Module/Debug/Babel.php:305
 msgid "Twitter Source / Tweet URL (requires API key)"
 msgstr ""
 
-#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:180
+#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33
+#: src/Module/Settings/Profile/Index.php:166
 msgid "You must be logged in to use this module"
 msgstr ""
 
-#: src/Module/Debug/Feed.php:78
+#: src/Module/Debug/Feed.php:64
 msgid "Source URL"
 msgstr ""
 
-#: src/Module/Debug/Localtime.php:49
+#: src/Module/Debug/Localtime.php:35
 msgid "Time Conversion"
 msgstr ""
 
-#: src/Module/Debug/Localtime.php:50
+#: src/Module/Debug/Localtime.php:36
 msgid "Friendica provides this service for sharing events with other networks and friends in unknown timezones."
 msgstr ""
 
-#: src/Module/Debug/Localtime.php:51
+#: src/Module/Debug/Localtime.php:37
 #, php-format
 msgid "UTC time: %s"
 msgstr ""
 
-#: src/Module/Debug/Localtime.php:54
+#: src/Module/Debug/Localtime.php:40
 #, php-format
 msgid "Current timezone: %s"
 msgstr ""
 
-#: src/Module/Debug/Localtime.php:58
+#: src/Module/Debug/Localtime.php:44
 #, php-format
 msgid "Converted localtime: %s"
 msgstr ""
 
-#: src/Module/Debug/Localtime.php:62
+#: src/Module/Debug/Localtime.php:48
 msgid "Please select your timezone:"
 msgstr ""
 
-#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37
+#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23
 msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
 
-#: src/Module/Debug/Probe.php:52
+#: src/Module/Debug/Probe.php:38
 msgid "Probe Diagnostic"
 msgstr ""
 
-#: src/Module/Debug/Probe.php:53
+#: src/Module/Debug/Probe.php:39
 msgid "Output"
 msgstr ""
 
-#: src/Module/Debug/Probe.php:56
+#: src/Module/Debug/Probe.php:42
 msgid "Lookup address"
 msgstr ""
 
-#: src/Module/Debug/WebFinger.php:50
+#: src/Module/Debug/WebFinger.php:36
 msgid "Webfinger Diagnostic"
 msgstr ""
 
-#: src/Module/Debug/WebFinger.php:52
+#: src/Module/Debug/WebFinger.php:38
 msgid "Lookup address:"
 msgstr ""
 
-#: src/Module/Directory.php:75
+#: src/Module/Directory.php:61
 msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: src/Module/Directory.php:91
+#: src/Module/Directory.php:77
 msgid "Find on this site"
 msgstr ""
 
-#: src/Module/Directory.php:93
+#: src/Module/Directory.php:79
 msgid "Results for:"
 msgstr ""
 
-#: src/Module/Directory.php:95
+#: src/Module/Directory.php:81
 msgid "Site Directory"
 msgstr ""
 
-#: src/Module/Filer/RemoveTag.php:105
+#: src/Module/Filer/RemoveTag.php:91
 msgid "Item was not deleted"
 msgstr ""
 
-#: src/Module/Filer/RemoveTag.php:115
+#: src/Module/Filer/RemoveTag.php:101
 msgid "Item was not removed"
 msgstr ""
 
-#: src/Module/Filer/SaveTag.php:73
+#: src/Module/Filer/SaveTag.php:59
 msgid "- select -"
 msgstr ""
 
-#: src/Module/FriendSuggest.php:82
+#: src/Module/FriendSuggest.php:68
 msgid "Suggested contact not found."
 msgstr ""
 
-#: src/Module/FriendSuggest.php:100
+#: src/Module/FriendSuggest.php:86
 msgid "Friend suggestion sent."
 msgstr ""
 
-#: src/Module/FriendSuggest.php:137
+#: src/Module/FriendSuggest.php:123
 msgid "Suggest Friends"
 msgstr ""
 
-#: src/Module/FriendSuggest.php:140
+#: src/Module/FriendSuggest.php:126
 #, php-format
 msgid "Suggest a friend for %s"
 msgstr ""
 
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:67
 msgid "Installed addons/apps:"
 msgstr ""
 
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:72
 msgid "No installed addons/apps"
 msgstr ""
 
-#: src/Module/Friendica.php:91
+#: src/Module/Friendica.php:77
 #, php-format
 msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
 msgstr ""
 
-#: src/Module/Friendica.php:98
+#: src/Module/Friendica.php:84
 msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: src/Module/Friendica.php:101
-#: src/Module/Moderation/Blocklist/Server/Index.php:87
-#: src/Module/Moderation/Blocklist/Server/Index.php:111
-#: src/Module/Settings/Channels.php:232
+#: src/Module/Friendica.php:87
+#: src/Module/Moderation/Blocklist/Server/Index.php:73
+#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Settings/Channels.php:218
 msgid "Reason for the block"
 msgstr ""
 
-#: src/Module/Friendica.php:103
+#: src/Module/Friendica.php:89
 msgid "Download this list in CSV format"
 msgstr ""
 
-#: src/Module/Friendica.php:117
+#: src/Module/Friendica.php:103
 #, php-format
 msgid "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 ""
 
-#: src/Module/Friendica.php:122
+#: src/Module/Friendica.php:108
 msgid "Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."
 msgstr ""
 
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
 msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: src/Module/Friendica.php:123
+#: src/Module/Friendica.php:109
 msgid "the bugtracker at github"
 msgstr ""
 
-#: src/Module/Friendica.php:124
+#: src/Module/Friendica.php:110
 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
 msgstr ""
 
-#: src/Module/HCard.php:45
+#: src/Module/HCard.php:31
 msgid "No profile"
 msgstr ""
 
-#: src/Module/HTTPException/MethodNotAllowed.php:31
+#: src/Module/HTTPException/MethodNotAllowed.php:17
 msgid "Method Not Allowed."
 msgstr ""
 
-#: src/Module/Help.php:60
+#: src/Module/Help.php:46
 msgid "Help:"
 msgstr ""
 
-#: src/Module/Home.php:66
+#: src/Module/Home.php:52
 #, php-format
 msgid "Welcome to %s"
 msgstr ""
 
-#: src/Module/Install.php:189
+#: src/Module/Install.php:175
 msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: src/Module/Install.php:200
+#: src/Module/Install.php:186
 msgid "System check"
 msgstr ""
 
-#: src/Module/Install.php:202 src/Module/Install.php:247
-#: src/Module/Install.php:326
+#: src/Module/Install.php:188 src/Module/Install.php:233
+#: src/Module/Install.php:312
 msgid "Requirement not satisfied"
 msgstr ""
 
-#: src/Module/Install.php:203
+#: src/Module/Install.php:189
 msgid "Optional requirement not satisfied"
 msgstr ""
 
-#: src/Module/Install.php:204
+#: src/Module/Install.php:190
 msgid "OK"
 msgstr ""
 
-#: src/Module/Install.php:208
+#: src/Module/Install.php:194
 msgid "Next"
 msgstr ""
 
-#: src/Module/Install.php:209
+#: src/Module/Install.php:195
 msgid "Check again"
 msgstr ""
 
-#: src/Module/Install.php:222
+#: src/Module/Install.php:208
 msgid "Base settings"
 msgstr ""
 
-#: src/Module/Install.php:224
+#: src/Module/Install.php:210
 msgid "Base path to installation"
 msgstr ""
 
-#: src/Module/Install.php:226
+#: src/Module/Install.php:212
 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 ""
 
-#: src/Module/Install.php:229
+#: src/Module/Install.php:215
 msgid "The Friendica system URL"
 msgstr ""
 
-#: src/Module/Install.php:231
+#: src/Module/Install.php:217
 msgid "Overwrite this field in case the system URL determination isn't right, otherwise leave it as is."
 msgstr ""
 
-#: src/Module/Install.php:242
+#: src/Module/Install.php:228
 msgid "Database connection"
 msgstr ""
 
-#: src/Module/Install.php:243
+#: src/Module/Install.php:229
 msgid "In order to install Friendica we need to know how to connect to your database."
 msgstr ""
 
-#: src/Module/Install.php:244
+#: src/Module/Install.php:230
 msgid "Please contact your hosting provider or site administrator if you have questions about these settings."
 msgstr ""
 
-#: src/Module/Install.php:245
+#: src/Module/Install.php:231
 msgid "The database you specify below should already exist. If it does not, please create it before continuing."
 msgstr ""
 
-#: src/Module/Install.php:252
+#: src/Module/Install.php:238
 msgid "Database Server Name"
 msgstr ""
 
-#: src/Module/Install.php:257
+#: src/Module/Install.php:243
 msgid "Database Login Name"
 msgstr ""
 
-#: src/Module/Install.php:263
+#: src/Module/Install.php:249
 msgid "Database Login Password"
 msgstr ""
 
-#: src/Module/Install.php:265
+#: src/Module/Install.php:251
 msgid "For security reasons the password must not be empty"
 msgstr ""
 
-#: src/Module/Install.php:268
+#: src/Module/Install.php:254
 msgid "Database Name"
 msgstr ""
 
-#: src/Module/Install.php:272 src/Module/Install.php:300
+#: src/Module/Install.php:258 src/Module/Install.php:286
 msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: src/Module/Install.php:287
+#: src/Module/Install.php:273
 msgid "Site settings"
 msgstr ""
 
-#: src/Module/Install.php:295
+#: src/Module/Install.php:281
 msgid "Site administrator email address"
 msgstr ""
 
-#: src/Module/Install.php:297
+#: src/Module/Install.php:283
 msgid "Your account email address must match this in order to use the web admin panel."
 msgstr ""
 
-#: src/Module/Install.php:304
+#: src/Module/Install.php:290
 msgid "System Language:"
 msgstr ""
 
-#: src/Module/Install.php:306
+#: src/Module/Install.php:292
 msgid "Set the default language for your Friendica installation interface and to send emails."
 msgstr ""
 
-#: src/Module/Install.php:318
+#: src/Module/Install.php:304
 msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: src/Module/Install.php:328
+#: src/Module/Install.php:314
 msgid "Installation finished"
 msgstr ""
 
-#: src/Module/Install.php:348
+#: src/Module/Install.php:334
 msgid "<h1>What next</h1>"
 msgstr ""
 
-#: src/Module/Install.php:349
+#: src/Module/Install.php:335
 msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
 msgstr ""
 
-#: src/Module/Install.php:352
+#: src/Module/Install.php:338
 #, php-format
 msgid "Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."
 msgstr ""
 
-#: src/Module/Invite.php:57
+#: src/Module/Invite.php:43
 msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: src/Module/Invite.php:82
+#: src/Module/Invite.php:68
 #, php-format
 msgid "%s : Not a valid email address."
 msgstr ""
 
-#: src/Module/Invite.php:108
+#: src/Module/Invite.php:94
 msgid "Please join us on Friendica"
 msgstr ""
 
-#: src/Module/Invite.php:117
+#: src/Module/Invite.php:103
 msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: src/Module/Invite.php:121
+#: src/Module/Invite.php:107
 #, php-format
 msgid "%s : Message delivery failed."
 msgstr ""
 
-#: src/Module/Invite.php:125
+#: src/Module/Invite.php:111
 #, php-format
 msgid "%d message sent."
 msgid_plural "%d messages sent."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Invite.php:143
+#: src/Module/Invite.php:129
 msgid "You have no more invitations available"
 msgstr ""
 
-#: src/Module/Invite.php:150
+#: src/Module/Invite.php:136
 #, php-format
 msgid "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
 msgstr ""
 
-#: src/Module/Invite.php:152
+#: src/Module/Invite.php:138
 #, php-format
 msgid "To accept this invitation, please visit and register at %s or any other public Friendica website."
 msgstr ""
 
-#: src/Module/Invite.php:153
+#: src/Module/Invite.php:139
 #, 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 ""
 
-#: src/Module/Invite.php:157
+#: src/Module/Invite.php:143
 msgid "Our apologies. This system is not currently configured to connect with other public sites or invite members."
 msgstr ""
 
-#: src/Module/Invite.php:160
+#: src/Module/Invite.php:146
 msgid "Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."
 msgstr ""
 
-#: src/Module/Invite.php:159
+#: src/Module/Invite.php:145
 #, php-format
 msgid "To accept this invitation, please visit and register at %s."
 msgstr ""
 
-#: src/Module/Invite.php:167
+#: src/Module/Invite.php:153
 msgid "Send invitations"
 msgstr ""
 
-#: src/Module/Invite.php:168
+#: src/Module/Invite.php:154
 msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: src/Module/Invite.php:172
+#: src/Module/Invite.php:158
 msgid "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
 msgstr ""
 
-#: src/Module/Invite.php:174
+#: src/Module/Invite.php:160
 msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: src/Module/Invite.php:174
+#: src/Module/Invite.php:160
 msgid "Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: src/Module/Invite.php:176
+#: src/Module/Invite.php:162
 msgid "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
 msgstr ""
 
-#: src/Module/Item/Compose.php:94
+#: src/Module/Item/Compose.php:80
 msgid "Please enter a post body."
 msgstr ""
 
-#: src/Module/Item/Compose.php:105
+#: src/Module/Item/Compose.php:91
 msgid "This feature is only available with the frio theme."
 msgstr ""
 
-#: src/Module/Item/Compose.php:129
+#: src/Module/Item/Compose.php:115
 msgid "Compose new personal note"
 msgstr ""
 
-#: src/Module/Item/Compose.php:138
+#: src/Module/Item/Compose.php:124
 msgid "Compose new post"
 msgstr ""
 
-#: src/Module/Item/Compose.php:194
+#: src/Module/Item/Compose.php:180
 msgid "Visibility"
 msgstr ""
 
-#: src/Module/Item/Compose.php:210
+#: src/Module/Item/Compose.php:196
 msgid "Clear the location"
 msgstr ""
 
-#: src/Module/Item/Compose.php:211
+#: src/Module/Item/Compose.php:197
 msgid "Location services are unavailable on your device"
 msgstr ""
 
-#: src/Module/Item/Compose.php:212
+#: src/Module/Item/Compose.php:198
 msgid "Location services are disabled. Please check the website's permissions on your device"
 msgstr ""
 
-#: src/Module/Item/Compose.php:218
+#: src/Module/Item/Compose.php:204
 msgid "You can make this page always open when you use the New Post button in the <a href=\"/settings/display\">Theme Customization settings</a>."
 msgstr ""
 
-#: src/Module/Item/Feed.php:86
+#: src/Module/Item/Feed.php:72
 msgid "The feed for this item is unavailable."
 msgstr ""
 
-#: src/Module/Item/Follow.php:51
+#: src/Module/Item/Follow.php:37
 msgid "Unable to follow this item."
 msgstr ""
 
-#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53
+#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39
 msgid "System down for maintenance"
 msgstr ""
 
-#: src/Module/Maintenance.php:54
+#: src/Module/Maintenance.php:40
 msgid "This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes."
 msgstr ""
 
-#: src/Module/Manifest.php:40
+#: src/Module/Manifest.php:26
 msgid "A Decentralized Social Network"
 msgstr ""
 
-#: src/Module/Media/Attachment/Browser.php:58
-#: src/Module/Media/Photo/Browser.php:59
+#: src/Module/Media/Attachment/Browser.php:44
+#: src/Module/Media/Photo/Browser.php:45
 msgid "You need to be logged in to access this page."
 msgstr ""
 
-#: src/Module/Media/Attachment/Browser.php:74
+#: src/Module/Media/Attachment/Browser.php:60
 msgid "Files"
 msgstr ""
 
-#: src/Module/Media/Attachment/Browser.php:79
-#: src/Module/Media/Photo/Browser.php:90
-#: src/Module/Settings/Profile/Photo/Index.php:127
+#: src/Module/Media/Attachment/Browser.php:65
+#: src/Module/Media/Photo/Browser.php:76
+#: src/Module/Settings/Profile/Photo/Index.php:113
 msgid "Upload"
 msgstr ""
 
-#: src/Module/Media/Attachment/Upload.php:97
+#: src/Module/Media/Attachment/Upload.php:83
 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: src/Module/Media/Attachment/Upload.php:97
+#: src/Module/Media/Attachment/Upload.php:83
 msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: src/Module/Media/Attachment/Upload.php:104
+#: src/Module/Media/Attachment/Upload.php:90
 #, php-format
 msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: src/Module/Media/Attachment/Upload.php:114
+#: src/Module/Media/Attachment/Upload.php:100
 msgid "File upload failed."
 msgstr ""
 
-#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151
-#: src/Module/Profile/Photos.php:215
-#: src/Module/Settings/Profile/Photo/Index.php:67
+#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137
+#: src/Module/Profile/Photos.php:201
+#: src/Module/Settings/Profile/Photo/Index.php:53
 msgid "Unable to process image."
 msgstr ""
 
-#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235
-#: src/Module/Settings/Profile/Photo/Index.php:94
+#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221
+#: src/Module/Settings/Profile/Photo/Index.php:80
 msgid "Image upload failed."
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:73
+#: src/Module/Moderation/BaseUsers.php:59
 msgid "List of all users"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:78
+#: src/Module/Moderation/BaseUsers.php:64
 msgid "Active"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:81
+#: src/Module/Moderation/BaseUsers.php:67
 msgid "List of active accounts"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:89
+#: src/Module/Moderation/BaseUsers.php:75
 msgid "List of pending registrations"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:97
+#: src/Module/Moderation/BaseUsers.php:83
 msgid "List of blocked users"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:102
+#: src/Module/Moderation/BaseUsers.php:88
 msgid "Deleted"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:105
+#: src/Module/Moderation/BaseUsers.php:91
 msgid "List of pending user deletions"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:487
+#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473
 msgid "Normal Account Page"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:494
+#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480
 msgid "Soapbox Page"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:124 src/Module/Settings/Account.php:501
+#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487
 msgid "Public Group"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:125 src/Module/Settings/Account.php:508
+#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494
 msgid "Public Group - Restricted"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:515
+#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:127
+#: src/Module/Moderation/BaseUsers.php:113
 msgid "Private Group"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:130 src/Module/Moderation/Summary.php:53
-#: src/Module/Settings/Account.php:458
+#: src/Module/Moderation/BaseUsers.php:116 src/Module/Moderation/Summary.php:39
+#: src/Module/Settings/Account.php:444
 msgid "Personal Page"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:131 src/Module/Moderation/Summary.php:54
-#: src/Module/Settings/Account.php:465
+#: src/Module/Moderation/BaseUsers.php:117 src/Module/Moderation/Summary.php:40
+#: src/Module/Settings/Account.php:451
 msgid "Organisation Page"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:132 src/Module/Moderation/Summary.php:55
-#: src/Module/Settings/Account.php:472
+#: src/Module/Moderation/BaseUsers.php:118 src/Module/Moderation/Summary.php:41
+#: src/Module/Settings/Account.php:458
 msgid "News Page"
 msgstr ""
 
-#: src/Module/Moderation/BaseUsers.php:133 src/Module/Moderation/Summary.php:56
-#: src/Module/Settings/Account.php:479
+#: src/Module/Moderation/BaseUsers.php:119 src/Module/Moderation/Summary.php:42
+#: src/Module/Settings/Account.php:465
 msgid "Community Group"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:70
+#: src/Module/Moderation/Blocklist/Contact.php:56
 msgid "You can't block a local contact, please block the user instead"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:89
+#: src/Module/Moderation/Blocklist/Contact.php:75
 #, php-format
 msgid "%s contact unblocked"
 msgid_plural "%s contacts unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:111
+#: src/Module/Moderation/Blocklist/Contact.php:97
 msgid "Remote Contact Blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:112
+#: src/Module/Moderation/Blocklist/Contact.php:98
 msgid "This page allows you to prevent any message from a remote contact to reach your node."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:113
+#: src/Module/Moderation/Blocklist/Contact.php:99
 msgid "Block Remote Contact"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:114
-#: src/Module/Moderation/Users/Active.php:135
-#: src/Module/Moderation/Users/Blocked.php:135
-#: src/Module/Moderation/Users/Index.php:149
-#: src/Module/Moderation/Users/Pending.php:98
+#: src/Module/Moderation/Blocklist/Contact.php:100
+#: src/Module/Moderation/Users/Active.php:121
+#: src/Module/Moderation/Users/Blocked.php:121
+#: src/Module/Moderation/Users/Index.php:135
+#: src/Module/Moderation/Users/Pending.php:84
 msgid "select all"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:115
+#: src/Module/Moderation/Blocklist/Contact.php:101
 msgid "select none"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:118
+#: src/Module/Moderation/Blocklist/Contact.php:104
 msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:120
+#: src/Module/Moderation/Blocklist/Contact.php:106
 msgid "Blocked Remote Contacts"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:121
+#: src/Module/Moderation/Blocklist/Contact.php:107
 msgid "Block New Remote Contact"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:122
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Blocklist/Contact.php:108
+#: src/Module/Moderation/Reports.php:102
 msgid "Photo"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:122
+#: src/Module/Moderation/Blocklist/Contact.php:108
 msgid "Reason"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:128
+#: src/Module/Moderation/Blocklist/Contact.php:114
 #, php-format
 msgid "%s total blocked contact"
 msgid_plural "%s total blocked contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:131
+#: src/Module/Moderation/Blocklist/Contact.php:117
 msgid "URL of the remote contact to block."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:132
+#: src/Module/Moderation/Blocklist/Contact.php:118
 msgid "Also purge contact"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:132
+#: src/Module/Moderation/Blocklist/Contact.php:118
 msgid "Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Contact.php:133
-#: src/Module/Moderation/Blocklist/Server/Import.php:124
+#: src/Module/Moderation/Blocklist/Contact.php:119
+#: src/Module/Moderation/Blocklist/Server/Import.php:110
 msgid "Block Reason"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:80
+#: src/Module/Moderation/Blocklist/Server/Add.php:66
 msgid "Server domain pattern added to the blocklist."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:88
+#: src/Module/Moderation/Blocklist/Server/Add.php:74
 #, php-format
 msgid "%s server scheduled to be purged."
 msgid_plural "%s servers scheduled to be purged."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:120
-#: src/Module/Moderation/Blocklist/Server/Import.php:117
+#: src/Module/Moderation/Blocklist/Server/Add.php:106
+#: src/Module/Moderation/Blocklist/Server/Import.php:103
 msgid "← Return to the list"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Add.php:108
 msgid "Block A New Server Domain Pattern"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:123
-#: src/Module/Moderation/Blocklist/Server/Index.php:99
+#: src/Module/Moderation/Blocklist/Server/Add.php:109
+#: src/Module/Moderation/Blocklist/Server/Index.php:85
 msgid ""
 "<p>The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:</p>\n"
 "<ul>\n"
@@ -7608,2617 +7607,2617 @@ msgid ""
 "</ul>"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:128
-#: src/Module/Moderation/Blocklist/Server/Index.php:107
+#: src/Module/Moderation/Blocklist/Server/Add.php:114
+#: src/Module/Moderation/Blocklist/Server/Index.php:93
 msgid "Check pattern"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:129
+#: src/Module/Moderation/Blocklist/Server/Add.php:115
 msgid "Matching known servers"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:130
-#: src/Module/Settings/Server/Action.php:76
-#: src/Module/Settings/Server/Index.php:106
+#: src/Module/Moderation/Blocklist/Server/Add.php:116
+#: src/Module/Settings/Server/Action.php:62
+#: src/Module/Settings/Server/Index.php:92
 msgid "Server Name"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:131
+#: src/Module/Moderation/Blocklist/Server/Add.php:117
 msgid "Server Domain"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:132
+#: src/Module/Moderation/Blocklist/Server/Add.php:118
 msgid "Known Contacts"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:133
+#: src/Module/Moderation/Blocklist/Server/Add.php:119
 #, php-format
 msgid "%d known server"
 msgid_plural "%d known servers"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:134
+#: src/Module/Moderation/Blocklist/Server/Add.php:120
 msgid "Add pattern to the blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
 msgid "Server Domain Pattern"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:136
-#: src/Module/Moderation/Blocklist/Server/Index.php:116
+#: src/Module/Moderation/Blocklist/Server/Add.php:122
+#: src/Module/Moderation/Blocklist/Server/Index.php:102
 msgid "The domain pattern of the new server to add to the blocklist. Do not include the protocol."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:137
+#: src/Module/Moderation/Blocklist/Server/Add.php:123
 msgid "Purge server"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:137
+#: src/Module/Moderation/Blocklist/Server/Add.php:123
 msgid "Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone."
 msgid_plural "Also purges all the locally stored content authored by the known contacts registered on these servers. Keeps the contacts and the servers records. This action cannot be undone."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
 msgid "Block reason"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Add.php:138
+#: src/Module/Moderation/Blocklist/Server/Add.php:124
 msgid "The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:74
-#: src/Module/Moderation/Blocklist/Server/Import.php:83
+#: src/Module/Moderation/Blocklist/Server/Import.php:60
+#: src/Module/Moderation/Blocklist/Server/Import.php:69
 msgid "Error importing pattern file"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:89
+#: src/Module/Moderation/Blocklist/Server/Import.php:75
 msgid "Local blocklist replaced with the provided file."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:93
+#: src/Module/Moderation/Blocklist/Server/Import.php:79
 #, php-format
 msgid "%d pattern was added to the local blocklist."
 msgid_plural "%d patterns were added to the local blocklist."
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:95
+#: src/Module/Moderation/Blocklist/Server/Import.php:81
 msgid "No pattern was added to the local blocklist."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:119
+#: src/Module/Moderation/Blocklist/Server/Import.php:105
 msgid "Import a Server Domain Pattern Blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:120
+#: src/Module/Moderation/Blocklist/Server/Import.php:106
 msgid "<p>This file can be downloaded from the <code>/friendica</code> path of any Friendica server.</p>"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:121
-#: src/Module/Moderation/Blocklist/Server/Index.php:106
+#: src/Module/Moderation/Blocklist/Server/Import.php:107
+#: src/Module/Moderation/Blocklist/Server/Index.php:92
 msgid "Upload file"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:122
+#: src/Module/Moderation/Blocklist/Server/Import.php:108
 msgid "Patterns to import"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:123
+#: src/Module/Moderation/Blocklist/Server/Import.php:109
 msgid "Domain Pattern"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:125
+#: src/Module/Moderation/Blocklist/Server/Import.php:111
 msgid "Import Mode"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:126
+#: src/Module/Moderation/Blocklist/Server/Import.php:112
 msgid "Import Patterns"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:127
+#: src/Module/Moderation/Blocklist/Server/Import.php:113
 #, php-format
 msgid "%d total pattern"
 msgid_plural "%d total patterns"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:129
-#: src/Module/Moderation/Blocklist/Server/Index.php:115
+#: src/Module/Moderation/Blocklist/Server/Import.php:115
+#: src/Module/Moderation/Blocklist/Server/Index.php:101
 msgid "Server domain pattern blocklist CSV file"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:130
+#: src/Module/Moderation/Blocklist/Server/Import.php:116
 msgid "Append"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:130
+#: src/Module/Moderation/Blocklist/Server/Import.php:116
 msgid "Imports patterns from the file that weren't already existing in the current blocklist."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:131
+#: src/Module/Moderation/Blocklist/Server/Import.php:117
 msgid "Replace"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Import.php:131
+#: src/Module/Moderation/Blocklist/Server/Import.php:117
 msgid "Replaces the current blocklist by the imported patterns."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:86
-#: src/Module/Moderation/Blocklist/Server/Index.php:110
-#: src/Module/Settings/Channels.php:231
+#: src/Module/Moderation/Blocklist/Server/Index.php:72
+#: src/Module/Moderation/Blocklist/Server/Index.php:96
+#: src/Module/Settings/Channels.php:217
 msgid "Blocked server domain pattern"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:88
+#: src/Module/Moderation/Blocklist/Server/Index.php:74
 msgid "Delete server domain pattern"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:88
+#: src/Module/Moderation/Blocklist/Server/Index.php:74
 msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:96
+#: src/Module/Moderation/Blocklist/Server/Index.php:82
 msgid "Server Domain Pattern Blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:97
+#: src/Module/Moderation/Blocklist/Server/Index.php:83
 msgid "This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:98
+#: src/Module/Moderation/Blocklist/Server/Index.php:84
 msgid "The list of blocked server domain patterns will be made publically available on the <a href=\"/friendica\">/friendica</a> page so that your users and people investigating communication problems can find the reason easily."
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:104
+#: src/Module/Moderation/Blocklist/Server/Index.php:90
 msgid "Import server domain pattern blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:105
+#: src/Module/Moderation/Blocklist/Server/Index.php:91
 msgid "Add new entry to the blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:108
+#: src/Module/Moderation/Blocklist/Server/Index.php:94
 msgid "Save changes to the blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:109
+#: src/Module/Moderation/Blocklist/Server/Index.php:95
 msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:112
+#: src/Module/Moderation/Blocklist/Server/Index.php:98
 msgid "Delete entry from the blocklist"
 msgstr ""
 
-#: src/Module/Moderation/Blocklist/Server/Index.php:113
+#: src/Module/Moderation/Blocklist/Server/Index.php:99
 msgid "Delete entry from the blocklist?"
 msgstr ""
 
-#: src/Module/Moderation/Item/Delete.php:50
+#: src/Module/Moderation/Item/Delete.php:36
 msgid "Item marked for deletion."
 msgstr ""
 
-#: src/Module/Moderation/Item/Delete.php:63
+#: src/Module/Moderation/Item/Delete.php:49
 msgid "Delete this Item"
 msgstr ""
 
-#: src/Module/Moderation/Item/Delete.php:64
+#: src/Module/Moderation/Item/Delete.php:50
 msgid "On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."
 msgstr ""
 
-#: src/Module/Moderation/Item/Delete.php:65
+#: src/Module/Moderation/Item/Delete.php:51
 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 ""
 
-#: src/Module/Moderation/Item/Delete.php:67
+#: src/Module/Moderation/Item/Delete.php:53
 msgid "GUID"
 msgstr ""
 
-#: src/Module/Moderation/Item/Delete.php:67
+#: src/Module/Moderation/Item/Delete.php:53
 msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:83
+#: src/Module/Moderation/Item/Source.php:69
 msgid "Item Id"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:84
+#: src/Module/Moderation/Item/Source.php:70
 msgid "Item URI"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:86
+#: src/Module/Moderation/Item/Source.php:72
 msgid "Terms"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:87
+#: src/Module/Moderation/Item/Source.php:73
 msgid "Tag"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:88
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Index.php:140
+#: src/Module/Moderation/Item/Source.php:74
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Index.php:126
 msgid "Type"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:89
+#: src/Module/Moderation/Item/Source.php:75
 msgid "Term"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:90
+#: src/Module/Moderation/Item/Source.php:76
 msgid "URL"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:92
+#: src/Module/Moderation/Item/Source.php:78
 msgid "Implicit Mention"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:94
+#: src/Module/Moderation/Item/Source.php:80
 msgid "Item not found"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:95
+#: src/Module/Moderation/Item/Source.php:81
 msgid "No source recorded"
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:96
+#: src/Module/Moderation/Item/Source.php:82
 msgid "Please make sure the <code>debug.store_source</code> config key is set in <code>config/local.config.php</code> for future items to have sources."
 msgstr ""
 
-#: src/Module/Moderation/Item/Source.php:98
+#: src/Module/Moderation/Item/Source.php:84
 msgid "Item Guid"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:95
+#: src/Module/Moderation/Report/Create.php:81
 msgid "Contact not found or their server is already blocked on this node."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:136
+#: src/Module/Moderation/Report/Create.php:122
 msgid "Please login to access this page."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:165
-#: src/Module/Moderation/Report/Create.php:180
-#: src/Module/Moderation/Report/Create.php:208
-#: src/Module/Moderation/Report/Create.php:260
-#: src/Module/Moderation/Report/Create.php:279
+#: src/Module/Moderation/Report/Create.php:151
+#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:194
+#: src/Module/Moderation/Report/Create.php:246
+#: src/Module/Moderation/Report/Create.php:265
 msgid "Create Moderation Report"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:166
+#: src/Module/Moderation/Report/Create.php:152
 msgid "Pick Contact"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:167
+#: src/Module/Moderation/Report/Create.php:153
 msgid "Please enter below the contact address or profile URL you would like to create a moderation report about."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:171
+#: src/Module/Moderation/Report/Create.php:157
 msgid "Contact address/URL"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:181
+#: src/Module/Moderation/Report/Create.php:167
 msgid "Pick Category"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:182
+#: src/Module/Moderation/Report/Create.php:168
 msgid "Please pick below the category of your report."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:186
-#: src/Module/Moderation/Report/Create.php:311
+#: src/Module/Moderation/Report/Create.php:172
+#: src/Module/Moderation/Report/Create.php:297
 msgid "Spam"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:186
+#: src/Module/Moderation/Report/Create.php:172
 msgid "This contact is publishing many repeated/overly long posts/replies or advertising their product/websites in otherwise irrelevant conversations."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:187
-#: src/Module/Moderation/Report/Create.php:312
+#: src/Module/Moderation/Report/Create.php:173
+#: src/Module/Moderation/Report/Create.php:298
 msgid "Illegal Content"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:187
+#: src/Module/Moderation/Report/Create.php:173
 msgid "This contact is publishing content that is considered illegal in this node's hosting juridiction."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:188
-#: src/Module/Moderation/Report/Create.php:313
+#: src/Module/Moderation/Report/Create.php:174
+#: src/Module/Moderation/Report/Create.php:299
 msgid "Community Safety"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:188
+#: src/Module/Moderation/Report/Create.php:174
 msgid "This contact aggravated you or other people, by being provocative or insensitive, intentionally or not. This includes disclosing people's private information (doxxing), posting threats or offensive pictures in posts or replies."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:189
-#: src/Module/Moderation/Report/Create.php:314
+#: src/Module/Moderation/Report/Create.php:175
+#: src/Module/Moderation/Report/Create.php:300
 msgid "Unwanted Content/Behavior"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:189
+#: src/Module/Moderation/Report/Create.php:175
 msgid "This contact has repeatedly published content irrelevant to the node's theme or is openly criticizing the node's administration/moderation without directly engaging with the relevant people for example or repeatedly nitpicking on a sensitive topic."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:190
-#: src/Module/Moderation/Report/Create.php:315
+#: src/Module/Moderation/Report/Create.php:176
+#: src/Module/Moderation/Report/Create.php:301
 msgid "Rules Violation"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:190
+#: src/Module/Moderation/Report/Create.php:176
 msgid "This contact violated one or more rules of this node. You will be able to pick which one(s) in the next step."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:191
+#: src/Module/Moderation/Report/Create.php:177
 msgid "Please elaborate below why you submitted this report. The more details you provide, the better your report can be handled."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
 msgid "Additional Information"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:193
+#: src/Module/Moderation/Report/Create.php:179
 msgid "Please provide any additional information relevant to this particular report. You will be able to attach posts by this contact in the next step, but any context is welcome."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:209
+#: src/Module/Moderation/Report/Create.php:195
 msgid "Pick Rules"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:210
+#: src/Module/Moderation/Report/Create.php:196
 msgid "Please pick below the node rules you believe this contact violated."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:261
+#: src/Module/Moderation/Report/Create.php:247
 msgid "Pick Posts"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:262
+#: src/Module/Moderation/Report/Create.php:248
 msgid "Please optionally pick posts to attach to your report."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:281
+#: src/Module/Moderation/Report/Create.php:267
 msgid "Submit Report"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:282
+#: src/Module/Moderation/Report/Create.php:268
 msgid "Further Action"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:283
+#: src/Module/Moderation/Report/Create.php:269
 msgid "You can also perform one of the following action on the contact you reported:"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:291
+#: src/Module/Moderation/Report/Create.php:277
 msgid "Nothing"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
 msgid "Collapse contact"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:292
+#: src/Module/Moderation/Report/Create.php:278
 msgid "Their posts and replies will keep appearing in your Network page but their content will be collapsed by default."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:293
+#: src/Module/Moderation/Report/Create.php:279
 msgid "Their posts won't appear in your Network page anymore, but their replies can appear in forum threads. They still can follow you."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
 msgid "Block contact"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:294
+#: src/Module/Moderation/Report/Create.php:280
 msgid "Their posts won't appear in your Network page anymore, but their replies can appear in forum threads, with their content collapsed by default. They cannot follow you but still can have access to your public posts by other means."
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
 msgid "Forward report"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:297
+#: src/Module/Moderation/Report/Create.php:283
 msgid "Would you ike to forward this report to the remote server?"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:330
+#: src/Module/Moderation/Report/Create.php:316
 msgid "1. Pick a contact"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:331
+#: src/Module/Moderation/Report/Create.php:317
 msgid "2. Pick a category"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:332
+#: src/Module/Moderation/Report/Create.php:318
 msgid "2a. Pick rules"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:333
+#: src/Module/Moderation/Report/Create.php:319
 msgid "2b. Add comment"
 msgstr ""
 
-#: src/Module/Moderation/Report/Create.php:334
+#: src/Module/Moderation/Report/Create.php:320
 msgid "3. Pick posts"
 msgstr ""
 
-#: src/Module/Moderation/Reports.php:111
+#: src/Module/Moderation/Reports.php:97
 msgid "List of reports"
 msgstr ""
 
-#: src/Module/Moderation/Reports.php:112
+#: src/Module/Moderation/Reports.php:98
 msgid "This page display reports created by our or remote users."
 msgstr ""
 
-#: src/Module/Moderation/Reports.php:113
+#: src/Module/Moderation/Reports.php:99
 msgid "No report exists at this node."
 msgstr ""
 
-#: src/Module/Moderation/Reports.php:116
+#: src/Module/Moderation/Reports.php:102
 msgid "Category"
 msgstr ""
 
-#: src/Module/Moderation/Reports.php:120
+#: src/Module/Moderation/Reports.php:106
 #, php-format
 msgid "%s total report"
 msgid_plural "%s total reports"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Reports.php:123
+#: src/Module/Moderation/Reports.php:109
 msgid "URL of the reported contact."
 msgstr ""
 
-#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436
+#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422
 msgid "Channel Relay"
 msgstr ""
 
-#: src/Module/Moderation/Summary.php:77
+#: src/Module/Moderation/Summary.php:63
 msgid "Registered users"
 msgstr ""
 
-#: src/Module/Moderation/Summary.php:79
+#: src/Module/Moderation/Summary.php:65
 msgid "Pending registrations"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:43
-#: src/Module/Moderation/Users/Index.php:43
+#: src/Module/Moderation/Users/Active.php:29
+#: src/Module/Moderation/Users/Index.php:29
 #, php-format
 msgid "%s user blocked"
 msgid_plural "%s users blocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Users/Active.php:51
-#: src/Module/Moderation/Users/Active.php:85
-#: src/Module/Moderation/Users/Blocked.php:51
-#: src/Module/Moderation/Users/Blocked.php:85
-#: src/Module/Moderation/Users/Index.php:58
-#: src/Module/Moderation/Users/Index.php:92
+#: src/Module/Moderation/Users/Active.php:37
+#: src/Module/Moderation/Users/Active.php:71
+#: src/Module/Moderation/Users/Blocked.php:37
+#: src/Module/Moderation/Users/Blocked.php:71
+#: src/Module/Moderation/Users/Index.php:44
+#: src/Module/Moderation/Users/Index.php:78
 msgid "You can't remove yourself"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:55
-#: src/Module/Moderation/Users/Blocked.php:55
-#: src/Module/Moderation/Users/Index.php:62
+#: src/Module/Moderation/Users/Active.php:41
+#: src/Module/Moderation/Users/Blocked.php:41
+#: src/Module/Moderation/Users/Index.php:48
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Users/Active.php:83
-#: src/Module/Moderation/Users/Blocked.php:83
-#: src/Module/Moderation/Users/Index.php:90
+#: src/Module/Moderation/Users/Active.php:69
+#: src/Module/Moderation/Users/Blocked.php:69
+#: src/Module/Moderation/Users/Index.php:76
 #, php-format
 msgid "User \"%s\" deleted"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:93
-#: src/Module/Moderation/Users/Index.php:100
+#: src/Module/Moderation/Users/Active.php:79
+#: src/Module/Moderation/Users/Index.php:86
 #, php-format
 msgid "User \"%s\" blocked"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
 msgid "Register date"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
 msgid "Last login"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:126
-#: src/Module/Moderation/Users/Blocked.php:126
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:140
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Active.php:112
+#: src/Module/Moderation/Users/Blocked.php:112
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:126
+#: src/Module/Moderation/Users/Index.php:146
 msgid "Last public item"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Active.php:120
 msgid "Active Accounts"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:138
-#: src/Module/Moderation/Users/Blocked.php:137
-#: src/Module/Moderation/Users/Index.php:153
+#: src/Module/Moderation/Users/Active.php:124
+#: src/Module/Moderation/Users/Blocked.php:123
+#: src/Module/Moderation/Users/Index.php:139
 msgid "User blocked"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:139
-#: src/Module/Moderation/Users/Blocked.php:139
-#: src/Module/Moderation/Users/Index.php:155
+#: src/Module/Moderation/Users/Active.php:125
+#: src/Module/Moderation/Users/Blocked.php:125
+#: src/Module/Moderation/Users/Index.php:141
 msgid "Site admin"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:140
-#: src/Module/Moderation/Users/Blocked.php:140
-#: src/Module/Moderation/Users/Index.php:156
+#: src/Module/Moderation/Users/Active.php:126
+#: src/Module/Moderation/Users/Blocked.php:126
+#: src/Module/Moderation/Users/Index.php:142
 msgid "Account expired"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:141
-#: src/Module/Moderation/Users/Index.php:159
+#: src/Module/Moderation/Users/Active.php:127
+#: src/Module/Moderation/Users/Index.php:145
 msgid "Create a new user"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:147
-#: src/Module/Moderation/Users/Blocked.php:146
-#: src/Module/Moderation/Users/Index.php:165
+#: src/Module/Moderation/Users/Active.php:133
+#: src/Module/Moderation/Users/Blocked.php:132
+#: src/Module/Moderation/Users/Index.php:151
 msgid "Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: src/Module/Moderation/Users/Active.php:148
-#: src/Module/Moderation/Users/Blocked.php:147
-#: src/Module/Moderation/Users/Index.php:166
+#: src/Module/Moderation/Users/Active.php:134
+#: src/Module/Moderation/Users/Blocked.php:133
+#: src/Module/Moderation/Users/Index.php:152
 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 ""
 
-#: src/Module/Moderation/Users/Blocked.php:43
-#: src/Module/Moderation/Users/Index.php:50
+#: src/Module/Moderation/Users/Blocked.php:29
+#: src/Module/Moderation/Users/Index.php:36
 #, php-format
 msgid "%s user unblocked"
 msgid_plural "%s users unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Users/Blocked.php:92
-#: src/Module/Moderation/Users/Index.php:106
+#: src/Module/Moderation/Users/Blocked.php:78
+#: src/Module/Moderation/Users/Index.php:92
 #, php-format
 msgid "User \"%s\" unblocked"
 msgstr ""
 
-#: src/Module/Moderation/Users/Blocked.php:134
+#: src/Module/Moderation/Users/Blocked.php:120
 msgid "Blocked Users"
 msgstr ""
 
-#: src/Module/Moderation/Users/Create.php:62
+#: src/Module/Moderation/Users/Create.php:48
 msgid "New User"
 msgstr ""
 
-#: src/Module/Moderation/Users/Create.php:63
+#: src/Module/Moderation/Users/Create.php:49
 msgid "Add User"
 msgstr ""
 
-#: src/Module/Moderation/Users/Create.php:70
+#: src/Module/Moderation/Users/Create.php:56
 msgid "Name of the new user."
 msgstr ""
 
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
 msgid "Nickname"
 msgstr ""
 
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:57
 msgid "Nickname of the new user."
 msgstr ""
 
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:58
 msgid "Email address of the new user."
 msgstr ""
 
-#: src/Module/Moderation/Users/Deleted.php:81
+#: src/Module/Moderation/Users/Deleted.php:67
 msgid "Users awaiting permanent deletion"
 msgstr ""
 
-#: src/Module/Moderation/Users/Deleted.php:83
-#: src/Module/Moderation/Users/Index.php:160
+#: src/Module/Moderation/Users/Deleted.php:69
+#: src/Module/Moderation/Users/Index.php:146
 msgid "Permanent deletion"
 msgstr ""
 
-#: src/Module/Moderation/Users/Index.php:150
+#: src/Module/Moderation/Users/Index.php:136
 msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:44
+#: src/Module/Moderation/Users/Pending.php:30
 #, php-format
 msgid "%s user approved"
 msgid_plural "%s users approved"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Users/Pending.php:51
+#: src/Module/Moderation/Users/Pending.php:37
 #, php-format
 msgid "%s registration revoked"
 msgid_plural "%s registrations revoked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Moderation/Users/Pending.php:76
+#: src/Module/Moderation/Users/Pending.php:62
 msgid "Account approved."
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:82
+#: src/Module/Moderation/Users/Pending.php:68
 msgid "Registration revoked"
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:97
+#: src/Module/Moderation/Users/Pending.php:83
 msgid "User registrations awaiting review"
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:99
+#: src/Module/Moderation/Users/Pending.php:85
 msgid "Request date"
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:100
+#: src/Module/Moderation/Users/Pending.php:86
 msgid "No registrations."
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:101
+#: src/Module/Moderation/Users/Pending.php:87
 msgid "Note from the user"
 msgstr ""
 
-#: src/Module/Moderation/Users/Pending.php:103
+#: src/Module/Moderation/Users/Pending.php:89
 msgid "Deny"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
 msgid "Show Ignored Requests"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:105
+#: src/Module/Notifications/Introductions.php:91
 msgid "Hide Ignored Requests"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:121
-#: src/Module/Notifications/Introductions.php:184
+#: src/Module/Notifications/Introductions.php:107
+#: src/Module/Notifications/Introductions.php:170
 msgid "Notification type:"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:124
+#: src/Module/Notifications/Introductions.php:110
 msgid "Suggested by:"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:149
+#: src/Module/Notifications/Introductions.php:135
 msgid "Claims to be known to you: "
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:158
+#: src/Module/Notifications/Introductions.php:144
 msgid "Shall your connection be bidirectional or not?"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:159
+#: src/Module/Notifications/Introductions.php:145
 #, php-format
 msgid "Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:160
+#: src/Module/Notifications/Introductions.php:146
 #, php-format
 msgid "Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:162
+#: src/Module/Notifications/Introductions.php:148
 msgid "Friend"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:163
+#: src/Module/Notifications/Introductions.php:149
 msgid "Subscriber"
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:222
+#: src/Module/Notifications/Introductions.php:208
 msgid "No introductions."
 msgstr ""
 
-#: src/Module/Notifications/Introductions.php:223
-#: src/Module/Notifications/Notifications.php:141
+#: src/Module/Notifications/Introductions.php:209
+#: src/Module/Notifications/Notifications.php:127
 #, php-format
 msgid "No more %s notifications."
 msgstr ""
 
-#: src/Module/Notifications/Notification.php:135
+#: src/Module/Notifications/Notification.php:121
 msgid "You must be logged in to show this page."
 msgstr ""
 
-#: src/Module/Notifications/Notifications.php:66
+#: src/Module/Notifications/Notifications.php:52
 msgid "Network Notifications"
 msgstr ""
 
-#: src/Module/Notifications/Notifications.php:72
+#: src/Module/Notifications/Notifications.php:58
 msgid "System Notifications"
 msgstr ""
 
-#: src/Module/Notifications/Notifications.php:78
+#: src/Module/Notifications/Notifications.php:64
 msgid "Personal Notifications"
 msgstr ""
 
-#: src/Module/Notifications/Notifications.php:84
+#: src/Module/Notifications/Notifications.php:70
 msgid "Home Notifications"
 msgstr ""
 
-#: src/Module/Notifications/Notifications.php:146
+#: src/Module/Notifications/Notifications.php:132
 msgid "Show unread"
 msgstr ""
 
-#: src/Module/Notifications/Ping.php:220
+#: src/Module/Notifications/Ping.php:206
 msgid "{0} requested registration"
 msgstr ""
 
-#: src/Module/Notifications/Ping.php:229
+#: src/Module/Notifications/Ping.php:215
 #, php-format
 msgid "{0} and %d others requested registration"
 msgstr ""
 
-#: src/Module/OAuth/Acknowledge.php:51
+#: src/Module/OAuth/Acknowledge.php:37
 msgid "Authorize application connection"
 msgstr ""
 
-#: src/Module/OAuth/Acknowledge.php:53
+#: src/Module/OAuth/Acknowledge.php:39
 msgid "Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"
 msgstr ""
 
-#: src/Module/OAuth/Authorize.php:54
+#: src/Module/OAuth/Authorize.php:40
 msgid "Unsupported or missing response type"
 msgstr ""
 
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75
+#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
 msgid "Incomplete request data"
 msgstr ""
 
-#: src/Module/OAuth/Authorize.php:106
+#: src/Module/OAuth/Authorize.php:92
 #, php-format
 msgid "Please copy the following authentication code into your application and close this window: %s"
 msgstr ""
 
-#: src/Module/OAuth/Token.php:80
+#: src/Module/OAuth/Token.php:66
 msgid "Invalid data or unknown client"
 msgstr ""
 
-#: src/Module/OAuth/Token.php:105
+#: src/Module/OAuth/Token.php:91
 msgid "Unsupported or missing grant type"
 msgstr ""
 
-#: src/Module/OStatus/Repair.php:83
+#: src/Module/OStatus/Repair.php:69
 msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160
+#: src/Module/OStatus/Repair.php:70 src/Module/OStatus/Subscribe.php:146
 msgid "Keep this window open until done."
 msgstr ""
 
-#: src/Module/OStatus/Repair.php:85
+#: src/Module/OStatus/Repair.php:71
 msgid "✔ Done"
 msgstr ""
 
-#: src/Module/OStatus/Repair.php:86
+#: src/Module/OStatus/Repair.php:72
 msgid "No OStatus contacts to resubscribe to."
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:72
+#: src/Module/OStatus/Subscribe.php:58
 msgid "Subscribing to contacts"
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:81
+#: src/Module/OStatus/Subscribe.php:67
 msgid "No contact provided."
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:87
+#: src/Module/OStatus/Subscribe.php:73
 msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:98
+#: src/Module/OStatus/Subscribe.php:84
 msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115
+#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101
 msgid "Couldn't fetch following contacts."
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:110
+#: src/Module/OStatus/Subscribe.php:96
 msgid "Couldn't fetch remote profile."
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:120
+#: src/Module/OStatus/Subscribe.php:106
 msgid "Unsupported network"
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:136
+#: src/Module/OStatus/Subscribe.php:122
 msgid "Done"
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:150
+#: src/Module/OStatus/Subscribe.php:136
 msgid "success"
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:152
+#: src/Module/OStatus/Subscribe.php:138
 msgid "failed"
 msgstr ""
 
-#: src/Module/OStatus/Subscribe.php:155
+#: src/Module/OStatus/Subscribe.php:141
 msgid "ignored"
 msgstr ""
 
-#: src/Module/Photo.php:122
+#: src/Module/Photo.php:108
 msgid "The Photo is not available."
 msgstr ""
 
-#: src/Module/Photo.php:147
+#: src/Module/Photo.php:133
 #, php-format
 msgid "The Photo with id %s is not available."
 msgstr ""
 
-#: src/Module/Photo.php:188
+#: src/Module/Photo.php:174
 #, php-format
 msgid "Invalid external resource with url %s."
 msgstr ""
 
-#: src/Module/Photo.php:190
+#: src/Module/Photo.php:176
 #, php-format
 msgid "Invalid photo with id %s."
 msgstr ""
 
-#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96
+#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
 msgid "Post not found."
 msgstr ""
 
-#: src/Module/Post/Edit.php:102
+#: src/Module/Post/Edit.php:88
 msgid "Edit post"
 msgstr ""
 
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:122
 msgid "web link"
 msgstr ""
 
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:123
 msgid "Insert video link"
 msgstr ""
 
-#: src/Module/Post/Edit.php:138
+#: src/Module/Post/Edit.php:124
 msgid "video link"
 msgstr ""
 
-#: src/Module/Post/Edit.php:139
+#: src/Module/Post/Edit.php:125
 msgid "Insert audio link"
 msgstr ""
 
-#: src/Module/Post/Edit.php:140
+#: src/Module/Post/Edit.php:126
 msgid "audio link"
 msgstr ""
 
-#: src/Module/Post/Tag/Remove.php:106
+#: src/Module/Post/Tag/Remove.php:92
 msgid "Remove Item Tag"
 msgstr ""
 
-#: src/Module/Post/Tag/Remove.php:107
+#: src/Module/Post/Tag/Remove.php:93
 msgid "Select a tag to remove: "
 msgstr ""
 
-#: src/Module/Post/Tag/Remove.php:108
-#: src/Module/Settings/TwoFactor/Trusted.php:147
+#: src/Module/Post/Tag/Remove.php:94
+#: src/Module/Settings/TwoFactor/Trusted.php:133
 msgid "Remove"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:71
+#: src/Module/Privacy/PermissionTooltip.php:57
 #, php-format
 msgid "Wrong type \"%s\", expected one of: %s"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:101
+#: src/Module/Privacy/PermissionTooltip.php:87
 msgid "Model not found"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:118
+#: src/Module/Privacy/PermissionTooltip.php:104
 msgid "Unlisted"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:124
+#: src/Module/Privacy/PermissionTooltip.php:110
 msgid "Remote privacy information not available."
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:131
+#: src/Module/Privacy/PermissionTooltip.php:117
 msgid "Visible to:"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:133
+#: src/Module/Privacy/PermissionTooltip.php:119
 msgid "CC:"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:134
+#: src/Module/Privacy/PermissionTooltip.php:120
 msgid "BCC:"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:135
+#: src/Module/Privacy/PermissionTooltip.php:121
 msgid "Audience:"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:136
+#: src/Module/Privacy/PermissionTooltip.php:122
 msgid "Attributed To:"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:234
+#: src/Module/Privacy/PermissionTooltip.php:220
 #, php-format
 msgid "Collection (%s)"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:238
+#: src/Module/Privacy/PermissionTooltip.php:224
 #, php-format
 msgid "Followers (%s)"
 msgstr ""
 
-#: src/Module/Privacy/PermissionTooltip.php:255
+#: src/Module/Privacy/PermissionTooltip.php:241
 #, php-format
 msgid "%d more"
 msgstr ""
 
-#: src/Module/Profile/Contacts.php:159
+#: src/Module/Profile/Contacts.php:145
 msgid "No contacts."
 msgstr ""
 
-#: src/Module/Profile/Conversations.php:106
-#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353
-#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114
-#: src/Protocol/OStatus.php:1011
+#: src/Module/Profile/Conversations.php:92
+#: src/Module/Profile/Conversations.php:95 src/Module/Profile/Profile.php:339
+#: src/Module/Profile/Profile.php:342 src/Protocol/Feed.php:1100
+#: src/Protocol/OStatus.php:997
 #, php-format
 msgid "%s's timeline"
 msgstr ""
 
-#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354
-#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016
+#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
+#: src/Protocol/Feed.php:1104 src/Protocol/OStatus.php:1002
 #, php-format
 msgid "%s's posts"
 msgstr ""
 
-#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355
-#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020
+#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
+#: src/Protocol/Feed.php:1107 src/Protocol/OStatus.php:1006
 #, php-format
 msgid "%s's comments"
 msgstr ""
 
-#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167
-#: src/Module/Profile/Photos.php:192
-#: src/Module/Settings/Profile/Photo/Index.php:58
+#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
+#: src/Module/Profile/Photos.php:178
+#: src/Module/Settings/Profile/Photo/Index.php:44
 #, php-format
 msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: src/Module/Profile/Photos.php:170
+#: src/Module/Profile/Photos.php:156
 msgid "Image upload didn't complete, please try again"
 msgstr ""
 
-#: src/Module/Profile/Photos.php:173
+#: src/Module/Profile/Photos.php:159
 msgid "Image file is missing"
 msgstr ""
 
-#: src/Module/Profile/Photos.php:178
+#: src/Module/Profile/Photos.php:164
 msgid "Server can't accept new file upload at this time, please contact your administrator"
 msgstr ""
 
-#: src/Module/Profile/Photos.php:200
+#: src/Module/Profile/Photos.php:186
 msgid "Image file is empty."
 msgstr ""
 
-#: src/Module/Profile/Photos.php:352
+#: src/Module/Profile/Photos.php:338
 msgid "View Album"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50
+#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
 msgid "Profile not found."
 msgstr ""
 
-#: src/Module/Profile/Profile.php:160
+#: src/Module/Profile/Profile.php:146
 #, php-format
 msgid "You're currently viewing your profile as <b>%s</b> <a href=\"%s\" class=\"btn btn-sm pull-right\">Cancel</a>"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:169
+#: src/Module/Profile/Profile.php:155
 msgid "Full Name:"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:174
+#: src/Module/Profile/Profile.php:160
 msgid "Member since:"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:180
+#: src/Module/Profile/Profile.php:166
 msgid "j F, Y"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:181
+#: src/Module/Profile/Profile.php:167
 msgid "j F"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168
+#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
 msgid "Birthday:"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:192 src/Module/Settings/Profile/Index.php:296
-#: src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178 src/Module/Settings/Profile/Index.php:282
+#: src/Util/Temporal.php:156
 msgid "Age: "
 msgstr ""
 
-#: src/Module/Profile/Profile.php:192 src/Module/Settings/Profile/Index.php:296
-#: src/Util/Temporal.php:170
+#: src/Module/Profile/Profile.php:178 src/Module/Settings/Profile/Index.php:282
+#: src/Util/Temporal.php:156
 #, php-format
 msgid "%d year old"
 msgid_plural "%d years old"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/Profile/Profile.php:197 src/Module/Settings/Profile/Index.php:289
+#: src/Module/Profile/Profile.php:183 src/Module/Settings/Profile/Index.php:275
 msgid "Description:"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:263
+#: src/Module/Profile/Profile.php:249
 msgid "Groups:"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:275
+#: src/Module/Profile/Profile.php:261
 msgid "View profile as:"
 msgstr ""
 
-#: src/Module/Profile/Profile.php:292
+#: src/Module/Profile/Profile.php:278
 msgid "View as"
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:82
+#: src/Module/Profile/RemoteFollow.php:68
 msgid "Profile unavailable."
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:88
+#: src/Module/Profile/RemoteFollow.php:74
 msgid "Invalid locator"
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:95
+#: src/Module/Profile/RemoteFollow.php:81
 msgid "The provided profile link doesn't seem to be valid"
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:100
+#: src/Module/Profile/RemoteFollow.php:86
 msgid "Remote subscription can't be done for your network. Please subscribe directly on your system."
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:128
+#: src/Module/Profile/RemoteFollow.php:114
 msgid "Friend/Connection Request"
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:129
+#: src/Module/Profile/RemoteFollow.php:115
 #, php-format
 msgid "Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to <strong>%s</strong> or <strong>%s</strong> directly on your system."
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:130
+#: src/Module/Profile/RemoteFollow.php:116
 #, 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 node and join us today</a>."
 msgstr ""
 
-#: src/Module/Profile/RemoteFollow.php:131
+#: src/Module/Profile/RemoteFollow.php:117
 msgid "Your Webfinger address or profile URL:"
 msgstr ""
 
-#: src/Module/Profile/Restricted.php:59
+#: src/Module/Profile/Restricted.php:45
 msgid "Restricted profile"
 msgstr ""
 
-#: src/Module/Profile/Restricted.php:60
+#: src/Module/Profile/Restricted.php:46
 msgid "This profile has been restricted which prevents access to their public content from anonymous visitors."
 msgstr ""
 
-#: src/Module/Profile/Schedule.php:83
+#: src/Module/Profile/Schedule.php:69
 msgid "Scheduled"
 msgstr ""
 
-#: src/Module/Profile/Schedule.php:84
+#: src/Module/Profile/Schedule.php:70
 msgid "Content"
 msgstr ""
 
-#: src/Module/Profile/Schedule.php:85
+#: src/Module/Profile/Schedule.php:71
 msgid "Remove post"
 msgstr ""
 
-#: src/Module/Register.php:91
+#: src/Module/Register.php:77
 msgid "Only parent users can create additional accounts."
 msgstr ""
 
-#: src/Module/Register.php:106 src/Module/User/Import.php:112
+#: src/Module/Register.php:92 src/Module/User/Import.php:98
 msgid "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
 msgstr ""
 
-#: src/Module/Register.php:123
+#: src/Module/Register.php:109
 msgid "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."
 msgstr ""
 
-#: src/Module/Register.php:124
+#: src/Module/Register.php:110
 msgid "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
 msgstr ""
 
-#: src/Module/Register.php:125
+#: src/Module/Register.php:111
 msgid "Your OpenID (optional): "
 msgstr ""
 
-#: src/Module/Register.php:134
+#: src/Module/Register.php:120
 msgid "Include your profile in member directory?"
 msgstr ""
 
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
 msgid "Note for the admin"
 msgstr ""
 
-#: src/Module/Register.php:155
+#: src/Module/Register.php:141
 msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: src/Module/Register.php:156
+#: src/Module/Register.php:142
 msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: src/Module/Register.php:157
+#: src/Module/Register.php:143
 msgid "Your invitation code: "
 msgstr ""
 
-#: src/Module/Register.php:165
+#: src/Module/Register.php:151
 msgid "Your Display Name (as you would like it to be displayed on this system"
 msgstr ""
 
-#: src/Module/Register.php:166
+#: src/Module/Register.php:152
 msgid "Your Email Address: (Initial information will be send there, so this has to be an existing address.)"
 msgstr ""
 
-#: src/Module/Register.php:167
+#: src/Module/Register.php:153
 msgid "Please repeat your e-mail address:"
 msgstr ""
 
-#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:569
+#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:555
 msgid "New Password:"
 msgstr ""
 
-#: src/Module/Register.php:169
+#: src/Module/Register.php:155
 msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:570
+#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
+#: src/Module/Settings/Account.php:556
 msgid "Confirm:"
 msgstr ""
 
-#: src/Module/Register.php:171
+#: src/Module/Register.php:157
 #, php-format
 msgid "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"<strong>nickname@%s</strong>\"."
 msgstr ""
 
-#: src/Module/Register.php:172
+#: src/Module/Register.php:158
 msgid "Choose a nickname: "
 msgstr ""
 
-#: src/Module/Register.php:180 src/Module/User/Import.php:118
+#: src/Module/Register.php:166 src/Module/User/Import.php:104
 msgid "Import"
 msgstr ""
 
-#: src/Module/Register.php:181
+#: src/Module/Register.php:167
 msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: src/Module/Register.php:188
+#: src/Module/Register.php:174
 msgid "Note: This node explicitly contains adult content"
 msgstr ""
 
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
 msgid "Parent Password:"
 msgstr ""
 
-#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181
+#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
 msgid "Please enter the password of the parent account to legitimize your request."
 msgstr ""
 
-#: src/Module/Register.php:219
+#: src/Module/Register.php:205
 msgid "Password doesn't match."
 msgstr ""
 
-#: src/Module/Register.php:225
+#: src/Module/Register.php:211
 msgid "Please enter your password."
 msgstr ""
 
-#: src/Module/Register.php:267
+#: src/Module/Register.php:253
 msgid "You have entered too much information."
 msgstr ""
 
-#: src/Module/Register.php:290
+#: src/Module/Register.php:276
 msgid "Please enter the identical mail address in the second field."
 msgstr ""
 
-#: src/Module/Register.php:298
+#: src/Module/Register.php:284
 msgid "Nickname cannot start with a digit."
 msgstr ""
 
-#: src/Module/Register.php:300
+#: src/Module/Register.php:286
 msgid "Nickname can only contain US-ASCII characters."
 msgstr ""
 
-#: src/Module/Register.php:329
+#: src/Module/Register.php:315
 msgid "The additional account was created."
 msgstr ""
 
-#: src/Module/Register.php:354
+#: src/Module/Register.php:340
 msgid "Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: src/Module/Register.php:361
+#: src/Module/Register.php:347
 #, php-format
 msgid "Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
 msgstr ""
 
-#: src/Module/Register.php:367
+#: src/Module/Register.php:353
 msgid "Registration successful."
 msgstr ""
 
-#: src/Module/Register.php:376 src/Module/Register.php:383
-#: src/Module/Register.php:393
+#: src/Module/Register.php:362 src/Module/Register.php:369
+#: src/Module/Register.php:379
 msgid "Your registration can not be processed."
 msgstr ""
 
-#: src/Module/Register.php:382
+#: src/Module/Register.php:368
 msgid "You have to leave a request note for the admin."
 msgstr ""
 
-#: src/Module/Register.php:392
+#: src/Module/Register.php:378
 msgid "An internal error occured."
 msgstr ""
 
-#: src/Module/Register.php:414
+#: src/Module/Register.php:400
 msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: src/Module/Search/Acl.php:78
+#: src/Module/Search/Acl.php:64
 msgid "You must be logged in to use this module."
 msgstr ""
 
-#: src/Module/Search/Index.php:69
+#: src/Module/Search/Index.php:55
 msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: src/Module/Search/Index.php:89
+#: src/Module/Search/Index.php:75
 msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: src/Module/Search/Index.php:205
+#: src/Module/Search/Index.php:191
 #, php-format
 msgid "Items tagged with: %s"
 msgstr ""
 
-#: src/Module/Search/Saved.php:63
+#: src/Module/Search/Saved.php:49
 msgid "Search term was not saved."
 msgstr ""
 
-#: src/Module/Search/Saved.php:66
+#: src/Module/Search/Saved.php:52
 msgid "Search term already saved."
 msgstr ""
 
-#: src/Module/Search/Saved.php:72
+#: src/Module/Search/Saved.php:58
 msgid "Search term was not removed."
 msgstr ""
 
-#: src/Module/Security/Login.php:127
+#: src/Module/Security/Login.php:113
 msgid "Create a New Account"
 msgstr ""
 
-#: src/Module/Security/Login.php:146
+#: src/Module/Security/Login.php:132
 msgid "Your OpenID: "
 msgstr ""
 
-#: src/Module/Security/Login.php:149
+#: src/Module/Security/Login.php:135
 msgid "Please enter your username and password to add the OpenID to your existing account."
 msgstr ""
 
-#: src/Module/Security/Login.php:151
+#: src/Module/Security/Login.php:137
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: src/Module/Security/Login.php:165
+#: src/Module/Security/Login.php:151
 msgid "Password: "
 msgstr ""
 
-#: src/Module/Security/Login.php:166
+#: src/Module/Security/Login.php:152
 msgid "Remember me"
 msgstr ""
 
-#: src/Module/Security/Login.php:175
+#: src/Module/Security/Login.php:161
 msgid "Forgot your password?"
 msgstr ""
 
-#: src/Module/Security/Login.php:178
+#: src/Module/Security/Login.php:164
 msgid "Website Terms of Service"
 msgstr ""
 
-#: src/Module/Security/Login.php:179
+#: src/Module/Security/Login.php:165
 msgid "terms of service"
 msgstr ""
 
-#: src/Module/Security/Login.php:181
+#: src/Module/Security/Login.php:167
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: src/Module/Security/Login.php:182
+#: src/Module/Security/Login.php:168
 msgid "privacy policy"
 msgstr ""
 
-#: src/Module/Security/Logout.php:89
-#: src/Module/Security/TwoFactor/SignOut.php:78
-#: src/Module/Security/TwoFactor/SignOut.php:86
-#: src/Module/Security/TwoFactor/SignOut.php:108
-#: src/Module/Security/TwoFactor/SignOut.php:115
+#: src/Module/Security/Logout.php:75
+#: src/Module/Security/TwoFactor/SignOut.php:64
+#: src/Module/Security/TwoFactor/SignOut.php:72
+#: src/Module/Security/TwoFactor/SignOut.php:94
+#: src/Module/Security/TwoFactor/SignOut.php:101
 msgid "Logged out."
 msgstr ""
 
-#: src/Module/Security/OpenID.php:54
+#: src/Module/Security/OpenID.php:40
 msgid "OpenID protocol error. No ID returned"
 msgstr ""
 
-#: src/Module/Security/OpenID.php:90
+#: src/Module/Security/OpenID.php:76
 msgid "Account not found. Please login to your existing account to add the OpenID to it."
 msgstr ""
 
-#: src/Module/Security/OpenID.php:92
+#: src/Module/Security/OpenID.php:78
 msgid "Account not found. Please register a new account or login to your existing account to add the OpenID to it."
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:57
-#: src/Module/Settings/Account.php:67
+#: src/Module/Security/PasswordTooLong.php:43
+#: src/Module/Settings/Account.php:53
 msgid "Passwords do not match."
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:64
+#: src/Module/Security/PasswordTooLong.php:50
 msgid "Password does not need changing."
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:77
-#: src/Module/Settings/Account.php:81
+#: src/Module/Security/PasswordTooLong.php:63
+#: src/Module/Settings/Account.php:67
 msgid "Password unchanged."
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:91
+#: src/Module/Security/PasswordTooLong.php:77
 msgid "Password Too Long"
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:92
+#: src/Module/Security/PasswordTooLong.php:78
 msgid "Since version 2022.09, we've realized that any password longer than 72 characters is truncated during hashing. To prevent any confusion about this behavior, please update your password to be fewer or equal to 72 characters."
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:93
+#: src/Module/Security/PasswordTooLong.php:79
 msgid "Update Password"
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:571
+#: src/Module/Security/PasswordTooLong.php:85
+#: src/Module/Settings/Account.php:557
 msgid "Current Password:"
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:571
+#: src/Module/Security/PasswordTooLong.php:85
+#: src/Module/Settings/Account.php:557
 msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:555
+#: src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:541
 msgid "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters."
 msgstr ""
 
-#: src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:556
+#: src/Module/Security/PasswordTooLong.php:86
+#: src/Module/Settings/Account.php:542
 msgid "Password length is limited to 72 characters."
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:74
+#: src/Module/Security/TwoFactor/Recovery.php:60
 #, php-format
 msgid "Remaining recovery codes: %d"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:80
-#: src/Module/Security/TwoFactor/Verify.php:77
-#: src/Module/Settings/TwoFactor/Verify.php:98
+#: src/Module/Security/TwoFactor/Recovery.php:66
+#: src/Module/Security/TwoFactor/Verify.php:63
+#: src/Module/Settings/TwoFactor/Verify.php:84
 msgid "Invalid code, please retry."
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:99
+#: src/Module/Security/TwoFactor/Recovery.php:85
 msgid "Two-factor recovery"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:100
+#: src/Module/Security/TwoFactor/Recovery.php:86
 msgid "<p>You can enter one of your one-time recovery codes in case you lost access to your mobile device.</p>"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:101
+#: src/Module/Security/TwoFactor/Recovery.php:87
 #, php-format
 msgid "Don’t have your phone? <a href=\"%s\">Enter a two-factor recovery code</a>"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:102
+#: src/Module/Security/TwoFactor/Recovery.php:88
 msgid "Please enter a recovery code"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Recovery.php:103
+#: src/Module/Security/TwoFactor/Recovery.php:89
 msgid "Submit recovery code and complete login"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/SignOut.php:122
+#: src/Module/Security/TwoFactor/SignOut.php:108
 msgid "Sign out of this browser?"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/SignOut.php:123
+#: src/Module/Security/TwoFactor/SignOut.php:109
 msgid "<p>If you trust this browser, you will not be asked for verification code the next time you sign in.</p>"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/SignOut.php:124
+#: src/Module/Security/TwoFactor/SignOut.php:110
 msgid "Sign out"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/SignOut.php:126
+#: src/Module/Security/TwoFactor/SignOut.php:112
 msgid "Trust and sign out"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Trust.php:96
+#: src/Module/Security/TwoFactor/Trust.php:82
 msgid "Couldn't save browser to Cookie."
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Trust.php:141
+#: src/Module/Security/TwoFactor/Trust.php:127
 msgid "Trust this browser?"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Trust.php:142
+#: src/Module/Security/TwoFactor/Trust.php:128
 msgid "<p>If you choose to trust this browser, you will not be asked for a verification code the next time you sign in.</p>"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Trust.php:143
+#: src/Module/Security/TwoFactor/Trust.php:129
 msgid "Not now"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Trust.php:144
+#: src/Module/Security/TwoFactor/Trust.php:130
 msgid "Don't trust"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Trust.php:145
+#: src/Module/Security/TwoFactor/Trust.php:131
 msgid "Trust"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Verify.php:97
+#: src/Module/Security/TwoFactor/Verify.php:83
 msgid "<p>Open the two-factor authentication app on your device to get an authentication code and verify your identity.</p>"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Verify.php:100
+#: src/Module/Security/TwoFactor/Verify.php:86
 #, php-format
 msgid "If you do not have access to your authentication code you can use a <a href=\"%s\">two-factor recovery code</a>."
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Verify.php:101
-#: src/Module/Settings/TwoFactor/Verify.php:158
+#: src/Module/Security/TwoFactor/Verify.php:87
+#: src/Module/Settings/TwoFactor/Verify.php:144
 msgid "Please enter a code from your authentication app"
 msgstr ""
 
-#: src/Module/Security/TwoFactor/Verify.php:102
+#: src/Module/Security/TwoFactor/Verify.php:88
 msgid "Verify code and complete login"
 msgstr ""
 
-#: src/Module/Settings/Account.php:96
+#: src/Module/Settings/Account.php:82
 msgid "Please use a shorter name."
 msgstr ""
 
-#: src/Module/Settings/Account.php:99
+#: src/Module/Settings/Account.php:85
 msgid "Name too short."
 msgstr ""
 
-#: src/Module/Settings/Account.php:108
+#: src/Module/Settings/Account.php:94
 msgid "Wrong Password."
 msgstr ""
 
-#: src/Module/Settings/Account.php:113
+#: src/Module/Settings/Account.php:99
 msgid "Invalid email."
 msgstr ""
 
-#: src/Module/Settings/Account.php:117
+#: src/Module/Settings/Account.php:103
 msgid "Cannot change to that email."
 msgstr ""
 
-#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195
-#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300
-#: src/Module/Settings/Account.php:329
+#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181
+#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286
+#: src/Module/Settings/Account.php:315
 msgid "Settings were not updated."
 msgstr ""
 
-#: src/Module/Settings/Account.php:347
+#: src/Module/Settings/Account.php:333
 msgid "Contact CSV file upload error"
 msgstr ""
 
-#: src/Module/Settings/Account.php:366
+#: src/Module/Settings/Account.php:352
 msgid "Importing Contacts done"
 msgstr ""
 
-#: src/Module/Settings/Account.php:379
+#: src/Module/Settings/Account.php:365
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:396
+#: src/Module/Settings/Account.php:382
 msgid "Unable to find your profile. Please contact your admin."
 msgstr ""
 
-#: src/Module/Settings/Account.php:438
+#: src/Module/Settings/Account.php:424
 msgid "Account for a service that automatically shares content based on user defined channels."
 msgstr ""
 
-#: src/Module/Settings/Account.php:448
+#: src/Module/Settings/Account.php:434
 msgid "Personal Page Subtypes"
 msgstr ""
 
-#: src/Module/Settings/Account.php:449
+#: src/Module/Settings/Account.php:435
 msgid "Community Group Subtypes"
 msgstr ""
 
-#: src/Module/Settings/Account.php:460
+#: src/Module/Settings/Account.php:446
 msgid "Account for a personal profile."
 msgstr ""
 
-#: src/Module/Settings/Account.php:467
+#: src/Module/Settings/Account.php:453
 msgid "Account for an organisation that automatically approves contact requests as \"Followers\"."
 msgstr ""
 
-#: src/Module/Settings/Account.php:474
+#: src/Module/Settings/Account.php:460
 msgid "Account for a news reflector that automatically approves contact requests as \"Followers\"."
 msgstr ""
 
-#: src/Module/Settings/Account.php:481
+#: src/Module/Settings/Account.php:467
 msgid "Account for community discussions."
 msgstr ""
 
-#: src/Module/Settings/Account.php:489
+#: src/Module/Settings/Account.php:475
 msgid "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."
 msgstr ""
 
-#: src/Module/Settings/Account.php:496
+#: src/Module/Settings/Account.php:482
 msgid "Account for a public profile that automatically approves contact requests as \"Followers\"."
 msgstr ""
 
-#: src/Module/Settings/Account.php:503
+#: src/Module/Settings/Account.php:489
 msgid "Automatically approves all contact requests."
 msgstr ""
 
-#: src/Module/Settings/Account.php:510
+#: src/Module/Settings/Account.php:496
 msgid "Contact requests have to be manually approved."
 msgstr ""
 
-#: src/Module/Settings/Account.php:517
+#: src/Module/Settings/Account.php:503
 msgid "Account for a popular profile that automatically approves contact requests as \"Friends\"."
 msgstr ""
 
-#: src/Module/Settings/Account.php:522
+#: src/Module/Settings/Account.php:508
 msgid "Private Group [Experimental]"
 msgstr ""
 
-#: src/Module/Settings/Account.php:524
+#: src/Module/Settings/Account.php:510
 msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: src/Module/Settings/Account.php:533
+#: src/Module/Settings/Account.php:519
 msgid "OpenID:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:533
+#: src/Module/Settings/Account.php:519
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: src/Module/Settings/Account.php:541
+#: src/Module/Settings/Account.php:527
 msgid "Publish your profile in your local site directory?"
 msgstr ""
 
-#: src/Module/Settings/Account.php:541
+#: src/Module/Settings/Account.php:527
 #, php-format
 msgid "Your profile will be published in this node's <a href=\"%s\">local directory</a>. Your profile details may be publicly visible depending on the system settings."
 msgstr ""
 
-#: src/Module/Settings/Account.php:547
+#: src/Module/Settings/Account.php:533
 #, php-format
 msgid "Your profile will also be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>)."
 msgstr ""
 
-#: src/Module/Settings/Account.php:560
+#: src/Module/Settings/Account.php:546
 msgid "Account Settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:561
+#: src/Module/Settings/Account.php:547
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:554
 msgid "Password Settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:570
+#: src/Module/Settings/Account.php:556
 msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:558
 msgid "Password:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:558
 msgid "Your current password to confirm the changes of the email address"
 msgstr ""
 
-#: src/Module/Settings/Account.php:575
+#: src/Module/Settings/Account.php:561
 msgid "Delete OpenID URL"
 msgstr ""
 
-#: src/Module/Settings/Account.php:577
+#: src/Module/Settings/Account.php:563
 msgid "Basic Settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:578
-#: src/Module/Settings/Profile/Index.php:288
+#: src/Module/Settings/Account.php:564
+#: src/Module/Settings/Profile/Index.php:274
 msgid "Display name:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:579
+#: src/Module/Settings/Account.php:565
 msgid "Email Address:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:566
 msgid "Your Timezone:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:581
+#: src/Module/Settings/Account.php:567
 msgid "Your Language:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:581
+#: src/Module/Settings/Account.php:567
 msgid "Set the language we use to show you friendica interface and to send you emails"
 msgstr ""
 
-#: src/Module/Settings/Account.php:582
+#: src/Module/Settings/Account.php:568
 msgid "Default Post Location:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:583
+#: src/Module/Settings/Account.php:569
 msgid "Use Browser Location:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:585
+#: src/Module/Settings/Account.php:571
 msgid "Security and Privacy Settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:587
+#: src/Module/Settings/Account.php:573
 msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:587
+#: src/Module/Settings/Account.php:573
 msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: src/Module/Settings/Account.php:589
+#: src/Module/Settings/Account.php:575
 msgid "Allow your profile to be searchable globally?"
 msgstr ""
 
-#: src/Module/Settings/Account.php:589
+#: src/Module/Settings/Account.php:575
 msgid "Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."
 msgstr ""
 
-#: src/Module/Settings/Account.php:590
+#: src/Module/Settings/Account.php:576
 msgid "Hide your contact/friend list from viewers of your profile?"
 msgstr ""
 
-#: src/Module/Settings/Account.php:590
+#: src/Module/Settings/Account.php:576
 msgid "A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."
 msgstr ""
 
-#: src/Module/Settings/Account.php:591
+#: src/Module/Settings/Account.php:577
 msgid "Hide your public content from anonymous viewers"
 msgstr ""
 
-#: src/Module/Settings/Account.php:591
+#: src/Module/Settings/Account.php:577
 msgid "Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays."
 msgstr ""
 
-#: src/Module/Settings/Account.php:592
+#: src/Module/Settings/Account.php:578
 msgid "Make public posts unlisted"
 msgstr ""
 
-#: src/Module/Settings/Account.php:592
+#: src/Module/Settings/Account.php:578
 msgid "Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."
 msgstr ""
 
-#: src/Module/Settings/Account.php:593
+#: src/Module/Settings/Account.php:579
 msgid "Make all posted pictures accessible"
 msgstr ""
 
-#: src/Module/Settings/Account.php:593
+#: src/Module/Settings/Account.php:579
 msgid "This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."
 msgstr ""
 
-#: src/Module/Settings/Account.php:594
+#: src/Module/Settings/Account.php:580
 msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: src/Module/Settings/Account.php:594
+#: src/Module/Settings/Account.php:580
 msgid "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:595
+#: src/Module/Settings/Account.php:581
 msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: src/Module/Settings/Account.php:595
+#: src/Module/Settings/Account.php:581
 msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: src/Module/Settings/Account.php:596
+#: src/Module/Settings/Account.php:582
 msgid "Default privacy circle for new contacts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:597
+#: src/Module/Settings/Account.php:583
 msgid "Default privacy circle for new group contacts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:598
+#: src/Module/Settings/Account.php:584
 msgid "Default Post Permissions"
 msgstr ""
 
-#: src/Module/Settings/Account.php:602
+#: src/Module/Settings/Account.php:588
 msgid "Expiration settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:603
+#: src/Module/Settings/Account.php:589
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:603
+#: src/Module/Settings/Account.php:589
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:590
 msgid "Expire posts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:590
 msgid "When activated, posts and comments will be expired."
 msgstr ""
 
-#: src/Module/Settings/Account.php:605
+#: src/Module/Settings/Account.php:591
 msgid "Expire personal notes"
 msgstr ""
 
-#: src/Module/Settings/Account.php:605
+#: src/Module/Settings/Account.php:591
 msgid "When activated, the personal notes on your profile page will be expired."
 msgstr ""
 
-#: src/Module/Settings/Account.php:606
+#: src/Module/Settings/Account.php:592
 msgid "Expire starred posts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:606
+#: src/Module/Settings/Account.php:592
 msgid "Starring posts keeps them from being expired. That behaviour is overwritten by this setting."
 msgstr ""
 
-#: src/Module/Settings/Account.php:607
+#: src/Module/Settings/Account.php:593
 msgid "Only expire posts by others"
 msgstr ""
 
-#: src/Module/Settings/Account.php:607
+#: src/Module/Settings/Account.php:593
 msgid "When activated, your own posts never expire. Then the settings above are only valid for posts you received."
 msgstr ""
 
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:596
 msgid "Notification Settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:597
 msgid "Send a notification email when:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:612
+#: src/Module/Settings/Account.php:598
 msgid "You receive an introduction"
 msgstr ""
 
-#: src/Module/Settings/Account.php:613
+#: src/Module/Settings/Account.php:599
 msgid "Your introductions are confirmed"
 msgstr ""
 
-#: src/Module/Settings/Account.php:614
+#: src/Module/Settings/Account.php:600
 msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:601
 msgid "Someone writes a followup comment"
 msgstr ""
 
-#: src/Module/Settings/Account.php:616
+#: src/Module/Settings/Account.php:602
 msgid "You receive a private message"
 msgstr ""
 
-#: src/Module/Settings/Account.php:617
+#: src/Module/Settings/Account.php:603
 msgid "You receive a friend suggestion"
 msgstr ""
 
-#: src/Module/Settings/Account.php:618
+#: src/Module/Settings/Account.php:604
 msgid "You are tagged in a post"
 msgstr ""
 
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:606
 msgid "Create a desktop notification when:"
 msgstr ""
 
-#: src/Module/Settings/Account.php:621
+#: src/Module/Settings/Account.php:607
 msgid "Someone tagged you"
 msgstr ""
 
-#: src/Module/Settings/Account.php:622
+#: src/Module/Settings/Account.php:608
 msgid "Someone directly commented on your post"
 msgstr ""
 
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:609
 msgid "Someone liked your content"
 msgstr ""
 
-#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610
 msgid "Can only be enabled, when the direct comment notification is enabled."
 msgstr ""
 
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:610
 msgid "Someone shared your content"
 msgstr ""
 
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:611
 msgid "Someone commented in your thread"
 msgstr ""
 
-#: src/Module/Settings/Account.php:626
+#: src/Module/Settings/Account.php:612
 msgid "Someone commented in a thread where you commented"
 msgstr ""
 
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:613
 msgid "Someone commented in a thread where you interacted"
 msgstr ""
 
-#: src/Module/Settings/Account.php:629
+#: src/Module/Settings/Account.php:615
 msgid "Activate desktop notifications"
 msgstr ""
 
-#: src/Module/Settings/Account.php:629
+#: src/Module/Settings/Account.php:615
 msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: src/Module/Settings/Account.php:633
+#: src/Module/Settings/Account.php:619
 msgid "Text-only notification emails"
 msgstr ""
 
-#: src/Module/Settings/Account.php:635
+#: src/Module/Settings/Account.php:621
 msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: src/Module/Settings/Account.php:639
+#: src/Module/Settings/Account.php:625
 msgid "Show detailled notifications"
 msgstr ""
 
-#: src/Module/Settings/Account.php:641
+#: src/Module/Settings/Account.php:627
 msgid "Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."
 msgstr ""
 
-#: src/Module/Settings/Account.php:645
+#: src/Module/Settings/Account.php:631
 msgid "Show notifications of ignored contacts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:647
+#: src/Module/Settings/Account.php:633
 msgid "You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not."
 msgstr ""
 
-#: src/Module/Settings/Account.php:650
+#: src/Module/Settings/Account.php:636
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: src/Module/Settings/Account.php:651
+#: src/Module/Settings/Account.php:637
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: src/Module/Settings/Account.php:654
+#: src/Module/Settings/Account.php:640
 msgid "Import Contacts"
 msgstr ""
 
-#: src/Module/Settings/Account.php:655
+#: src/Module/Settings/Account.php:641
 msgid "Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."
 msgstr ""
 
-#: src/Module/Settings/Account.php:656
+#: src/Module/Settings/Account.php:642
 msgid "Upload File"
 msgstr ""
 
-#: src/Module/Settings/Account.php:659
+#: src/Module/Settings/Account.php:645
 msgid "Relocate"
 msgstr ""
 
-#: src/Module/Settings/Account.php:660
+#: src/Module/Settings/Account.php:646
 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 ""
 
-#: src/Module/Settings/Account.php:661
+#: src/Module/Settings/Account.php:647
 msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: src/Module/Settings/Addons.php:86
+#: src/Module/Settings/Addons.php:72
 msgid "Addon Settings"
 msgstr ""
 
-#: src/Module/Settings/Addons.php:87
+#: src/Module/Settings/Addons.php:73
 msgid "No Addon settings configured"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:148
+#: src/Module/Settings/Channels.php:134
 msgid "This page can be used to define the channels that will automatically be reshared by your account."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:153
+#: src/Module/Settings/Channels.php:139
 msgid "This page can be used to define your own channels."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:182
+#: src/Module/Settings/Channels.php:168
 msgid "Publish"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:182
+#: src/Module/Settings/Channels.php:168
 msgid "When selected, the channel results are reshared. This only works for public ActivityPub posts from the public timeline or the user defined circles."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211
-#: src/Module/Settings/Display.php:338
+#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
+#: src/Module/Settings/Display.php:324
 msgid "Label"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212
-#: src/Module/Settings/Display.php:339
-#: src/Module/Settings/TwoFactor/AppSpecific.php:137
+#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198
+#: src/Module/Settings/Display.php:325
+#: src/Module/Settings/TwoFactor/AppSpecific.php:123
 msgid "Description"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213
+#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199
 msgid "Access Key"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214
+#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200
 msgid "Circle/Channel"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215
+#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201
 msgid "Include Tags"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216
+#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202
 msgid "Exclude Tags"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217
+#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203
 msgid "Minimum Size"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218
+#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204
 msgid "Maximum Size"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219
+#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205
 msgid "Full Text Search"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223
+#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209
 msgid "Select all languages that you want to see in this channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:204
+#: src/Module/Settings/Channels.php:190
 msgid "Delete channel"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:204
+#: src/Module/Settings/Channels.php:190
 msgid "Check to delete this entry from the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:211
+#: src/Module/Settings/Channels.php:197
 msgid "Short name for the channel. It is displayed on the channels widget."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:212
+#: src/Module/Settings/Channels.php:198
 msgid "This should describe the content of the channel in a few word."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:213
+#: src/Module/Settings/Channels.php:199
 msgid "When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:214
+#: src/Module/Settings/Channels.php:200
 msgid "Select a circle or channel, that your channel should be based on."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:215
+#: src/Module/Settings/Channels.php:201
 msgid "Comma separated list of tags. A post will be used when it contains any of the listed tags."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:216
+#: src/Module/Settings/Channels.php:202
 msgid "Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:217
+#: src/Module/Settings/Channels.php:203
 msgid "Minimum post size. Leave empty for no minimum size. The size is calculated without links, attached posts, mentions or hashtags."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:218
+#: src/Module/Settings/Channels.php:204
 msgid "Maximum post size. Leave empty for no maximum size. The size is calculated without links, attached posts, mentions or hashtags."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:219
+#: src/Module/Settings/Channels.php:205
 #, php-format
 msgid "Search terms for the body, supports the \"boolean mode\" operators from MariaDB. See the help for a complete list of operators and additional keywords: %s"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:220
+#: src/Module/Settings/Channels.php:206
 msgid "Check to display images in the channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:221
+#: src/Module/Settings/Channels.php:207
 msgid "Check to display videos in the channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:222
+#: src/Module/Settings/Channels.php:208
 msgid "Check to display audio in the channel."
 msgstr ""
 
-#: src/Module/Settings/Channels.php:227
+#: src/Module/Settings/Channels.php:213
 msgid "Add new entry to the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:228
+#: src/Module/Settings/Channels.php:214
 msgid "Add"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:230
+#: src/Module/Settings/Channels.php:216
 msgid "Current Entries in the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:233
+#: src/Module/Settings/Channels.php:219
 msgid "Delete entry from the channel list"
 msgstr ""
 
-#: src/Module/Settings/Channels.php:234
+#: src/Module/Settings/Channels.php:220
 msgid "Delete entry from the channel list?"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:122
+#: src/Module/Settings/Connectors.php:108
 msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:169
-#: src/Module/Settings/Connectors.php:170
+#: src/Module/Settings/Connectors.php:155
+#: src/Module/Settings/Connectors.php:156
 msgid "Diaspora (Socialhome, Hubzilla)"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:169
-#: src/Module/Settings/Connectors.php:173
+#: src/Module/Settings/Connectors.php:155
+#: src/Module/Settings/Connectors.php:159
 #, php-format
 msgid "Built-in support for %s connectivity is enabled"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:170
-#: src/Module/Settings/Connectors.php:172
+#: src/Module/Settings/Connectors.php:156
+#: src/Module/Settings/Connectors.php:158
 #, php-format
 msgid "Built-in support for %s connectivity is disabled"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:172
-#: src/Module/Settings/Connectors.php:173
+#: src/Module/Settings/Connectors.php:158
+#: src/Module/Settings/Connectors.php:159
 msgid "OStatus (GNU Social)"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:185
+#: src/Module/Settings/Connectors.php:171
 msgid "Email access is disabled on this site."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:200
-#: src/Module/Settings/Connectors.php:254
+#: src/Module/Settings/Connectors.php:186
+#: src/Module/Settings/Connectors.php:240
 msgid "None"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:204
+#: src/Module/Settings/Connectors.php:190
 msgid "Default (Mastodon will display the title and a link to the post)"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:205
+#: src/Module/Settings/Connectors.php:191
 msgid "Use the summary (Mastodon and some others will treat it as content warning)"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:206
+#: src/Module/Settings/Connectors.php:192
 msgid "Embed the title in the body"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:218
+#: src/Module/Settings/Connectors.php:204
 msgid "General Social Media Settings"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:221
+#: src/Module/Settings/Connectors.php:207
 msgid "Followed content scope"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:223
+#: src/Module/Settings/Connectors.php:209
 msgid "By default, conversations in which your follows participated but didn't start will be shown in your timeline. You can turn this behavior off, or expand it to the conversations in which your follows liked a post."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:225
+#: src/Module/Settings/Connectors.php:211
 msgid "Only conversations my follows started"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:226
+#: src/Module/Settings/Connectors.php:212
 msgid "Conversations my follows started or commented on (default)"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:227
+#: src/Module/Settings/Connectors.php:213
 msgid "Any conversation my follows interacted with, including likes"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:230
+#: src/Module/Settings/Connectors.php:216
 msgid "Collapse sensitive posts"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:230
+#: src/Module/Settings/Connectors.php:216
 msgid "If a post is marked as \"sensitive\", it will be displayed in a collapsed state, if this option is enabled."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:231
+#: src/Module/Settings/Connectors.php:217
 msgid "Enable intelligent shortening"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:231
+#: src/Module/Settings/Connectors.php:217
 msgid "Normally the system tries to find the best link to add to shortened posts. If disabled, every shortened post will always point to the original friendica post."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:232
+#: src/Module/Settings/Connectors.php:218
 msgid "Enable simple text shortening"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:232
+#: src/Module/Settings/Connectors.php:218
 msgid "Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:233
+#: src/Module/Settings/Connectors.php:219
 msgid "Attach the link title"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:233
+#: src/Module/Settings/Connectors.php:219
 msgid "When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:234
+#: src/Module/Settings/Connectors.php:220
 msgid "API: Use spoiler field as title"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:234
+#: src/Module/Settings/Connectors.php:220
 msgid "When activated, the \"spoiler_text\" field in the API will be used for the title on standalone posts. When deactivated it will be used for spoiler text. For comments it will always be used for spoiler text."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:235
+#: src/Module/Settings/Connectors.php:221
 msgid "API: Automatically links at the end of the post as attached posts"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:235
+#: src/Module/Settings/Connectors.php:221
 msgid "When activated, added links at the end of the post react the same way as added links in the web interface."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:236
+#: src/Module/Settings/Connectors.php:222
 msgid "Article Mode"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:236
+#: src/Module/Settings/Connectors.php:222
 msgid "Controls how posts with titles are transmitted. Mastodon and its forks don't display the content of these posts if the post is created in the correct (default) way."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:237
+#: src/Module/Settings/Connectors.php:223
 msgid "Your legacy ActivityPub/GNU Social account"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:237
+#: src/Module/Settings/Connectors.php:223
 msgid "If you enter your old account name from an ActivityPub based system or your 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 ""
 
-#: src/Module/Settings/Connectors.php:239
+#: src/Module/Settings/Connectors.php:225
 msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:243
+#: src/Module/Settings/Connectors.php:229
 msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:244
+#: src/Module/Settings/Connectors.php:230
 msgid "If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:245
+#: src/Module/Settings/Connectors.php:231
 msgid "Last successful email check:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:247
+#: src/Module/Settings/Connectors.php:233
 msgid "IMAP server name:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:248
+#: src/Module/Settings/Connectors.php:234
 msgid "IMAP port:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:249
+#: src/Module/Settings/Connectors.php:235
 msgid "Security:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:250
+#: src/Module/Settings/Connectors.php:236
 msgid "Email login name:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:251
+#: src/Module/Settings/Connectors.php:237
 msgid "Email password:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:252
+#: src/Module/Settings/Connectors.php:238
 msgid "Reply-to address:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:253
+#: src/Module/Settings/Connectors.php:239
 msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:254
+#: src/Module/Settings/Connectors.php:240
 msgid "Action after import:"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:254
+#: src/Module/Settings/Connectors.php:240
 msgid "Move to folder"
 msgstr ""
 
-#: src/Module/Settings/Connectors.php:255
+#: src/Module/Settings/Connectors.php:241
 msgid "Move to folder:"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:73
+#: src/Module/Settings/Delegation.php:59
 msgid "Delegation successfully granted."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:75
+#: src/Module/Settings/Delegation.php:61
 msgid "Parent user not found, unavailable or password doesn't match."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:79
+#: src/Module/Settings/Delegation.php:65
 msgid "Delegation successfully revoked."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:98 src/Module/Settings/Delegation.php:120
+#: src/Module/Settings/Delegation.php:84 src/Module/Settings/Delegation.php:106
 msgid "Delegated administrators can view but not change delegation permissions."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:112
+#: src/Module/Settings/Delegation.php:98
 msgid "Delegate user not found."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:169
+#: src/Module/Settings/Delegation.php:155
 msgid "No parent user"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:180
-#: src/Module/Settings/Delegation.php:191
+#: src/Module/Settings/Delegation.php:166
+#: src/Module/Settings/Delegation.php:177
 msgid "Parent User"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:188
+#: src/Module/Settings/Delegation.php:174
 msgid "Additional Accounts"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:189
+#: src/Module/Settings/Delegation.php:175
 msgid "Register additional accounts that are automatically connected to your existing account so you can manage them from this account."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:190
+#: src/Module/Settings/Delegation.php:176
 msgid "Register an additional account"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:192
+#: src/Module/Settings/Delegation.php:178
 msgid "Parent users have total control about this account, including the account settings. Please double check whom you give this access."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:195
+#: src/Module/Settings/Delegation.php:181
 msgid "Delegates"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:196
+#: src/Module/Settings/Delegation.php:182
 msgid "Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:197
+#: src/Module/Settings/Delegation.php:183
 msgid "Existing Page Delegates"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:198
+#: src/Module/Settings/Delegation.php:184
 msgid "Potential Delegates"
 msgstr ""
 
-#: src/Module/Settings/Delegation.php:199
+#: src/Module/Settings/Delegation.php:185
 msgid "No entries."
 msgstr ""
 
-#: src/Module/Settings/Display.php:183
+#: src/Module/Settings/Display.php:169
 msgid "The theme you chose isn't available."
 msgstr ""
 
-#: src/Module/Settings/Display.php:223
+#: src/Module/Settings/Display.php:209
 #, php-format
 msgid "%s - (Unsupported)"
 msgstr ""
 
-#: src/Module/Settings/Display.php:260
+#: src/Module/Settings/Display.php:246
 msgid "No preview"
 msgstr ""
 
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:247
 msgid "No image"
 msgstr ""
 
-#: src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:248
 msgid "Small Image"
 msgstr ""
 
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:249
 msgid "Large Image"
 msgstr ""
 
-#: src/Module/Settings/Display.php:308
+#: src/Module/Settings/Display.php:294
 msgid "Display Settings"
 msgstr ""
 
-#: src/Module/Settings/Display.php:310
+#: src/Module/Settings/Display.php:296
 msgid "General Theme Settings"
 msgstr ""
 
-#: src/Module/Settings/Display.php:311
+#: src/Module/Settings/Display.php:297
 msgid "Custom Theme Settings"
 msgstr ""
 
-#: src/Module/Settings/Display.php:312
+#: src/Module/Settings/Display.php:298
 msgid "Content Settings"
 msgstr ""
 
-#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86
-#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88
-#: view/theme/vier/config.php:136
+#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74
+#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76
+#: view/theme/vier/config.php:124
 msgid "Theme settings"
 msgstr ""
 
-#: src/Module/Settings/Display.php:314
+#: src/Module/Settings/Display.php:300
 msgid "Timelines"
 msgstr ""
 
-#: src/Module/Settings/Display.php:321
+#: src/Module/Settings/Display.php:307
 msgid "Display Theme:"
 msgstr ""
 
-#: src/Module/Settings/Display.php:322
+#: src/Module/Settings/Display.php:308
 msgid "Mobile Theme:"
 msgstr ""
 
-#: src/Module/Settings/Display.php:325
+#: src/Module/Settings/Display.php:311
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326
+#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: src/Module/Settings/Display.php:326
+#: src/Module/Settings/Display.php:312
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: src/Module/Settings/Display.php:327
+#: src/Module/Settings/Display.php:313
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: src/Module/Settings/Display.php:327
+#: src/Module/Settings/Display.php:313
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: src/Module/Settings/Display.php:328
+#: src/Module/Settings/Display.php:314
 msgid "Display emoticons"
 msgstr ""
 
-#: src/Module/Settings/Display.php:328
+#: src/Module/Settings/Display.php:314
 msgid "When enabled, emoticons are replaced with matching symbols."
 msgstr ""
 
-#: src/Module/Settings/Display.php:329
+#: src/Module/Settings/Display.php:315
 msgid "Infinite scroll"
 msgstr ""
 
-#: src/Module/Settings/Display.php:329
+#: src/Module/Settings/Display.php:315
 msgid "Automatic fetch new items when reaching the page end."
 msgstr ""
 
-#: src/Module/Settings/Display.php:330
+#: src/Module/Settings/Display.php:316
 msgid "Enable Smart Threading"
 msgstr ""
 
-#: src/Module/Settings/Display.php:330
+#: src/Module/Settings/Display.php:316
 msgid "Enable the automatic suppression of extraneous thread indentation."
 msgstr ""
 
-#: src/Module/Settings/Display.php:331
+#: src/Module/Settings/Display.php:317
 msgid "Display the Dislike feature"
 msgstr ""
 
-#: src/Module/Settings/Display.php:331
+#: src/Module/Settings/Display.php:317
 msgid "Display the Dislike button and dislike reactions on posts and comments."
 msgstr ""
 
-#: src/Module/Settings/Display.php:332
+#: src/Module/Settings/Display.php:318
 msgid "Display the resharer"
 msgstr ""
 
-#: src/Module/Settings/Display.php:332
+#: src/Module/Settings/Display.php:318
 msgid "Display the first resharer as icon and text on a reshared item."
 msgstr ""
 
-#: src/Module/Settings/Display.php:333
+#: src/Module/Settings/Display.php:319
 msgid "Stay local"
 msgstr ""
 
-#: src/Module/Settings/Display.php:333
+#: src/Module/Settings/Display.php:319
 msgid "Don't go to a remote system when following a contact link."
 msgstr ""
 
-#: src/Module/Settings/Display.php:334
+#: src/Module/Settings/Display.php:320
 msgid "Show the post deletion checkbox"
 msgstr ""
 
-#: src/Module/Settings/Display.php:334
+#: src/Module/Settings/Display.php:320
 msgid "Display the checkbox for the post deletion on the network page."
 msgstr ""
 
-#: src/Module/Settings/Display.php:335
+#: src/Module/Settings/Display.php:321
 msgid "DIsplay the event list"
 msgstr ""
 
-#: src/Module/Settings/Display.php:335
+#: src/Module/Settings/Display.php:321
 msgid "Display the birthday reminder and event list on the network page."
 msgstr ""
 
-#: src/Module/Settings/Display.php:336
+#: src/Module/Settings/Display.php:322
 msgid "Link preview mode"
 msgstr ""
 
-#: src/Module/Settings/Display.php:336
+#: src/Module/Settings/Display.php:322
 msgid "Appearance of the link preview that is added to each post with a link."
 msgstr ""
 
-#: src/Module/Settings/Display.php:341
+#: src/Module/Settings/Display.php:327
 msgid "Bookmark"
 msgstr ""
 
-#: src/Module/Settings/Display.php:343
+#: src/Module/Settings/Display.php:329
 msgid "Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu."
 msgstr ""
 
-#: src/Module/Settings/Display.php:345
+#: src/Module/Settings/Display.php:331
 msgid "Channel languages:"
 msgstr ""
 
-#: src/Module/Settings/Display.php:345
+#: src/Module/Settings/Display.php:331
 msgid "Select all languages that you want to see in your channels."
 msgstr ""
 
-#: src/Module/Settings/Display.php:347
+#: src/Module/Settings/Display.php:333
 msgid "Beginning of week:"
 msgstr ""
 
-#: src/Module/Settings/Display.php:348
+#: src/Module/Settings/Display.php:334
 msgid "Default calendar view:"
 msgstr ""
 
-#: src/Module/Settings/Features.php:73
+#: src/Module/Settings/Features.php:59
 msgid "Additional Features"
 msgstr ""
 
-#: src/Module/Settings/OAuth.php:71
+#: src/Module/Settings/OAuth.php:57
 msgid "Connected Apps"
 msgstr ""
 
-#: src/Module/Settings/OAuth.php:75
+#: src/Module/Settings/OAuth.php:61
 msgid "Remove authorization"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:116
+#: src/Module/Settings/Profile/Index.php:102
 msgid "Display Name is required."
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:170
+#: src/Module/Settings/Profile/Index.php:156
 msgid "Profile couldn't be updated."
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:210
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:217
 msgid "Label:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:211
-#: src/Module/Settings/Profile/Index.php:232
+#: src/Module/Settings/Profile/Index.php:197
+#: src/Module/Settings/Profile/Index.php:218
 msgid "Value:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:222
-#: src/Module/Settings/Profile/Index.php:243
+#: src/Module/Settings/Profile/Index.php:208
+#: src/Module/Settings/Profile/Index.php:229
 msgid "Field Permissions"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:223
-#: src/Module/Settings/Profile/Index.php:244
+#: src/Module/Settings/Profile/Index.php:209
+#: src/Module/Settings/Profile/Index.php:230
 msgid "(click to open/close)"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:215
 msgid "Add a new profile field"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:252
+#: src/Module/Settings/Profile/Index.php:238
 msgid "The homepage is verified. A rel=\"me\" link back to your Friendica profile page was found on the homepage."
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:254
+#: src/Module/Settings/Profile/Index.php:240
 #, php-format
 msgid "To verify your homepage, add a rel=\"me\" link to it, pointing to your profile URL (%s)."
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:260
+#: src/Module/Settings/Profile/Index.php:246
 msgid "Profile Actions"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:261
+#: src/Module/Settings/Profile/Index.php:247
 msgid "Edit Profile Details"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:263
+#: src/Module/Settings/Profile/Index.php:249
 msgid "Change Profile Photo"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:266
+#: src/Module/Settings/Profile/Index.php:252
 msgid "Profile picture"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:267
+#: src/Module/Settings/Profile/Index.php:253
 msgid "Location"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97
-#: src/Util/Temporal.php:99
+#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83
+#: src/Util/Temporal.php:85
 msgid "Miscellaneous"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:269
+#: src/Module/Settings/Profile/Index.php:255
 msgid "Custom Profile Fields"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58
+#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44
 msgid "Upload Profile Photo"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:271
+#: src/Module/Settings/Profile/Index.php:257
 #, php-format
 msgid ""
 "<p>Custom fields appear on <a href=\"%s\">your profile page</a>.</p>\n"
@@ -10228,427 +10227,427 @@ msgid ""
 "\t\t\t\t<p>Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.</p>"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:291
+#: src/Module/Settings/Profile/Index.php:277
 msgid "Street Address:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:292
+#: src/Module/Settings/Profile/Index.php:278
 msgid "Locality/City:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:293
+#: src/Module/Settings/Profile/Index.php:279
 msgid "Region/State:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:294
+#: src/Module/Settings/Profile/Index.php:280
 msgid "Postal/Zip Code:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:295
+#: src/Module/Settings/Profile/Index.php:281
 msgid "Country:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:297
+#: src/Module/Settings/Profile/Index.php:283
 msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:297
+#: src/Module/Settings/Profile/Index.php:283
 msgid "The XMPP address will be published so that people can follow you there."
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:298
+#: src/Module/Settings/Profile/Index.php:284
 msgid "Matrix (Element) address:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:298
+#: src/Module/Settings/Profile/Index.php:284
 msgid "The Matrix address will be published so that people can follow you there."
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:299
+#: src/Module/Settings/Profile/Index.php:285
 msgid "Homepage URL:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:300
+#: src/Module/Settings/Profile/Index.php:286
 msgid "Public Keywords:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:300
+#: src/Module/Settings/Profile/Index.php:286
 msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:301
+#: src/Module/Settings/Profile/Index.php:287
 msgid "Private Keywords:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Index.php:301
+#: src/Module/Settings/Profile/Index.php:287
 msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:107
-#: src/Module/Settings/Profile/Photo/Crop.php:125
-#: src/Module/Settings/Profile/Photo/Crop.php:143
-#: src/Module/Settings/Profile/Photo/Index.php:100
+#: src/Module/Settings/Profile/Photo/Crop.php:93
+#: src/Module/Settings/Profile/Photo/Crop.php:111
+#: src/Module/Settings/Profile/Photo/Crop.php:129
+#: src/Module/Settings/Profile/Photo/Index.php:86
 #, php-format
 msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:150
+#: src/Module/Settings/Profile/Photo/Crop.php:136
 msgid "Shift-reload the page or clear browser cache if the new photo does not display immediately."
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:155
+#: src/Module/Settings/Profile/Photo/Crop.php:141
 msgid "Unable to process image"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:174
+#: src/Module/Settings/Profile/Photo/Crop.php:160
 msgid "Photo not found."
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:196
+#: src/Module/Settings/Profile/Photo/Crop.php:182
 msgid "Profile picture successfully updated."
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:222
-#: src/Module/Settings/Profile/Photo/Crop.php:226
+#: src/Module/Settings/Profile/Photo/Crop.php:208
+#: src/Module/Settings/Profile/Photo/Crop.php:212
 msgid "Crop Image"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:223
+#: src/Module/Settings/Profile/Photo/Crop.php:209
 msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Crop.php:225
+#: src/Module/Settings/Profile/Photo/Crop.php:211
 msgid "Use Image As Is"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:46
+#: src/Module/Settings/Profile/Photo/Index.php:32
 msgid "Missing uploaded image."
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:123
+#: src/Module/Settings/Profile/Photo/Index.php:109
 msgid "Profile Picture Settings"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:124
+#: src/Module/Settings/Profile/Photo/Index.php:110
 msgid "Current Profile Picture"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:125
+#: src/Module/Settings/Profile/Photo/Index.php:111
 msgid "Upload Profile Picture"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:126
+#: src/Module/Settings/Profile/Photo/Index.php:112
 msgid "Upload Picture:"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:131
+#: src/Module/Settings/Profile/Photo/Index.php:117
 msgid "or"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:133
+#: src/Module/Settings/Profile/Photo/Index.php:119
 msgid "skip this step"
 msgstr ""
 
-#: src/Module/Settings/Profile/Photo/Index.php:135
+#: src/Module/Settings/Profile/Photo/Index.php:121
 msgid "select a photo from your photo albums"
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:76
+#: src/Module/Settings/RemoveMe.php:62
 msgid "There was a validation error, please make sure you're logged in with the account you want to remove and try again."
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:76
+#: src/Module/Settings/RemoveMe.php:62
 msgid "If this error persists, please contact your administrator."
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:90
-#: src/Navigation/Notifications/Repository/Notify.php:471
-#: src/Navigation/Notifications/Repository/Notify.php:492
+#: src/Module/Settings/RemoveMe.php:76
+#: src/Navigation/Notifications/Repository/Notify.php:457
+#: src/Navigation/Notifications/Repository/Notify.php:478
 msgid "[Friendica System Notify]"
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:90
+#: src/Module/Settings/RemoveMe.php:76
 msgid "User deleted their account"
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:91
+#: src/Module/Settings/RemoveMe.php:77
 msgid "On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:92
+#: src/Module/Settings/RemoveMe.php:78
 #, php-format
 msgid "The user id is %d"
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:105
+#: src/Module/Settings/RemoveMe.php:91
 msgid "Your account has been successfully removed. Bye bye!"
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:130
+#: src/Module/Settings/RemoveMe.php:116
 msgid "Remove My Account"
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:131
+#: src/Module/Settings/RemoveMe.php:117
 msgid "This will completely remove your account. Once this has been done it is not recoverable."
 msgstr ""
 
-#: src/Module/Settings/RemoveMe.php:136
+#: src/Module/Settings/RemoveMe.php:122
 msgid "Please enter your password for verification:"
 msgstr ""
 
-#: src/Module/Settings/Server/Action.php:60
+#: src/Module/Settings/Server/Action.php:46
 msgid "Do you want to ignore this server?"
 msgstr ""
 
-#: src/Module/Settings/Server/Action.php:64
+#: src/Module/Settings/Server/Action.php:50
 msgid "Do you want to unignore this server?"
 msgstr ""
 
-#: src/Module/Settings/Server/Action.php:74
-#: src/Module/Settings/Server/Index.php:104
+#: src/Module/Settings/Server/Action.php:60
+#: src/Module/Settings/Server/Index.php:90
 msgid "Remote server settings"
 msgstr ""
 
-#: src/Module/Settings/Server/Action.php:77
+#: src/Module/Settings/Server/Action.php:63
 msgid "Server URL"
 msgstr ""
 
-#: src/Module/Settings/Server/Index.php:78
+#: src/Module/Settings/Server/Index.php:64
 msgid "Settings saved"
 msgstr ""
 
-#: src/Module/Settings/Server/Index.php:105
+#: src/Module/Settings/Server/Index.php:91
 msgid "Here you can find all the remote servers you have taken individual moderation actions against. For a list of servers your node has blocked, please check out the <a href=\"friendica\">Information</a> page."
 msgstr ""
 
-#: src/Module/Settings/Server/Index.php:110
+#: src/Module/Settings/Server/Index.php:96
 msgid "Delete all your settings for the remote server"
 msgstr ""
 
-#: src/Module/Settings/Server/Index.php:111
+#: src/Module/Settings/Server/Index.php:97
 msgid "Save changes"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:69
-#: src/Module/Settings/TwoFactor/Recovery.php:67
-#: src/Module/Settings/TwoFactor/Trusted.php:70
-#: src/Module/Settings/TwoFactor/Verify.php:72
+#: src/Module/Settings/TwoFactor/AppSpecific.php:55
+#: src/Module/Settings/TwoFactor/Recovery.php:53
+#: src/Module/Settings/TwoFactor/Trusted.php:56
+#: src/Module/Settings/TwoFactor/Verify.php:58
 msgid "Please enter your password to access this page."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:87
+#: src/Module/Settings/TwoFactor/AppSpecific.php:73
 msgid "App-specific password generation failed: The description is empty."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:90
+#: src/Module/Settings/TwoFactor/AppSpecific.php:76
 msgid "App-specific password generation failed: This description already exists."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:94
+#: src/Module/Settings/TwoFactor/AppSpecific.php:80
 msgid "New app-specific password generated."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:100
+#: src/Module/Settings/TwoFactor/AppSpecific.php:86
 msgid "App-specific passwords successfully revoked."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:110
+#: src/Module/Settings/TwoFactor/AppSpecific.php:96
 msgid "App-specific password successfully revoked."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:131
+#: src/Module/Settings/TwoFactor/AppSpecific.php:117
 msgid "Two-factor app-specific passwords"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:133
+#: src/Module/Settings/TwoFactor/AppSpecific.php:119
 msgid "<p>App-specific passwords are randomly generated passwords used instead your regular password to authenticate your account on third-party applications that don't support two-factor authentication.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:134
+#: src/Module/Settings/TwoFactor/AppSpecific.php:120
 msgid "Make sure to copy your new app-specific password now. You won’t be able to see it again!"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:138
+#: src/Module/Settings/TwoFactor/AppSpecific.php:124
 msgid "Last Used"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:139
+#: src/Module/Settings/TwoFactor/AppSpecific.php:125
 msgid "Revoke"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:140
+#: src/Module/Settings/TwoFactor/AppSpecific.php:126
 msgid "Revoke All"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:143
+#: src/Module/Settings/TwoFactor/AppSpecific.php:129
 msgid "When you generate a new app-specific password, you must use it right away, it will be shown to you once after you generate it."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:144
+#: src/Module/Settings/TwoFactor/AppSpecific.php:130
 msgid "Generate new app-specific password"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:145
+#: src/Module/Settings/TwoFactor/AppSpecific.php:131
 msgid "Friendiqa on my Fairphone 2..."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/AppSpecific.php:146
+#: src/Module/Settings/TwoFactor/AppSpecific.php:132
 msgid "Generate"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:88
+#: src/Module/Settings/TwoFactor/Index.php:74
 msgid "Two-factor authentication successfully disabled."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:141
+#: src/Module/Settings/TwoFactor/Index.php:127
 msgid "<p>Use an application on a mobile device to get two-factor authentication codes when prompted on login.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:145
+#: src/Module/Settings/TwoFactor/Index.php:131
 msgid "Authenticator app"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Settings/TwoFactor/Index.php:132
 msgid "Configured"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:146
+#: src/Module/Settings/TwoFactor/Index.php:132
 msgid "Not Configured"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:147
+#: src/Module/Settings/TwoFactor/Index.php:133
 msgid "<p>You haven't finished configuring your authenticator app.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:148
+#: src/Module/Settings/TwoFactor/Index.php:134
 msgid "<p>Your authenticator app is correctly configured.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:150
+#: src/Module/Settings/TwoFactor/Index.php:136
 msgid "Recovery codes"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:151
+#: src/Module/Settings/TwoFactor/Index.php:137
 msgid "Remaining valid codes"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:153
+#: src/Module/Settings/TwoFactor/Index.php:139
 msgid "<p>These one-use codes can replace an authenticator app code in case you have lost access to it.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:155
+#: src/Module/Settings/TwoFactor/Index.php:141
 msgid "App-specific passwords"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:156
+#: src/Module/Settings/TwoFactor/Index.php:142
 msgid "Generated app-specific passwords"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:158
+#: src/Module/Settings/TwoFactor/Index.php:144
 msgid "<p>These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:161
+#: src/Module/Settings/TwoFactor/Index.php:147
 msgid "Current password:"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:161
+#: src/Module/Settings/TwoFactor/Index.php:147
 msgid "You need to provide your current password to change two-factor authentication settings."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:162
+#: src/Module/Settings/TwoFactor/Index.php:148
 msgid "Enable two-factor authentication"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:163
+#: src/Module/Settings/TwoFactor/Index.php:149
 msgid "Disable two-factor authentication"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:164
+#: src/Module/Settings/TwoFactor/Index.php:150
 msgid "Show recovery codes"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:165
+#: src/Module/Settings/TwoFactor/Index.php:151
 msgid "Manage app-specific passwords"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:166
+#: src/Module/Settings/TwoFactor/Index.php:152
 msgid "Manage trusted browsers"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Index.php:167
+#: src/Module/Settings/TwoFactor/Index.php:153
 msgid "Finish app configuration"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Recovery.php:83
+#: src/Module/Settings/TwoFactor/Recovery.php:69
 msgid "New recovery codes successfully generated."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Recovery.php:109
+#: src/Module/Settings/TwoFactor/Recovery.php:95
 msgid "Two-factor recovery codes"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Recovery.php:111
+#: src/Module/Settings/TwoFactor/Recovery.php:97
 msgid "<p>Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.</p><p><strong>Put these in a safe spot!</strong> If you lose your device and don’t have the recovery codes you will lose access to your account.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Recovery.php:113
+#: src/Module/Settings/TwoFactor/Recovery.php:99
 msgid "When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Recovery.php:114
+#: src/Module/Settings/TwoFactor/Recovery.php:100
 msgid "Generate new recovery codes"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Recovery.php:116
+#: src/Module/Settings/TwoFactor/Recovery.php:102
 msgid "Next: Verification"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:87
+#: src/Module/Settings/TwoFactor/Trusted.php:73
 msgid "Trusted browsers successfully removed."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:97
+#: src/Module/Settings/TwoFactor/Trusted.php:83
 msgid "Trusted browser successfully removed."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:139
+#: src/Module/Settings/TwoFactor/Trusted.php:125
 msgid "Two-factor Trusted Browsers"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:140
+#: src/Module/Settings/TwoFactor/Trusted.php:126
 msgid "Trusted browsers are individual browsers you chose to skip two-factor authentication to access Friendica. Please use this feature sparingly, as it can negate the benefit of two-factor authentication."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:141
+#: src/Module/Settings/TwoFactor/Trusted.php:127
 msgid "Device"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:142
+#: src/Module/Settings/TwoFactor/Trusted.php:128
 msgid "OS"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:144
+#: src/Module/Settings/TwoFactor/Trusted.php:130
 msgid "Trusted"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:145
+#: src/Module/Settings/TwoFactor/Trusted.php:131
 msgid "Created At"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:146
+#: src/Module/Settings/TwoFactor/Trusted.php:132
 msgid "Last Use"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Trusted.php:148
+#: src/Module/Settings/TwoFactor/Trusted.php:134
 msgid "Remove All"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Verify.php:94
+#: src/Module/Settings/TwoFactor/Verify.php:80
 msgid "Two-factor authentication successfully activated."
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Verify.php:128
+#: src/Module/Settings/TwoFactor/Verify.php:114
 #, php-format
 msgid ""
 "<p>Or you can submit the authentication settings manually:</p>\n"
@@ -10668,715 +10667,715 @@ msgid ""
 "</dl>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Verify.php:148
+#: src/Module/Settings/TwoFactor/Verify.php:134
 msgid "Two-factor code verification"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Verify.php:150
+#: src/Module/Settings/TwoFactor/Verify.php:136
 msgid "<p>Please scan this QR Code with your authenticator app and submit the provided code.</p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Verify.php:152
+#: src/Module/Settings/TwoFactor/Verify.php:138
 #, php-format
 msgid "<p>Or you can open the following URL in your mobile device:</p><p><a href=\"%s\">%s</a></p>"
 msgstr ""
 
-#: src/Module/Settings/TwoFactor/Verify.php:159
+#: src/Module/Settings/TwoFactor/Verify.php:145
 msgid "Verify code and enable two-factor authentication"
 msgstr ""
 
-#: src/Module/Settings/UserExport.php:90
+#: src/Module/Settings/UserExport.php:76
 msgid "Export account"
 msgstr ""
 
-#: src/Module/Settings/UserExport.php:90
+#: src/Module/Settings/UserExport.php:76
 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 ""
 
-#: src/Module/Settings/UserExport.php:91
+#: src/Module/Settings/UserExport.php:77
 msgid "Export all"
 msgstr ""
 
-#: src/Module/Settings/UserExport.php:91
+#: src/Module/Settings/UserExport.php:77
 msgid "Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"
 msgstr ""
 
-#: src/Module/Settings/UserExport.php:92
+#: src/Module/Settings/UserExport.php:78
 msgid "Export Contacts to CSV"
 msgstr ""
 
-#: src/Module/Settings/UserExport.php:92
+#: src/Module/Settings/UserExport.php:78
 msgid "Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:35
+#: src/Module/Special/DisplayNotFound.php:21
 msgid "The top-level post isn't visible."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:36
+#: src/Module/Special/DisplayNotFound.php:22
 msgid "The top-level post was deleted."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:37
+#: src/Module/Special/DisplayNotFound.php:23
 msgid "This node has blocked the top-level author or the author of the shared post."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:38
+#: src/Module/Special/DisplayNotFound.php:24
 msgid "You have ignored or blocked the top-level author or the author of the shared post."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:39
+#: src/Module/Special/DisplayNotFound.php:25
 msgid "You have ignored the top-level author's server or the shared post author's server."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:45
+#: src/Module/Special/DisplayNotFound.php:31
 msgid "Conversation Not Found"
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:46
+#: src/Module/Special/DisplayNotFound.php:32
 msgid "Unfortunately, the requested conversation isn't available to you."
 msgstr ""
 
-#: src/Module/Special/DisplayNotFound.php:47
+#: src/Module/Special/DisplayNotFound.php:33
 msgid "Possible reasons include:"
 msgstr ""
 
-#: src/Module/Special/HTTPException.php:78
+#: src/Module/Special/HTTPException.php:64
 msgid "Stack trace:"
 msgstr ""
 
-#: src/Module/Special/HTTPException.php:83
+#: src/Module/Special/HTTPException.php:69
 #, php-format
 msgid "Exception thrown in %s:%d"
 msgstr ""
 
-#: src/Module/Tos.php:58 src/Module/Tos.php:107
+#: src/Module/Tos.php:44 src/Module/Tos.php:93
 msgid "At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."
 msgstr ""
 
-#: src/Module/Tos.php:59 src/Module/Tos.php:108
+#: src/Module/Tos.php:45 src/Module/Tos.php:94
 msgid "This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts."
 msgstr ""
 
-#: src/Module/Tos.php:60 src/Module/Tos.php:109
+#: src/Module/Tos.php:46 src/Module/Tos.php:95
 #, php-format
 msgid "At any point in time a logged in user can export their account data from the <a href=\"%1$s/settings/userexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1$s/settings/removeme\">%1$s/settings/removeme</a>. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."
 msgstr ""
 
-#: src/Module/Tos.php:63 src/Module/Tos.php:106
+#: src/Module/Tos.php:49 src/Module/Tos.php:92
 msgid "Privacy Statement"
 msgstr ""
 
-#: src/Module/Tos.php:103
+#: src/Module/Tos.php:89
 msgid "Rules"
 msgstr ""
 
-#: src/Module/Update/Display.php:45
+#: src/Module/Update/Display.php:31
 msgid "Parameter uri_id is missing."
 msgstr ""
 
-#: src/Module/Update/Display.php:55
+#: src/Module/Update/Display.php:41
 msgid "The requested item doesn't exist or has been deleted."
 msgstr ""
 
-#: src/Module/User/Delegation.php:146
+#: src/Module/User/Delegation.php:132
 #, php-format
 msgid "You are now logged in as %s"
 msgstr ""
 
-#: src/Module/User/Delegation.php:185
+#: src/Module/User/Delegation.php:171
 msgid "Switch between your accounts"
 msgstr ""
 
-#: src/Module/User/Delegation.php:186
+#: src/Module/User/Delegation.php:172
 msgid "Manage your accounts"
 msgstr ""
 
-#: src/Module/User/Delegation.php:187
+#: src/Module/User/Delegation.php:173
 msgid "Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: src/Module/User/Delegation.php:188
+#: src/Module/User/Delegation.php:174
 msgid "Select an identity to manage: "
 msgstr ""
 
-#: src/Module/User/Import.php:104
+#: src/Module/User/Import.php:90
 msgid "User imports on closed servers can only be done by an administrator."
 msgstr ""
 
-#: src/Module/User/Import.php:120
+#: src/Module/User/Import.php:106
 msgid "Move account"
 msgstr ""
 
-#: src/Module/User/Import.php:121
+#: src/Module/User/Import.php:107
 msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: src/Module/User/Import.php:122
+#: src/Module/User/Import.php:108
 msgid "You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."
 msgstr ""
 
-#: src/Module/User/Import.php:123
+#: src/Module/User/Import.php:109
 msgid "This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"
 msgstr ""
 
-#: src/Module/User/Import.php:124
+#: src/Module/User/Import.php:110
 msgid "Account file"
 msgstr ""
 
-#: src/Module/User/Import.php:124
+#: src/Module/User/Import.php:110
 msgid "To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""
 msgstr ""
 
-#: src/Module/User/Import.php:218
+#: src/Module/User/Import.php:204
 msgid "Error decoding account file"
 msgstr ""
 
-#: src/Module/User/Import.php:223
+#: src/Module/User/Import.php:209
 msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: src/Module/User/Import.php:231
+#: src/Module/User/Import.php:217
 #, php-format
 msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: src/Module/User/Import.php:268
+#: src/Module/User/Import.php:254
 msgid "User creation error"
 msgstr ""
 
-#: src/Module/User/Import.php:317
+#: src/Module/User/Import.php:303
 #, php-format
 msgid "%d contact not imported"
 msgid_plural "%d contacts not imported"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Module/User/Import.php:366
+#: src/Module/User/Import.php:352
 msgid "User profile creation error"
 msgstr ""
 
-#: src/Module/User/Import.php:417
+#: src/Module/User/Import.php:403
 msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: src/Module/Welcome.php:44
+#: src/Module/Welcome.php:30
 msgid "Welcome to Friendica"
 msgstr ""
 
-#: src/Module/Welcome.php:45
+#: src/Module/Welcome.php:31
 msgid "New Member Checklist"
 msgstr ""
 
-#: src/Module/Welcome.php:46
+#: src/Module/Welcome.php:32
 msgid "We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."
 msgstr ""
 
-#: src/Module/Welcome.php:48
+#: src/Module/Welcome.php:34
 msgid "Getting Started"
 msgstr ""
 
-#: src/Module/Welcome.php:49
+#: src/Module/Welcome.php:35
 msgid "Friendica Walk-Through"
 msgstr ""
 
-#: src/Module/Welcome.php:50
+#: src/Module/Welcome.php:36
 msgid "On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."
 msgstr ""
 
-#: src/Module/Welcome.php:53
+#: src/Module/Welcome.php:39
 msgid "Go to Your Settings"
 msgstr ""
 
-#: src/Module/Welcome.php:54
+#: src/Module/Welcome.php:40
 msgid "On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."
 msgstr ""
 
-#: src/Module/Welcome.php:55
+#: src/Module/Welcome.php:41
 msgid "Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."
 msgstr ""
 
-#: src/Module/Welcome.php:59
+#: src/Module/Welcome.php:45
 msgid "Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."
 msgstr ""
 
-#: src/Module/Welcome.php:60
+#: src/Module/Welcome.php:46
 msgid "Edit Your Profile"
 msgstr ""
 
-#: src/Module/Welcome.php:61
+#: src/Module/Welcome.php:47
 msgid "Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."
 msgstr ""
 
-#: src/Module/Welcome.php:62
+#: src/Module/Welcome.php:48
 msgid "Profile Keywords"
 msgstr ""
 
-#: src/Module/Welcome.php:63
+#: src/Module/Welcome.php:49
 msgid "Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."
 msgstr ""
 
-#: src/Module/Welcome.php:65
+#: src/Module/Welcome.php:51
 msgid "Connecting"
 msgstr ""
 
-#: src/Module/Welcome.php:67
+#: src/Module/Welcome.php:53
 msgid "Importing Emails"
 msgstr ""
 
-#: src/Module/Welcome.php:68
+#: src/Module/Welcome.php:54
 msgid "Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"
 msgstr ""
 
-#: src/Module/Welcome.php:69
+#: src/Module/Welcome.php:55
 msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: src/Module/Welcome.php:70
+#: src/Module/Welcome.php:56
 msgid "Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."
 msgstr ""
 
-#: src/Module/Welcome.php:71
+#: src/Module/Welcome.php:57
 msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: src/Module/Welcome.php:72
+#: src/Module/Welcome.php:58
 msgid "The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."
 msgstr ""
 
-#: src/Module/Welcome.php:73
+#: src/Module/Welcome.php:59
 msgid "Finding New People"
 msgstr ""
 
-#: src/Module/Welcome.php:74
+#: src/Module/Welcome.php:60
 msgid "On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."
 msgstr ""
 
-#: src/Module/Welcome.php:77
+#: src/Module/Welcome.php:63
 msgid "Add Your Contacts To Circle"
 msgstr ""
 
-#: src/Module/Welcome.php:78
+#: src/Module/Welcome.php:64
 msgid "Once you have made some friends, organize them into private conversation circles from the sidebar of your Contacts page and then you can interact with each circle privately on your Network page."
 msgstr ""
 
-#: src/Module/Welcome.php:80
+#: src/Module/Welcome.php:66
 msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: src/Module/Welcome.php:81
+#: src/Module/Welcome.php:67
 msgid "Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."
 msgstr ""
 
-#: src/Module/Welcome.php:83
+#: src/Module/Welcome.php:69
 msgid "Getting Help"
 msgstr ""
 
-#: src/Module/Welcome.php:84
+#: src/Module/Welcome.php:70
 msgid "Go to the Help Section"
 msgstr ""
 
-#: src/Module/Welcome.php:85
+#: src/Module/Welcome.php:71
 msgid "Our <strong>help</strong> pages may be consulted for detail on other program features and resources."
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161
+#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147
 msgid "{0} wants to follow you"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163
+#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149
 msgid "{0} has started following you"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:96
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:82
 #, php-format
 msgid "%s liked %s's post"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:108
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:94
 #, php-format
 msgid "%s disliked %s's post"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:120
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:106
 #, php-format
 msgid "%s is attending %s's event"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:132
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:118
 #, php-format
 msgid "%s is not attending %s's event"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:144
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:130
 #, php-format
 msgid "%s may attending %s's event"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:174
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:160
 #, php-format
 msgid "%s is now friends with %s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:341
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:379
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:327
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:365
 #, php-format
 msgid "%s commented on %s's post"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/FormattedNotify.php:378
+#: src/Navigation/Notifications/Factory/FormattedNotify.php:364
 #, php-format
 msgid "%s created a new post"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Introduction.php:132
+#: src/Navigation/Notifications/Factory/Introduction.php:118
 msgid "Friend Suggestion"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Introduction.php:158
+#: src/Navigation/Notifications/Factory/Introduction.php:144
 msgid "Friend/Connect Request"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Introduction.php:158
+#: src/Navigation/Notifications/Factory/Introduction.php:144
 msgid "New Follower"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:134
+#: src/Navigation/Notifications/Factory/Notification.php:120
 #, php-format
 msgid "%1$s wants to follow you"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:136
+#: src/Navigation/Notifications/Factory/Notification.php:122
 #, php-format
 msgid "%1$s has started following you"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:208
+#: src/Navigation/Notifications/Factory/Notification.php:194
 #, php-format
 msgid "%1$s liked your comment on %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:211
+#: src/Navigation/Notifications/Factory/Notification.php:197
 #, php-format
 msgid "%1$s liked your post %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:218
+#: src/Navigation/Notifications/Factory/Notification.php:204
 #, php-format
 msgid "%1$s disliked your comment on %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:221
+#: src/Navigation/Notifications/Factory/Notification.php:207
 #, php-format
 msgid "%1$s disliked your post %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:228
+#: src/Navigation/Notifications/Factory/Notification.php:214
 #, php-format
 msgid "%1$s shared your comment %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:231
-#: src/Navigation/Notifications/Factory/Notification.php:316
+#: src/Navigation/Notifications/Factory/Notification.php:217
+#: src/Navigation/Notifications/Factory/Notification.php:302
 #, php-format
 msgid "%1$s shared your post %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:235
-#: src/Navigation/Notifications/Factory/Notification.php:305
+#: src/Navigation/Notifications/Factory/Notification.php:221
+#: src/Navigation/Notifications/Factory/Notification.php:291
 #, php-format
 msgid "%1$s shared the post %2$s from %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:237
-#: src/Navigation/Notifications/Factory/Notification.php:307
+#: src/Navigation/Notifications/Factory/Notification.php:223
+#: src/Navigation/Notifications/Factory/Notification.php:293
 #, php-format
 msgid "%1$s shared a post from %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:239
-#: src/Navigation/Notifications/Factory/Notification.php:309
+#: src/Navigation/Notifications/Factory/Notification.php:225
+#: src/Navigation/Notifications/Factory/Notification.php:295
 #, php-format
 msgid "%1$s shared the post %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:241
-#: src/Navigation/Notifications/Factory/Notification.php:311
+#: src/Navigation/Notifications/Factory/Notification.php:227
+#: src/Navigation/Notifications/Factory/Notification.php:297
 #, php-format
 msgid "%1$s shared a post"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:249
+#: src/Navigation/Notifications/Factory/Notification.php:235
 #, php-format
 msgid "%1$s wants to attend your event %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:256
+#: src/Navigation/Notifications/Factory/Notification.php:242
 #, php-format
 msgid "%1$s does not want to attend your event %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:263
+#: src/Navigation/Notifications/Factory/Notification.php:249
 #, php-format
 msgid "%1$s maybe wants to attend your event %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:270
+#: src/Navigation/Notifications/Factory/Notification.php:256
 #, php-format
 msgid "%1$s tagged you on %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:274
+#: src/Navigation/Notifications/Factory/Notification.php:260
 #, php-format
 msgid "%1$s replied to you on %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:278
+#: src/Navigation/Notifications/Factory/Notification.php:264
 #, php-format
 msgid "%1$s commented in your thread %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:282
+#: src/Navigation/Notifications/Factory/Notification.php:268
 #, php-format
 msgid "%1$s commented on your comment %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:289
+#: src/Navigation/Notifications/Factory/Notification.php:275
 #, php-format
 msgid "%1$s commented in their thread %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:291
+#: src/Navigation/Notifications/Factory/Notification.php:277
 #, php-format
 msgid "%1$s commented in their thread"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:293
+#: src/Navigation/Notifications/Factory/Notification.php:279
 #, php-format
 msgid "%1$s commented in the thread %2$s from %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:295
+#: src/Navigation/Notifications/Factory/Notification.php:281
 #, php-format
 msgid "%1$s commented in the thread from %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Factory/Notification.php:300
+#: src/Navigation/Notifications/Factory/Notification.php:286
 #, php-format
 msgid "%1$s commented on your thread %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:225
-#: src/Navigation/Notifications/Repository/Notify.php:754
+#: src/Navigation/Notifications/Repository/Notify.php:211
+#: src/Navigation/Notifications/Repository/Notify.php:740
 msgid "[Friendica:Notify]"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:293
+#: src/Navigation/Notifications/Repository/Notify.php:279
 #, php-format
 msgid "%s New mail received at %s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:295
+#: src/Navigation/Notifications/Repository/Notify.php:281
 #, php-format
 msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:296
+#: src/Navigation/Notifications/Repository/Notify.php:282
 msgid "a private message"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:296
+#: src/Navigation/Notifications/Repository/Notify.php:282
 #, php-format
 msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:298
+#: src/Navigation/Notifications/Repository/Notify.php:284
 #, php-format
 msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:328
+#: src/Navigation/Notifications/Repository/Notify.php:314
 #, php-format
 msgid "%1$s commented on %2$s's %3$s %4$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:333
+#: src/Navigation/Notifications/Repository/Notify.php:319
 #, php-format
 msgid "%1$s commented on your %2$s %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:337
+#: src/Navigation/Notifications/Repository/Notify.php:323
 #, php-format
 msgid "%1$s commented on their %2$s %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:341
-#: src/Navigation/Notifications/Repository/Notify.php:788
+#: src/Navigation/Notifications/Repository/Notify.php:327
+#: src/Navigation/Notifications/Repository/Notify.php:774
 #, php-format
 msgid "%1$s Comment to conversation #%2$d by %3$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:343
+#: src/Navigation/Notifications/Repository/Notify.php:329
 #, php-format
 msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:347
-#: src/Navigation/Notifications/Repository/Notify.php:362
-#: src/Navigation/Notifications/Repository/Notify.php:814
+#: src/Navigation/Notifications/Repository/Notify.php:333
+#: src/Navigation/Notifications/Repository/Notify.php:348
+#: src/Navigation/Notifications/Repository/Notify.php:800
 #, php-format
 msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:354
+#: src/Navigation/Notifications/Repository/Notify.php:340
 #, php-format
 msgid "%s %s posted to your profile wall"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:356
+#: src/Navigation/Notifications/Repository/Notify.php:342
 #, php-format
 msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:357
+#: src/Navigation/Notifications/Repository/Notify.php:343
 #, php-format
 msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:370
+#: src/Navigation/Notifications/Repository/Notify.php:356
 #, php-format
 msgid "%s Introduction received"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:372
+#: src/Navigation/Notifications/Repository/Notify.php:358
 #, php-format
 msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:373
+#: src/Navigation/Notifications/Repository/Notify.php:359
 #, php-format
 msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:378
-#: src/Navigation/Notifications/Repository/Notify.php:424
+#: src/Navigation/Notifications/Repository/Notify.php:364
+#: src/Navigation/Notifications/Repository/Notify.php:410
 #, php-format
 msgid "You may visit their profile at %s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:380
+#: src/Navigation/Notifications/Repository/Notify.php:366
 #, php-format
 msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:387
+#: src/Navigation/Notifications/Repository/Notify.php:373
 #, php-format
 msgid "%s A new person is sharing with you"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:389
-#: src/Navigation/Notifications/Repository/Notify.php:390
+#: src/Navigation/Notifications/Repository/Notify.php:375
+#: src/Navigation/Notifications/Repository/Notify.php:376
 #, php-format
 msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:397
+#: src/Navigation/Notifications/Repository/Notify.php:383
 #, php-format
 msgid "%s You have a new follower"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:399
-#: src/Navigation/Notifications/Repository/Notify.php:400
+#: src/Navigation/Notifications/Repository/Notify.php:385
+#: src/Navigation/Notifications/Repository/Notify.php:386
 #, php-format
 msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:413
+#: src/Navigation/Notifications/Repository/Notify.php:399
 #, php-format
 msgid "%s Friend suggestion received"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:415
+#: src/Navigation/Notifications/Repository/Notify.php:401
 #, php-format
 msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:416
+#: src/Navigation/Notifications/Repository/Notify.php:402
 #, php-format
 msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:422
+#: src/Navigation/Notifications/Repository/Notify.php:408
 msgid "Name:"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:423
+#: src/Navigation/Notifications/Repository/Notify.php:409
 msgid "Photo:"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:426
+#: src/Navigation/Notifications/Repository/Notify.php:412
 #, php-format
 msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:434
-#: src/Navigation/Notifications/Repository/Notify.php:449
+#: src/Navigation/Notifications/Repository/Notify.php:420
+#: src/Navigation/Notifications/Repository/Notify.php:435
 #, php-format
 msgid "%s Connection accepted"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:436
-#: src/Navigation/Notifications/Repository/Notify.php:451
+#: src/Navigation/Notifications/Repository/Notify.php:422
+#: src/Navigation/Notifications/Repository/Notify.php:437
 #, php-format
 msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:437
-#: src/Navigation/Notifications/Repository/Notify.php:452
+#: src/Navigation/Notifications/Repository/Notify.php:423
+#: src/Navigation/Notifications/Repository/Notify.php:438
 #, php-format
 msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:442
+#: src/Navigation/Notifications/Repository/Notify.php:428
 msgid "You are now mutual friends and may exchange status updates, photos, and email without restriction."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:444
+#: src/Navigation/Notifications/Repository/Notify.php:430
 #, php-format
 msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:457
+#: src/Navigation/Notifications/Repository/Notify.php:443
 #, php-format
 msgid "'%1$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:459
+#: src/Navigation/Notifications/Repository/Notify.php:445
 #, php-format
 msgid "'%1$s' may choose to extend this into a two-way or more permissive relationship in the future."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:461
+#: src/Navigation/Notifications/Repository/Notify.php:447
 #, php-format
 msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:471
+#: src/Navigation/Notifications/Repository/Notify.php:457
 msgid "registration request"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:473
+#: src/Navigation/Notifications/Repository/Notify.php:459
 #, php-format
 msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:474
+#: src/Navigation/Notifications/Repository/Notify.php:460
 #, php-format
 msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:479
-#: src/Navigation/Notifications/Repository/Notify.php:500
+#: src/Navigation/Notifications/Repository/Notify.php:465
+#: src/Navigation/Notifications/Repository/Notify.php:486
 #, php-format
 msgid ""
 "Display Name:\t%s\n"
@@ -11384,760 +11383,760 @@ msgid ""
 "Login Name:\t%s (%s)"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:485
+#: src/Navigation/Notifications/Repository/Notify.php:471
 #, php-format
 msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:492
+#: src/Navigation/Notifications/Repository/Notify.php:478
 msgid "new registration"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:494
+#: src/Navigation/Notifications/Repository/Notify.php:480
 #, php-format
 msgid "You've received a new registration from '%1$s' at %2$s"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:495
+#: src/Navigation/Notifications/Repository/Notify.php:481
 #, php-format
 msgid "You've received a [url=%1$s]new registration[/url] from %2$s."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:506
+#: src/Navigation/Notifications/Repository/Notify.php:492
 #, php-format
 msgid "Please visit %s to have a look at the new registration."
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:782
+#: src/Navigation/Notifications/Repository/Notify.php:768
 #, php-format
 msgid "%s %s tagged you"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:785
+#: src/Navigation/Notifications/Repository/Notify.php:771
 #, php-format
 msgid "%s %s shared a new post"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:793
+#: src/Navigation/Notifications/Repository/Notify.php:779
 #, php-format
 msgid "%1$s %2$s liked your post #%3$d"
 msgstr ""
 
-#: src/Navigation/Notifications/Repository/Notify.php:796
+#: src/Navigation/Notifications/Repository/Notify.php:782
 #, php-format
 msgid "%1$s %2$s liked your comment on #%3$d"
 msgstr ""
 
-#: src/Object/EMail/ItemCCEMail.php:42
+#: src/Object/EMail/ItemCCEMail.php:28
 #, php-format
 msgid "This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: src/Object/EMail/ItemCCEMail.php:44
+#: src/Object/EMail/ItemCCEMail.php:30
 #, php-format
 msgid "You may visit them online at %s"
 msgstr ""
 
-#: src/Object/EMail/ItemCCEMail.php:45
+#: src/Object/EMail/ItemCCEMail.php:31
 msgid "Please contact the sender by replying to this post if you do not wish to receive these messages."
 msgstr ""
 
-#: src/Object/EMail/ItemCCEMail.php:49
+#: src/Object/EMail/ItemCCEMail.php:35
 #, php-format
 msgid "%s posted an update."
 msgstr ""
 
-#: src/Object/Post.php:138
+#: src/Object/Post.php:124
 msgid "Private Message"
 msgstr ""
 
-#: src/Object/Post.php:142
+#: src/Object/Post.php:128
 msgid "Public Message"
 msgstr ""
 
-#: src/Object/Post.php:146
+#: src/Object/Post.php:132
 msgid "Unlisted Message"
 msgstr ""
 
-#: src/Object/Post.php:182
+#: src/Object/Post.php:168
 msgid "This entry was edited"
 msgstr ""
 
-#: src/Object/Post.php:210
+#: src/Object/Post.php:196
 msgid "Connector Message"
 msgstr ""
 
-#: src/Object/Post.php:239 src/Object/Post.php:241
+#: src/Object/Post.php:225 src/Object/Post.php:227
 msgid "Edit"
 msgstr ""
 
-#: src/Object/Post.php:275
+#: src/Object/Post.php:261
 msgid "Delete globally"
 msgstr ""
 
-#: src/Object/Post.php:275
+#: src/Object/Post.php:261
 msgid "Remove locally"
 msgstr ""
 
-#: src/Object/Post.php:282
+#: src/Object/Post.php:268
 #, php-format
 msgid "Block %s"
 msgstr ""
 
-#: src/Object/Post.php:287
+#: src/Object/Post.php:273
 #, php-format
 msgid "Ignore %s"
 msgstr ""
 
-#: src/Object/Post.php:292
+#: src/Object/Post.php:278
 #, php-format
 msgid "Collapse %s"
 msgstr ""
 
-#: src/Object/Post.php:296
+#: src/Object/Post.php:282
 msgid "Report post"
 msgstr ""
 
-#: src/Object/Post.php:307
+#: src/Object/Post.php:293
 msgid "Save to folder"
 msgstr ""
 
-#: src/Object/Post.php:347
+#: src/Object/Post.php:333
 msgid "I will attend"
 msgstr ""
 
-#: src/Object/Post.php:347
+#: src/Object/Post.php:333
 msgid "I will not attend"
 msgstr ""
 
-#: src/Object/Post.php:347
+#: src/Object/Post.php:333
 msgid "I might attend"
 msgstr ""
 
-#: src/Object/Post.php:394
+#: src/Object/Post.php:380
 msgid "Ignore thread"
 msgstr ""
 
-#: src/Object/Post.php:395
+#: src/Object/Post.php:381
 msgid "Unignore thread"
 msgstr ""
 
-#: src/Object/Post.php:396
+#: src/Object/Post.php:382
 msgid "Toggle ignore status"
 msgstr ""
 
-#: src/Object/Post.php:406
+#: src/Object/Post.php:392
 msgid "Add star"
 msgstr ""
 
-#: src/Object/Post.php:407
+#: src/Object/Post.php:393
 msgid "Remove star"
 msgstr ""
 
-#: src/Object/Post.php:408
+#: src/Object/Post.php:394
 msgid "Toggle star status"
 msgstr ""
 
-#: src/Object/Post.php:419
+#: src/Object/Post.php:405
 msgid "Pin"
 msgstr ""
 
-#: src/Object/Post.php:420
+#: src/Object/Post.php:406
 msgid "Unpin"
 msgstr ""
 
-#: src/Object/Post.php:421
+#: src/Object/Post.php:407
 msgid "Toggle pin status"
 msgstr ""
 
-#: src/Object/Post.php:424
+#: src/Object/Post.php:410
 msgid "Pinned"
 msgstr ""
 
-#: src/Object/Post.php:429
+#: src/Object/Post.php:415
 msgid "Add tag"
 msgstr ""
 
-#: src/Object/Post.php:444
+#: src/Object/Post.php:430
 msgid "Quote share this"
 msgstr ""
 
-#: src/Object/Post.php:444
+#: src/Object/Post.php:430
 msgid "Quote Share"
 msgstr ""
 
-#: src/Object/Post.php:447
+#: src/Object/Post.php:433
 msgid "Reshare this"
 msgstr ""
 
-#: src/Object/Post.php:447
+#: src/Object/Post.php:433
 msgid "Reshare"
 msgstr ""
 
-#: src/Object/Post.php:448
+#: src/Object/Post.php:434
 msgid "Cancel your Reshare"
 msgstr ""
 
-#: src/Object/Post.php:448
+#: src/Object/Post.php:434
 msgid "Unshare"
 msgstr ""
 
-#: src/Object/Post.php:492
+#: src/Object/Post.php:478
 #, php-format
 msgid "%s (Received %s)"
 msgstr ""
 
-#: src/Object/Post.php:498
+#: src/Object/Post.php:484
 msgid "Comment this item on your system"
 msgstr ""
 
-#: src/Object/Post.php:498
+#: src/Object/Post.php:484
 msgid "Remote comment"
 msgstr ""
 
-#: src/Object/Post.php:520
+#: src/Object/Post.php:506
 msgid "Share via ..."
 msgstr ""
 
-#: src/Object/Post.php:520
+#: src/Object/Post.php:506
 msgid "Share via external services"
 msgstr ""
 
-#: src/Object/Post.php:527
+#: src/Object/Post.php:513
 msgid "Unknown parent"
 msgstr ""
 
-#: src/Object/Post.php:531
+#: src/Object/Post.php:517
 #, php-format
 msgid "in reply to %s"
 msgstr ""
 
-#: src/Object/Post.php:533
+#: src/Object/Post.php:519
 msgid "Parent is probably private or not federated."
 msgstr ""
 
-#: src/Object/Post.php:557
+#: src/Object/Post.php:543
 msgid "to"
 msgstr ""
 
-#: src/Object/Post.php:558
+#: src/Object/Post.php:544
 msgid "via"
 msgstr ""
 
-#: src/Object/Post.php:559
+#: src/Object/Post.php:545
 msgid "Wall-to-Wall"
 msgstr ""
 
-#: src/Object/Post.php:560
+#: src/Object/Post.php:546
 msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: src/Object/Post.php:613
+#: src/Object/Post.php:599
 #, php-format
 msgid "Reply to %s"
 msgstr ""
 
-#: src/Object/Post.php:616
+#: src/Object/Post.php:602
 msgid "More"
 msgstr ""
 
-#: src/Object/Post.php:635
+#: src/Object/Post.php:621
 msgid "Notifier task is pending"
 msgstr ""
 
-#: src/Object/Post.php:636
+#: src/Object/Post.php:622
 msgid "Delivery to remote servers is pending"
 msgstr ""
 
-#: src/Object/Post.php:637
+#: src/Object/Post.php:623
 msgid "Delivery to remote servers is underway"
 msgstr ""
 
-#: src/Object/Post.php:638
+#: src/Object/Post.php:624
 msgid "Delivery to remote servers is mostly done"
 msgstr ""
 
-#: src/Object/Post.php:639
+#: src/Object/Post.php:625
 msgid "Delivery to remote servers is done"
 msgstr ""
 
-#: src/Object/Post.php:661
+#: src/Object/Post.php:647
 #, php-format
 msgid "%d comment"
 msgid_plural "%d comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: src/Object/Post.php:662
+#: src/Object/Post.php:648
 msgid "Show more"
 msgstr ""
 
-#: src/Object/Post.php:663
+#: src/Object/Post.php:649
 msgid "Show fewer"
 msgstr ""
 
-#: src/Object/Post.php:700
+#: src/Object/Post.php:686
 #, php-format
 msgid "Reshared by: %s"
 msgstr ""
 
-#: src/Object/Post.php:705
+#: src/Object/Post.php:691
 #, php-format
 msgid "Viewed by: %s"
 msgstr ""
 
-#: src/Object/Post.php:710
+#: src/Object/Post.php:696
 #, php-format
 msgid "Read by: %s"
 msgstr ""
 
-#: src/Object/Post.php:715
+#: src/Object/Post.php:701
 #, php-format
 msgid "Liked by: %s"
 msgstr ""
 
-#: src/Object/Post.php:720
+#: src/Object/Post.php:706
 #, php-format
 msgid "Disliked by: %s"
 msgstr ""
 
-#: src/Object/Post.php:725
+#: src/Object/Post.php:711
 #, php-format
 msgid "Attended by: %s"
 msgstr ""
 
-#: src/Object/Post.php:730
+#: src/Object/Post.php:716
 #, php-format
 msgid "Maybe attended by: %s"
 msgstr ""
 
-#: src/Object/Post.php:735
+#: src/Object/Post.php:721
 #, php-format
 msgid "Not attended by: %s"
 msgstr ""
 
-#: src/Object/Post.php:740
+#: src/Object/Post.php:726
 #, php-format
 msgid "Commented by: %s"
 msgstr ""
 
-#: src/Object/Post.php:745
+#: src/Object/Post.php:731
 #, php-format
 msgid "Reacted with %s by: %s"
 msgstr ""
 
-#: src/Object/Post.php:768
+#: src/Object/Post.php:754
 #, php-format
 msgid "Quote shared by: %s"
 msgstr ""
 
-#: src/Protocol/ActivityPub/Receiver.php:571
+#: src/Protocol/ActivityPub/Receiver.php:557
 msgid "Chat"
 msgstr ""
 
-#: src/Protocol/Delivery.php:544
+#: src/Protocol/Delivery.php:530
 msgid "(no subject)"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1378
 #, php-format
 msgid "%s is now following %s."
 msgstr ""
 
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1379
 msgid "following"
 msgstr ""
 
-#: src/Protocol/OStatus.php:1396
+#: src/Protocol/OStatus.php:1382
 #, php-format
 msgid "%s stopped following %s."
 msgstr ""
 
-#: src/Protocol/OStatus.php:1397
+#: src/Protocol/OStatus.php:1383
 msgid "stopped following"
 msgstr ""
 
-#: src/Render/FriendicaSmartyEngine.php:56
+#: src/Render/FriendicaSmartyEngine.php:42
 #, php-format
 msgid "The folder %s must be writable by webserver."
 msgstr ""
 
-#: src/Security/Authentication.php:214
+#: src/Security/Authentication.php:200
 msgid "Login failed."
 msgstr ""
 
-#: src/Security/Authentication.php:259
+#: src/Security/Authentication.php:245
 msgid "Login failed. Please check your credentials."
 msgstr ""
 
-#: src/Security/Authentication.php:373
+#: src/Security/Authentication.php:359
 #, php-format
 msgid "Welcome %s"
 msgstr ""
 
-#: src/Security/Authentication.php:374
+#: src/Security/Authentication.php:360
 msgid "Please upload a profile photo."
 msgstr ""
 
-#: src/Security/OpenWebAuth.php:163
+#: src/Security/OpenWebAuth.php:149
 #, php-format
 msgid "OpenWebAuth: %1$s welcomes %2$s"
 msgstr ""
 
-#: src/Util/EMailer/MailBuilder.php:260
+#: src/Util/EMailer/MailBuilder.php:246
 msgid "Friendica Notification"
 msgstr ""
 
-#: src/Util/EMailer/NotifyMailBuilder.php:78
-#: src/Util/EMailer/SystemMailBuilder.php:54
+#: src/Util/EMailer/NotifyMailBuilder.php:64
+#: src/Util/EMailer/SystemMailBuilder.php:40
 #, php-format
 msgid "%1$s, %2$s Administrator"
 msgstr ""
 
-#: src/Util/EMailer/NotifyMailBuilder.php:80
-#: src/Util/EMailer/SystemMailBuilder.php:56
+#: src/Util/EMailer/NotifyMailBuilder.php:66
+#: src/Util/EMailer/SystemMailBuilder.php:42
 #, php-format
 msgid "%s Administrator"
 msgstr ""
 
-#: src/Util/EMailer/NotifyMailBuilder.php:193
-#: src/Util/EMailer/NotifyMailBuilder.php:217
-#: src/Util/EMailer/SystemMailBuilder.php:101
-#: src/Util/EMailer/SystemMailBuilder.php:118
+#: src/Util/EMailer/NotifyMailBuilder.php:179
+#: src/Util/EMailer/NotifyMailBuilder.php:203
+#: src/Util/EMailer/SystemMailBuilder.php:87
+#: src/Util/EMailer/SystemMailBuilder.php:104
 msgid "thanks"
 msgstr ""
 
-#: src/Util/Temporal.php:172
+#: src/Util/Temporal.php:158
 msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: src/Util/Temporal.php:280
+#: src/Util/Temporal.php:266
 #, php-format
 msgid "Time zone: <strong>%s</strong> <a href=\"%s\">Change in Settings</a>"
 msgstr ""
 
-#: src/Util/Temporal.php:320 src/Util/Temporal.php:329
+#: src/Util/Temporal.php:306 src/Util/Temporal.php:315
 msgid "never"
 msgstr ""
 
-#: src/Util/Temporal.php:343
+#: src/Util/Temporal.php:329
 msgid "less than a second ago"
 msgstr ""
 
-#: src/Util/Temporal.php:352
+#: src/Util/Temporal.php:338
 msgid "year"
 msgstr ""
 
-#: src/Util/Temporal.php:352
+#: src/Util/Temporal.php:338
 msgid "years"
 msgstr ""
 
-#: src/Util/Temporal.php:353
+#: src/Util/Temporal.php:339
 msgid "months"
 msgstr ""
 
-#: src/Util/Temporal.php:354
+#: src/Util/Temporal.php:340
 msgid "weeks"
 msgstr ""
 
-#: src/Util/Temporal.php:355
+#: src/Util/Temporal.php:341
 msgid "days"
 msgstr ""
 
-#: src/Util/Temporal.php:356
+#: src/Util/Temporal.php:342
 msgid "hour"
 msgstr ""
 
-#: src/Util/Temporal.php:356
+#: src/Util/Temporal.php:342
 msgid "hours"
 msgstr ""
 
-#: src/Util/Temporal.php:357
+#: src/Util/Temporal.php:343
 msgid "minute"
 msgstr ""
 
-#: src/Util/Temporal.php:357
+#: src/Util/Temporal.php:343
 msgid "minutes"
 msgstr ""
 
-#: src/Util/Temporal.php:358
+#: src/Util/Temporal.php:344
 msgid "second"
 msgstr ""
 
-#: src/Util/Temporal.php:358
+#: src/Util/Temporal.php:344
 msgid "seconds"
 msgstr ""
 
-#: src/Util/Temporal.php:367
+#: src/Util/Temporal.php:353
 #, php-format
 msgid "in %1$d %2$s"
 msgstr ""
 
-#: src/Util/Temporal.php:370
+#: src/Util/Temporal.php:356
 #, php-format
 msgid "%1$d %2$s ago"
 msgstr ""
 
-#: src/Worker/PushSubscription.php:110
+#: src/Worker/PushSubscription.php:96
 msgid "Notification from Friendica"
 msgstr ""
 
-#: src/Worker/PushSubscription.php:111
+#: src/Worker/PushSubscription.php:97
 msgid "Empty Post"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:68
+#: view/theme/duepuntozero/config.php:56
 msgid "default"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:69
+#: view/theme/duepuntozero/config.php:57
 msgid "greenzero"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:70
+#: view/theme/duepuntozero/config.php:58
 msgid "purplezero"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:71
+#: view/theme/duepuntozero/config.php:59
 msgid "easterbunny"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:72
+#: view/theme/duepuntozero/config.php:60
 msgid "darkzero"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:73
+#: view/theme/duepuntozero/config.php:61
 msgid "comix"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:74
+#: view/theme/duepuntozero/config.php:62
 msgid "slackr"
 msgstr ""
 
-#: view/theme/duepuntozero/config.php:87
+#: view/theme/duepuntozero/config.php:75
 msgid "Variations"
 msgstr ""
 
-#: view/theme/frio/config.php:146
+#: view/theme/frio/config.php:134
 msgid "Note"
 msgstr ""
 
-#: view/theme/frio/config.php:146
+#: view/theme/frio/config.php:134
 msgid "Check image permissions if all users are allowed to see the image"
 msgstr ""
 
-#: view/theme/frio/config.php:152
+#: view/theme/frio/config.php:140
 msgid "Appearance"
 msgstr ""
 
-#: view/theme/frio/config.php:153
+#: view/theme/frio/config.php:141
 msgid "Accent color"
 msgstr ""
 
-#: view/theme/frio/config.php:153
+#: view/theme/frio/config.php:141
 msgid "Blue"
 msgstr ""
 
-#: view/theme/frio/config.php:153
+#: view/theme/frio/config.php:141
 msgid "Red"
 msgstr ""
 
-#: view/theme/frio/config.php:153
+#: view/theme/frio/config.php:141
 msgid "Purple"
 msgstr ""
 
-#: view/theme/frio/config.php:153
+#: view/theme/frio/config.php:141
 msgid "Green"
 msgstr ""
 
-#: view/theme/frio/config.php:153
+#: view/theme/frio/config.php:141
 msgid "Pink"
 msgstr ""
 
-#: view/theme/frio/config.php:154
+#: view/theme/frio/config.php:142
 msgid "Copy or paste schemestring"
 msgstr ""
 
-#: view/theme/frio/config.php:154
+#: view/theme/frio/config.php:142
 msgid "You can copy this string to share your theme with others. Pasting here applies the schemestring"
 msgstr ""
 
-#: view/theme/frio/config.php:155
+#: view/theme/frio/config.php:143
 msgid "Navigation bar background color"
 msgstr ""
 
-#: view/theme/frio/config.php:156
+#: view/theme/frio/config.php:144
 msgid "Navigation bar icon color "
 msgstr ""
 
-#: view/theme/frio/config.php:157
+#: view/theme/frio/config.php:145
 msgid "Link color"
 msgstr ""
 
-#: view/theme/frio/config.php:158
+#: view/theme/frio/config.php:146
 msgid "Set the background color"
 msgstr ""
 
-#: view/theme/frio/config.php:159
+#: view/theme/frio/config.php:147
 msgid "Content background opacity"
 msgstr ""
 
-#: view/theme/frio/config.php:160
+#: view/theme/frio/config.php:148
 msgid "Set the background image"
 msgstr ""
 
-#: view/theme/frio/config.php:161
+#: view/theme/frio/config.php:149
 msgid "Background image style"
 msgstr ""
 
-#: view/theme/frio/config.php:164
+#: view/theme/frio/config.php:152
 msgid "Always open Compose page"
 msgstr ""
 
-#: view/theme/frio/config.php:164
+#: view/theme/frio/config.php:152
 msgid "The New Post button always open the <a href=\"/compose\">Compose page</a> instead of the modal form. When this is disabled, the Compose page can be accessed with a middle click on the link or from the modal."
 msgstr ""
 
-#: view/theme/frio/config.php:168
+#: view/theme/frio/config.php:156
 msgid "Login page background image"
 msgstr ""
 
-#: view/theme/frio/config.php:172
+#: view/theme/frio/config.php:160
 msgid "Login page background color"
 msgstr ""
 
-#: view/theme/frio/config.php:172
+#: view/theme/frio/config.php:160
 msgid "Leave background image and color empty for theme defaults"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:39
+#: view/theme/frio/php/Image.php:27
 msgid "Top Banner"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:39
+#: view/theme/frio/php/Image.php:27
 msgid "Resize image to the width of the screen and show background color below on long pages."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:40
+#: view/theme/frio/php/Image.php:28
 msgid "Full screen"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:40
+#: view/theme/frio/php/Image.php:28
 msgid "Resize image to fill entire screen, clipping either the right or the bottom."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:41
+#: view/theme/frio/php/Image.php:29
 msgid "Single row mosaic"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:41
+#: view/theme/frio/php/Image.php:29
 msgid "Resize image to repeat it on a single row, either vertical or horizontal."
 msgstr ""
 
-#: view/theme/frio/php/Image.php:42
+#: view/theme/frio/php/Image.php:30
 msgid "Mosaic"
 msgstr ""
 
-#: view/theme/frio/php/Image.php:42
+#: view/theme/frio/php/Image.php:30
 msgid "Repeat image to fill the screen."
 msgstr ""
 
-#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40
+#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28
 msgid "Skip to main content"
 msgstr ""
 
-#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75
+#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63
 msgid "Back to top"
 msgstr ""
 
-#: view/theme/frio/php/scheme.php:105
+#: view/theme/frio/php/scheme.php:93
 msgid "Light"
 msgstr ""
 
-#: view/theme/frio/php/scheme.php:106
+#: view/theme/frio/php/scheme.php:94
 msgid "Dark"
 msgstr ""
 
-#: view/theme/frio/php/scheme.php:107
+#: view/theme/frio/php/scheme.php:95
 msgid "Black"
 msgstr ""
 
-#: view/theme/frio/php/scheme.php:118
+#: view/theme/frio/php/scheme.php:106
 msgid "Custom"
 msgstr ""
 
-#: view/theme/frio/theme.php:214
+#: view/theme/frio/theme.php:202
 msgid "Guest"
 msgstr ""
 
-#: view/theme/frio/theme.php:217
+#: view/theme/frio/theme.php:205
 msgid "Visitor"
 msgstr ""
 
-#: view/theme/quattro/config.php:89
+#: view/theme/quattro/config.php:77
 msgid "Alignment"
 msgstr ""
 
-#: view/theme/quattro/config.php:89
+#: view/theme/quattro/config.php:77
 msgid "Left"
 msgstr ""
 
-#: view/theme/quattro/config.php:89
+#: view/theme/quattro/config.php:77
 msgid "Center"
 msgstr ""
 
-#: view/theme/quattro/config.php:90
+#: view/theme/quattro/config.php:78
 msgid "Color scheme"
 msgstr ""
 
-#: view/theme/quattro/config.php:91
+#: view/theme/quattro/config.php:79
 msgid "Posts font size"
 msgstr ""
 
-#: view/theme/quattro/config.php:92
+#: view/theme/quattro/config.php:80
 msgid "Textareas font size"
 msgstr ""
 
-#: view/theme/vier/config.php:91
+#: view/theme/vier/config.php:79
 msgid "Comma separated list of helper groups"
 msgstr ""
 
-#: view/theme/vier/config.php:131
+#: view/theme/vier/config.php:119
 msgid "don't show"
 msgstr ""
 
-#: view/theme/vier/config.php:131
+#: view/theme/vier/config.php:119
 msgid "show"
 msgstr ""
 
-#: view/theme/vier/config.php:137
+#: view/theme/vier/config.php:125
 msgid "Set style"
 msgstr ""
 
-#: view/theme/vier/config.php:138
+#: view/theme/vier/config.php:126
 msgid "Community Pages"
 msgstr ""
 
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136
 msgid "Community Profiles"
 msgstr ""
 
-#: view/theme/vier/config.php:140
+#: view/theme/vier/config.php:128
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
+#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307
 msgid "Connect Services"
 msgstr ""
 
-#: view/theme/vier/config.php:142
+#: view/theme/vier/config.php:130
 msgid "Find Friends"
 msgstr ""
 
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
+#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163
 msgid "Last users"
 msgstr ""
 
-#: view/theme/vier/theme.php:234
+#: view/theme/vier/theme.php:222
 msgid "Quick Start"
 msgstr ""