]> git.mxchange.org Git - friendica.git/commitdiff
All references to boot.php are now removed
authorMichael <heluecht@pirati.ca>
Wed, 19 Oct 2022 20:38:25 +0000 (20:38 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 19 Oct 2022 20:38:25 +0000 (20:38 +0000)
16 files changed:
Doxyfile
bin/daemon.php
bin/worker.php
boot.php [deleted file]
composer.json
doc/Composer.md
doc/Developers-Intro.md
doc/autoloader.md
mods/release-list-include.txt
src/Console/Extract.php
src/Core/Theme.php
src/Module/Admin/Site.php
src/Module/BaseAdmin.php
src/Module/Group.php
view/lang/C/messages.po
view/templates/settings/pagetypes.tpl

index 37855ceece7a5f1d9ff938d0a062490afc860982..dc89acd44ddc07bc2a3d6627ee734b20a03de972 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -1,4 +1,4 @@
-INPUT = README.md index.php boot.php update.php bin/ mod/ include/ view/ src/ VERSION
+INPUT = README.md index.php update.php bin/ mod/ include/ view/ src/ VERSION
 RECURSIVE = YES
 PROJECT_NAME = "Friendica"
 PROJECT_LOGO = images/friendica-64.png
index 880115d0d01fb8a8ff94b103c3288d115062d483..d5ef02a8ece961ce73ffb195afaeaa78d940cca6 100755 (executable)
@@ -45,7 +45,7 @@ $longopts = ['foreground'];
 $options = getopt($shortopts, $longopts);
 
 // Ensure that daemon.php is executed from the base path of the installation
-if (!file_exists('boot.php') && (sizeof($_SERVER['argv']) != 0)) {
+if (!file_exists('index.php') && (sizeof($_SERVER['argv']) != 0)) {
        $directory = dirname($_SERVER['argv'][0]);
 
        if (substr($directory, 0, 1) != '/') {
index 1251057b0f07525cfefdcf1f4454bd561c2172fb..084ad28979b667dacbfa8bd4600c764e27a8148f 100755 (executable)
@@ -40,7 +40,7 @@ $longopts = ['spawn', 'no_cron'];
 $options = getopt($shortopts, $longopts);
 
 // Ensure that worker.php is executed from the base path of the installation
-if (!file_exists("boot.php") && (sizeof($_SERVER["argv"]) != 0)) {
+if (!file_exists("index.php") && (sizeof($_SERVER["argv"]) != 0)) {
        $directory = dirname($_SERVER["argv"][0]);
 
        if (substr($directory, 0, 1) != '/') {
diff --git a/boot.php b/boot.php
deleted file mode 100644 (file)
index 0257900..0000000
--- a/boot.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * @copyright Copyright (C) 2010-2022, the Friendica project
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program.  If not, see <https://www.gnu.org/licenses/>.
- *
- * Friendica is a communications platform for integrated social communications
- * utilising decentralised communications and linkage to several indie social
- * projects - as well as popular mainstream providers.
- *
- * Our mission is to free our friends and families from the clutches of
- * data-harvesting corporations, and pave the way to a future where social
- * communications are free and open and flow between alternate providers as
- * easily as email does today.
- */
index 959e8de31ca93eb41f00c8993fc183d09f7c1143..43cb7a3fd0a2c8e9b471a19f0f8e14cffb1f73ae 100644 (file)
                "psr-4": {
                        "Friendica\\": "src/",
                        "Friendica\\Addon\\": "addon/"
-               },
-               "files": [
-                       "boot.php"
-               ]
+               }
        },
        "autoload-dev": {
                "psr-4": {
index 306d0fa89db431b2ec8b8cdac7e8c7fdc151ca4b..7b62ba6cf4765dfdf161cb07c296a7225daba956 100644 (file)
@@ -6,7 +6,7 @@ Using Composer
 
 Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
 
-It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`.
+It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application.
 
 * [Class autoloading](help/autoloader)
 
index 2cfd15f2a388bdfd4eb1b945dab44629437883a8..7a6e8861ce5e27ddda141be3beeb5e296bd0ce8b 100644 (file)
@@ -47,7 +47,7 @@ Friendica uses an implementation of [Domain-Driven-Design](help/Developer-Domain
 
 Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
 
-It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`.
+It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application.
 
 If you want to have git automatically update the dependencies with composer, you can use the `post-merge` [git-hook](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks) with a script similar to this one:
 
index e1588688f187443066396031e2be023205957efe..954c28813c870593834b54761222d3ef19aac688 100644 (file)
@@ -6,7 +6,7 @@ Autoloader with Composer
 
 Friendica uses [Composer](https://getcomposer.org) to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.
 
-It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application through `boot.php`.
+It's a command-line tool that downloads required libraries into the `vendor` folder and makes any namespaced class in `src` available through the whole application.
 
 * [Using Composer](help/Composer)
 
@@ -39,7 +39,6 @@ Namespaces are useful to keep classes separated and avoid names conflicts (could
 
 Let's say now that you need to load some items in a view, maybe in a fictional `mod/network.php`.
 In order for the Composer autoloader to work, it must first be included.
-In Friendica this is already done at the top of `boot.php`, with `require_once('vendor/autoload.php');`.
 
 The code will be something like:
 
index 24eff91c2888d74975e77aafc931a19966a3cbf8..ebe1cccc7624ae263ce8811a938f59ab75c2bdd5 100644 (file)
@@ -19,7 +19,6 @@ static/
 vendor/
 view/
 .htaccess-dist
-boot.php
 CHANGELOG
 CREDITS.txt
 database.sql
index 17d142039ecccde6fd769ce3645aab22a4bfdf07..23b2c3c546865ffe36b5361f801d8f46def02289 100644 (file)
@@ -75,7 +75,7 @@ HELP;
                $arr = [];
 
                $files = array_merge(
-                       ['index.php', 'boot.php'],
+                       ['index.php'],
                        glob('mod/*'),
                        glob('include/*'),
                        glob('addon/*/*'),
index 834787da69a504ace1d6d91e7854fe8e0f2b5f10..4b883a63410c080139a3f59be48aefd6c702a120 100644 (file)
@@ -25,8 +25,6 @@ use Friendica\DI;
 use Friendica\Model\Profile;
 use Friendica\Util\Strings;
 
-require_once 'boot.php';
-
 /**
  * Some functions to handle themes
  */
index 011e3c411de975c162340c445cf3e5397821ef24..3a0ac5d003cba2a8f7421fda85d8d2040b77c689 100644 (file)
@@ -38,8 +38,6 @@ use Friendica\Protocol\Relay;
 use Friendica\Util\BasePath;
 use Friendica\Util\EMailer\MailBuilder;
 
-require_once __DIR__ . '/../../../boot.php';
-
 class Site extends BaseAdmin
 {
        protected function post(array $request = [])
index f80323ca596448793715190e1dba6d75795e1dcb..89357d3a2ac5b61947f2569d8c4961b7ee799f96 100644 (file)
@@ -28,8 +28,6 @@ use Friendica\Core\Session;
 use Friendica\DI;
 use Friendica\Network\HTTPException;
 
-require_once 'boot.php';
-
 /**
  * This abstract module is meant to be extended by all modules that are reserved to administrator users.
  *
index a583c585a1aba0356c8f7f4724fe27c0249fd9a3..930e885c587d7a384610189137691ab011aa1590 100644 (file)
@@ -29,8 +29,6 @@ use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Model;
 
-require_once 'boot.php';
-
 class Group extends BaseModule
 {
        protected function post(array $request = [])
index 5694c785ee70326cd0b889d8eda6dc4fbb3f59df..6c9478188c6606ac6592903f5c280a54dff4dd47 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 2022.12-dev\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-19 08:56+0000\n"
+"POT-Creation-Date: 2022-10-19 20:30+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,7 +19,7 @@ msgstr ""
 
 
 #: mod/cal.php:46 mod/cal.php:50 mod/follow.php:40 mod/redir.php:36
-#: mod/redir.php:177 src/Module/Conversation/Community.php:196
+#: mod/redir.php:177 src/Module/Conversation/Community.php:194
 #: src/Module/Debug/ItemBody.php:39 src/Module/Diaspora/Receive.php:57
 #: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:42
 #: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
@@ -105,7 +105,7 @@ msgid "calendar"
 msgstr ""
 
 #: mod/display.php:143 mod/photos.php:798
-#: src/Module/Conversation/Community.php:190 src/Module/Directory.php:49
+#: src/Module/Conversation/Community.php:188 src/Module/Directory.php:49
 #: src/Module/Search/Index.php:65
 msgid "Public access denied."
 msgstr ""
@@ -129,9 +129,9 @@ msgstr ""
 #: mod/wallmessage.php:37 mod/wallmessage.php:56 mod/wallmessage.php:90
 #: mod/wallmessage.php:110 src/Module/Attach.php:56 src/Module/BaseApi.php:94
 #: src/Module/BaseNotifications.php:98 src/Module/Contact/Advanced.php:61
-#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:39
-#: src/Module/FriendSuggest.php:58 src/Module/Group.php:43
-#: src/Module/Group.php:86 src/Module/Invite.php:43 src/Module/Invite.php:132
+#: src/Module/Delegation.php:119 src/Module/FollowConfirm.php:39
+#: src/Module/FriendSuggest.php:58 src/Module/Group.php:41
+#: src/Module/Group.php:84 src/Module/Invite.php:43 src/Module/Invite.php:132
 #: src/Module/Notifications/Notification.php:77
 #: src/Module/Notifications/Notification.php:108
 #: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56
@@ -164,25 +164,25 @@ msgstr ""
 msgid "Save"
 msgstr ""
 
-#: mod/editpost.php:93 mod/photos.php:1334 src/Content/Conversation.php:340
+#: mod/editpost.php:93 mod/photos.php:1334 src/Content/Conversation.php:342
 #: src/Object/Post.php:993
 msgid "Loading..."
 msgstr ""
 
 #: mod/editpost.php:94 mod/message.php:202 mod/message.php:358
-#: mod/wallmessage.php:140 src/Content/Conversation.php:341
+#: mod/wallmessage.php:140 src/Content/Conversation.php:343
 msgid "Upload photo"
 msgstr ""
 
-#: mod/editpost.php:95 src/Content/Conversation.php:342
+#: mod/editpost.php:95 src/Content/Conversation.php:344
 msgid "upload photo"
 msgstr ""
 
-#: mod/editpost.php:96 src/Content/Conversation.php:343
+#: mod/editpost.php:96 src/Content/Conversation.php:345
 msgid "Attach file"
 msgstr ""
 
-#: mod/editpost.php:97 src/Content/Conversation.php:344
+#: mod/editpost.php:97 src/Content/Conversation.php:346
 msgid "attach file"
 msgstr ""
 
@@ -211,31 +211,31 @@ msgstr ""
 msgid "audio link"
 msgstr ""
 
-#: mod/editpost.php:104 src/Content/Conversation.php:354
+#: mod/editpost.php:104 src/Content/Conversation.php:356
 #: src/Module/Item/Compose.php:201
 msgid "Set your location"
 msgstr ""
 
-#: mod/editpost.php:105 src/Content/Conversation.php:355
+#: mod/editpost.php:105 src/Content/Conversation.php:357
 msgid "set location"
 msgstr ""
 
-#: mod/editpost.php:106 src/Content/Conversation.php:356
+#: mod/editpost.php:106 src/Content/Conversation.php:358
 msgid "Clear browser location"
 msgstr ""
 
-#: mod/editpost.php:107 src/Content/Conversation.php:357
+#: mod/editpost.php:107 src/Content/Conversation.php:359
 msgid "clear location"
 msgstr ""
 
 #: mod/editpost.php:108 mod/message.php:204 mod/message.php:361
-#: mod/photos.php:1485 mod/wallmessage.php:142 src/Content/Conversation.php:370
-#: src/Content/Conversation.php:716 src/Module/Item/Compose.php:205
+#: mod/photos.php:1485 mod/wallmessage.php:142 src/Content/Conversation.php:372
+#: src/Content/Conversation.php:718 src/Module/Item/Compose.php:205
 #: src/Object/Post.php:538
 msgid "Please wait"
 msgstr ""
 
-#: mod/editpost.php:109 src/Content/Conversation.php:371
+#: mod/editpost.php:109 src/Content/Conversation.php:373
 msgid "Permission settings"
 msgstr ""
 
@@ -243,16 +243,16 @@ msgstr ""
 msgid "CC: email addresses"
 msgstr ""
 
-#: mod/editpost.php:118 src/Content/Conversation.php:381
+#: mod/editpost.php:118 src/Content/Conversation.php:383
 msgid "Public post"
 msgstr ""
 
-#: mod/editpost.php:121 src/Content/Conversation.php:359
+#: mod/editpost.php:121 src/Content/Conversation.php:361
 #: src/Module/Item/Compose.php:206
 msgid "Set title"
 msgstr ""
 
-#: mod/editpost.php:123 src/Content/Conversation.php:361
+#: mod/editpost.php:123 src/Content/Conversation.php:363
 #: src/Module/Item/Compose.php:207
 msgid "Categories (comma-separated list)"
 msgstr ""
@@ -262,71 +262,71 @@ msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
 #: mod/editpost.php:129 mod/events.php:515 mod/photos.php:1333
-#: mod/photos.php:1389 mod/photos.php:1463 src/Content/Conversation.php:385
+#: mod/photos.php:1389 mod/photos.php:1463 src/Content/Conversation.php:387
 #: src/Module/Item/Compose.php:200 src/Object/Post.php:1003
 msgid "Preview"
 msgstr ""
 
 #: mod/editpost.php:131 mod/fbrowser.php:120 mod/fbrowser.php:147
 #: mod/follow.php:145 mod/photos.php:1000 mod/photos.php:1101 mod/tagrm.php:36
-#: mod/tagrm.php:128 mod/unfollow.php:98 src/Content/Conversation.php:388
+#: mod/tagrm.php:128 mod/unfollow.php:98 src/Content/Conversation.php:390
 #: src/Module/Contact/Revoke.php:110 src/Module/RemoteFollow.php:128
 #: src/Module/Security/TwoFactor/SignOut.php:127
 msgid "Cancel"
 msgstr ""
 
-#: mod/editpost.php:135 src/Content/Conversation.php:345
+#: mod/editpost.php:135 src/Content/Conversation.php:347
 #: src/Module/Item/Compose.php:191 src/Object/Post.php:994
 msgid "Bold"
 msgstr ""
 
-#: mod/editpost.php:136 src/Content/Conversation.php:346
+#: mod/editpost.php:136 src/Content/Conversation.php:348
 #: src/Module/Item/Compose.php:192 src/Object/Post.php:995
 msgid "Italic"
 msgstr ""
 
-#: mod/editpost.php:137 src/Content/Conversation.php:347
+#: mod/editpost.php:137 src/Content/Conversation.php:349
 #: src/Module/Item/Compose.php:193 src/Object/Post.php:996
 msgid "Underline"
 msgstr ""
 
-#: mod/editpost.php:138 src/Content/Conversation.php:348
+#: mod/editpost.php:138 src/Content/Conversation.php:350
 #: src/Module/Item/Compose.php:194 src/Object/Post.php:997
 msgid "Quote"
 msgstr ""
 
-#: mod/editpost.php:139 src/Content/Conversation.php:349
+#: mod/editpost.php:139 src/Content/Conversation.php:351
 #: src/Module/Item/Compose.php:195 src/Object/Post.php:998
 msgid "Code"
 msgstr ""
 
-#: mod/editpost.php:140 src/Content/Conversation.php:351
+#: mod/editpost.php:140 src/Content/Conversation.php:353
 #: src/Module/Item/Compose.php:197 src/Object/Post.php:1000
 msgid "Link"
 msgstr ""
 
-#: mod/editpost.php:141 src/Content/Conversation.php:352
+#: mod/editpost.php:141 src/Content/Conversation.php:354
 #: src/Module/Item/Compose.php:198 src/Object/Post.php:1001
 msgid "Link or Media"
 msgstr ""
 
-#: mod/editpost.php:144 src/Content/Conversation.php:395
+#: mod/editpost.php:144 src/Content/Conversation.php:397
 #: src/Content/Widget/VCard.php:114 src/Model/Profile.php:466
 #: src/Module/Admin/Logs/View.php:93
 msgid "Message"
 msgstr ""
 
-#: mod/editpost.php:145 src/Content/Conversation.php:396
+#: mod/editpost.php:145 src/Content/Conversation.php:398
 #: src/Module/Settings/TwoFactor/Trusted.php:140
 msgid "Browser"
 msgstr ""
 
 #: mod/editpost.php:146 mod/events.php:520 mod/photos.php:935
-#: mod/photos.php:1287 src/Content/Conversation.php:372
+#: mod/photos.php:1287 src/Content/Conversation.php:374
 msgid "Permissions"
 msgstr ""
 
-#: mod/editpost.php:148 src/Content/Conversation.php:398
+#: mod/editpost.php:148 src/Content/Conversation.php:400
 msgid "Open Compose page"
 msgstr ""
 
@@ -412,7 +412,7 @@ msgstr ""
 #: src/Module/Debug/ActivityPubConversion.php:141
 #: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64
 #: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:52
-#: src/Module/Delegation.php:147 src/Module/FriendSuggest.php:146
+#: src/Module/Delegation.php:148 src/Module/FriendSuggest.php:146
 #: src/Module/Install.php:252 src/Module/Install.php:294
 #: src/Module/Install.php:331 src/Module/Invite.php:179
 #: src/Module/Item/Compose.php:190 src/Module/Profile/Profile.php:247
@@ -426,7 +426,7 @@ msgstr ""
 msgid "Basic"
 msgstr ""
 
-#: mod/events.php:519 src/Module/Admin/Site.php:439 src/Module/Contact.php:478
+#: mod/events.php:519 src/Module/Admin/Site.php:437 src/Module/Contact.php:478
 #: src/Module/Profile/Profile.php:249
 msgid "Advanced"
 msgstr ""
@@ -1080,11 +1080,11 @@ msgstr ""
 msgid "Comment"
 msgstr ""
 
-#: mod/photos.php:1420 src/Content/Conversation.php:632 src/Object/Post.php:256
+#: mod/photos.php:1420 src/Content/Conversation.php:634 src/Object/Post.php:256
 msgid "Select"
 msgstr ""
 
-#: mod/photos.php:1421 mod/settings.php:351 src/Content/Conversation.php:633
+#: mod/photos.php:1421 mod/settings.php:351 src/Content/Conversation.php:635
 #: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Blocked.php:141
 #: src/Module/Admin/Users/Index.php:154
 msgid "Delete"
@@ -1127,7 +1127,7 @@ msgstr ""
 #: src/Module/Contact/Posts.php:83 src/Module/Contact/Profile.php:143
 #: src/Module/Contact/Profile.php:148 src/Module/Contact/Profile.php:153
 #: src/Module/FriendSuggest.php:72 src/Module/FriendSuggest.php:110
-#: src/Module/Group.php:100 src/Module/Group.php:109
+#: src/Module/Group.php:98 src/Module/Group.php:107
 msgid "Contact not found."
 msgstr ""
 
@@ -1206,7 +1206,7 @@ msgstr ""
 #: mod/settings.php:206 mod/settings.php:238 mod/settings.php:269
 #: mod/settings.php:353 src/Module/Admin/Addons/Index.php:69
 #: src/Module/Admin/Features.php:87 src/Module/Admin/Logs/Settings.php:81
-#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113
+#: src/Module/Admin/Site.php:432 src/Module/Admin/Themes/Index.php:113
 #: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:564
 #: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:201
 msgid "Save Settings"
@@ -1921,258 +1921,258 @@ msgstr ""
 msgid "%s (via %s)"
 msgstr ""
 
-#: src/Content/Conversation.php:209
+#: src/Content/Conversation.php:211
 #, php-format
 msgid "%s likes this."
 msgstr ""
 
-#: src/Content/Conversation.php:212
+#: src/Content/Conversation.php:214
 #, php-format
 msgid "%s doesn't like this."
 msgstr ""
 
-#: src/Content/Conversation.php:215
+#: src/Content/Conversation.php:217
 #, php-format
 msgid "%s attends."
 msgstr ""
 
-#: src/Content/Conversation.php:218
+#: src/Content/Conversation.php:220
 #, php-format
 msgid "%s doesn't attend."
 msgstr ""
 
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:223
 #, php-format
 msgid "%s attends maybe."
 msgstr ""
 
-#: src/Content/Conversation.php:224 src/Content/Conversation.php:262
-#: src/Content/Conversation.php:876
+#: src/Content/Conversation.php:226 src/Content/Conversation.php:264
+#: src/Content/Conversation.php:878
 #, php-format
 msgid "%s reshared this."
 msgstr ""
 
-#: src/Content/Conversation.php:230
+#: src/Content/Conversation.php:232
 msgid "and"
 msgstr ""
 
-#: src/Content/Conversation.php:233
+#: src/Content/Conversation.php:235
 #, php-format
 msgid "and %d other people"
 msgstr ""
 
-#: src/Content/Conversation.php:241
+#: src/Content/Conversation.php:243
 #, php-format
 msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: src/Content/Conversation.php:242
+#: src/Content/Conversation.php:244
 #, php-format
 msgid "%s like this."
 msgstr ""
 
-#: src/Content/Conversation.php:245
+#: src/Content/Conversation.php:247
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: src/Content/Conversation.php:246
+#: src/Content/Conversation.php:248
 #, php-format
 msgid "%s don't like this."
 msgstr ""
 
-#: src/Content/Conversation.php:249
+#: src/Content/Conversation.php:251
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: src/Content/Conversation.php:250
+#: src/Content/Conversation.php:252
 #, php-format
 msgid "%s attend."
 msgstr ""
 
-#: src/Content/Conversation.php:253
+#: src/Content/Conversation.php:255
 #, php-format
 msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: src/Content/Conversation.php:254
+#: src/Content/Conversation.php:256
 #, php-format
 msgid "%s don't attend."
 msgstr ""
 
-#: src/Content/Conversation.php:257
+#: src/Content/Conversation.php:259
 #, php-format
 msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: src/Content/Conversation.php:258
+#: src/Content/Conversation.php:260
 #, php-format
 msgid "%s attend maybe."
 msgstr ""
 
-#: src/Content/Conversation.php:261
+#: src/Content/Conversation.php:263
 #, php-format
 msgid "<span  %1$s>%2$d people</span> reshared this"
 msgstr ""
 
-#: src/Content/Conversation.php:309
+#: src/Content/Conversation.php:311
 msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: src/Content/Conversation.php:310 src/Module/Item/Compose.php:199
+#: src/Content/Conversation.php:312 src/Module/Item/Compose.php:199
 #: src/Object/Post.php:1002
 msgid "Please enter a image/video/audio/webpage URL:"
 msgstr ""
 
-#: src/Content/Conversation.php:311
+#: src/Content/Conversation.php:313
 msgid "Tag term:"
 msgstr ""
 
-#: src/Content/Conversation.php:312 src/Module/Filer/SaveTag.php:74
+#: src/Content/Conversation.php:314 src/Module/Filer/SaveTag.php:74
 msgid "Save to Folder:"
 msgstr ""
 
-#: src/Content/Conversation.php:313
+#: src/Content/Conversation.php:315
 msgid "Where are you right now?"
 msgstr ""
 
-#: src/Content/Conversation.php:314
+#: src/Content/Conversation.php:316
 msgid "Delete item(s)?"
 msgstr ""
 
-#: src/Content/Conversation.php:326 src/Module/Item/Compose.php:176
+#: src/Content/Conversation.php:328 src/Module/Item/Compose.php:176
 msgid "Created at"
 msgstr ""
 
-#: src/Content/Conversation.php:336
+#: src/Content/Conversation.php:338
 msgid "New Post"
 msgstr ""
 
-#: src/Content/Conversation.php:339
+#: src/Content/Conversation.php:341
 msgid "Share"
 msgstr ""
 
-#: src/Content/Conversation.php:350 src/Module/Item/Compose.php:196
+#: src/Content/Conversation.php:352 src/Module/Item/Compose.php:196
 #: src/Object/Post.php:999
 msgid "Image"
 msgstr ""
 
-#: src/Content/Conversation.php:353
+#: src/Content/Conversation.php:355
 msgid "Video"
 msgstr ""
 
-#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:223
+#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:223
 msgid "Scheduled at"
 msgstr ""
 
-#: src/Content/Conversation.php:660 src/Object/Post.php:244
+#: src/Content/Conversation.php:662 src/Object/Post.php:244
 msgid "Pinned item"
 msgstr ""
 
-#: src/Content/Conversation.php:676 src/Object/Post.php:486
+#: src/Content/Conversation.php:678 src/Object/Post.php:486
 #: src/Object/Post.php:487
 #, php-format
 msgid "View %s's profile @ %s"
 msgstr ""
 
-#: src/Content/Conversation.php:689 src/Object/Post.php:474
+#: src/Content/Conversation.php:691 src/Object/Post.php:474
 msgid "Categories:"
 msgstr ""
 
-#: src/Content/Conversation.php:690 src/Object/Post.php:475
+#: src/Content/Conversation.php:692 src/Object/Post.php:475
 msgid "Filed under:"
 msgstr ""
 
-#: src/Content/Conversation.php:698 src/Object/Post.php:500
+#: src/Content/Conversation.php:700 src/Object/Post.php:500
 #, php-format
 msgid "%s from %s"
 msgstr ""
 
-#: src/Content/Conversation.php:714
+#: src/Content/Conversation.php:716
 msgid "View in context"
 msgstr ""
 
-#: src/Content/Conversation.php:779
+#: src/Content/Conversation.php:781
 msgid "remove"
 msgstr ""
 
-#: src/Content/Conversation.php:783
+#: src/Content/Conversation.php:785
 msgid "Delete Selected Items"
 msgstr ""
 
-#: src/Content/Conversation.php:848 src/Content/Conversation.php:851
-#: src/Content/Conversation.php:854 src/Content/Conversation.php:857
+#: src/Content/Conversation.php:850 src/Content/Conversation.php:853
+#: src/Content/Conversation.php:856 src/Content/Conversation.php:859
 #, php-format
 msgid "You had been addressed (%s)."
 msgstr ""
 
-#: src/Content/Conversation.php:860
+#: src/Content/Conversation.php:862
 #, php-format
 msgid "You are following %s."
 msgstr ""
 
-#: src/Content/Conversation.php:863
+#: src/Content/Conversation.php:865
 msgid "You subscribed to one or more tags in this post."
 msgstr ""
 
-#: src/Content/Conversation.php:878
+#: src/Content/Conversation.php:880
 msgid "Reshared"
 msgstr ""
 
-#: src/Content/Conversation.php:878
+#: src/Content/Conversation.php:880
 #, php-format
 msgid "Reshared by %s <%s>"
 msgstr ""
 
-#: src/Content/Conversation.php:881
+#: src/Content/Conversation.php:883
 #, php-format
 msgid "%s is participating in this thread."
 msgstr ""
 
-#: src/Content/Conversation.php:884
+#: src/Content/Conversation.php:886
 msgid "Stored for general reasons"
 msgstr ""
 
-#: src/Content/Conversation.php:887
+#: src/Content/Conversation.php:889
 msgid "Global post"
 msgstr ""
 
-#: src/Content/Conversation.php:890
+#: src/Content/Conversation.php:892
 msgid "Sent via an relay server"
 msgstr ""
 
-#: src/Content/Conversation.php:890
+#: src/Content/Conversation.php:892
 #, php-format
 msgid "Sent via the relay server %s <%s>"
 msgstr ""
 
-#: src/Content/Conversation.php:893
+#: src/Content/Conversation.php:895
 msgid "Fetched"
 msgstr ""
 
-#: src/Content/Conversation.php:893
+#: src/Content/Conversation.php:895
 #, php-format
 msgid "Fetched because of %s <%s>"
 msgstr ""
 
-#: src/Content/Conversation.php:896
+#: src/Content/Conversation.php:898
 msgid "Stored because of a child post to complete this thread."
 msgstr ""
 
-#: src/Content/Conversation.php:899
+#: src/Content/Conversation.php:901
 msgid "Local delivery"
 msgstr ""
 
-#: src/Content/Conversation.php:902
+#: src/Content/Conversation.php:904
 msgid "Stored because of your activity (like, comment, star, ...)"
 msgstr ""
 
-#: src/Content/Conversation.php:905
+#: src/Content/Conversation.php:907
 msgid "Distributed"
 msgstr ""
 
-#: src/Content/Conversation.php:908
+#: src/Content/Conversation.php:910
 msgid "Pushed to us"
 msgstr ""
 
@@ -2507,7 +2507,7 @@ msgstr ""
 msgid "People directory"
 msgstr ""
 
-#: src/Content/Nav.php:266 src/Module/BaseAdmin.php:88
+#: src/Content/Nav.php:266 src/Module/BaseAdmin.php:86
 msgid "Information"
 msgstr ""
 
@@ -2516,7 +2516,7 @@ msgid "Information about this friendica instance"
 msgstr ""
 
 #: src/Content/Nav.php:269 src/Module/Admin/Tos.php:76
-#: src/Module/BaseAdmin.php:99 src/Module/Register.php:177
+#: src/Module/BaseAdmin.php:97 src/Module/Register.php:177
 #: src/Module/Tos.php:87
 msgid "Terms of Service"
 msgstr ""
@@ -2588,7 +2588,7 @@ msgstr ""
 msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: src/Content/Nav.php:302 src/Module/BaseAdmin.php:129
+#: src/Content/Nav.php:302 src/Module/BaseAdmin.php:127
 msgid "Admin"
 msgstr ""
 
@@ -2752,7 +2752,7 @@ msgid "Relationships"
 msgstr ""
 
 #: src/Content/Widget.php:245 src/Module/Contact.php:310
-#: src/Module/Group.php:294
+#: src/Module/Group.php:292
 msgid "All Contacts"
 msgstr ""
 
@@ -3765,7 +3765,7 @@ msgstr ""
 msgid "Edit group"
 msgstr ""
 
-#: src/Model/Group.php:593 src/Module/Group.php:195
+#: src/Model/Group.php:593 src/Module/Group.php:193
 msgid "Contacts not in any group"
 msgstr ""
 
@@ -3773,8 +3773,8 @@ msgstr ""
 msgid "Create a new group"
 msgstr ""
 
-#: src/Model/Group.php:596 src/Module/Group.php:180 src/Module/Group.php:203
-#: src/Module/Group.php:278
+#: src/Model/Group.php:596 src/Module/Group.php:178 src/Module/Group.php:201
+#: src/Module/Group.php:276
 msgid "Group Name: "
 msgstr ""
 
@@ -4294,7 +4294,7 @@ msgstr ""
 #: src/Module/Admin/Blocklist/Server/Index.php:93
 #: src/Module/Admin/Federation.php:202 src/Module/Admin/Item/Delete.php:64
 #: src/Module/Admin/Logs/Settings.php:79 src/Module/Admin/Logs/View.php:84
-#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:431
+#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:429
 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:234
 #: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111
 #: src/Module/Admin/Tos.php:75 src/Module/Admin/Users/Active.php:137
@@ -4305,7 +4305,7 @@ msgid "Administration"
 msgstr ""
 
 #: src/Module/Admin/Addons/Details.php:112 src/Module/Admin/Addons/Index.php:68
-#: src/Module/BaseAdmin.php:96 src/Module/BaseSettings.php:85
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:85
 msgid "Addons"
 msgstr ""
 
@@ -4885,7 +4885,7 @@ msgid ""
 "only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: src/Module/Admin/Federation.php:203 src/Module/BaseAdmin.php:90
+#: src/Module/Admin/Federation.php:203 src/Module/BaseAdmin.php:88
 msgid "Federation Statistics"
 msgstr ""
 
@@ -4906,7 +4906,7 @@ msgstr[1] ""
 msgid "Item marked for deletion."
 msgstr ""
 
-#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:109
+#: src/Module/Admin/Item/Delete.php:65 src/Module/BaseAdmin.php:107
 msgid "Delete Item"
 msgstr ""
 
@@ -4935,7 +4935,7 @@ msgstr ""
 msgid "The GUID of the item you want to delete."
 msgstr ""
 
-#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:119
+#: src/Module/Admin/Item/Source.php:53 src/Module/BaseAdmin.php:117
 msgid "Item Source"
 msgstr ""
 
@@ -4993,8 +4993,8 @@ msgstr ""
 msgid "PHP log currently disabled."
 msgstr ""
 
-#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:111
-#: src/Module/BaseAdmin.php:112
+#: src/Module/Admin/Logs/Settings.php:80 src/Module/BaseAdmin.php:109
+#: src/Module/BaseAdmin.php:110
 msgid "Logs"
 msgstr ""
 
@@ -5047,7 +5047,7 @@ msgid ""
 "is readable."
 msgstr ""
 
-#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:113
+#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:111
 msgid "View Logs"
 msgstr ""
 
@@ -5153,470 +5153,470 @@ msgstr ""
 msgid "Priority"
 msgstr ""
 
-#: src/Module/Admin/Site.php:336 src/Module/Settings/Display.php:138
+#: src/Module/Admin/Site.php:334 src/Module/Settings/Display.php:138
 msgid "No special theme for mobile devices"
 msgstr ""
 
-#: src/Module/Admin/Site.php:353 src/Module/Settings/Display.php:148
+#: src/Module/Admin/Site.php:351 src/Module/Settings/Display.php:148
 #, php-format
 msgid "%s - (Experimental)"
 msgstr ""
 
-#: src/Module/Admin/Site.php:365
+#: src/Module/Admin/Site.php:363
 msgid "No community page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:366
+#: src/Module/Admin/Site.php:364
 msgid "No community page for visitors"
 msgstr ""
 
-#: src/Module/Admin/Site.php:367
+#: src/Module/Admin/Site.php:365
 msgid "Public postings from users of this site"
 msgstr ""
 
-#: src/Module/Admin/Site.php:368
+#: src/Module/Admin/Site.php:366
 msgid "Public postings from the federated network"
 msgstr ""
 
-#: src/Module/Admin/Site.php:369
+#: src/Module/Admin/Site.php:367
 msgid "Public postings from local users and the federated network"
 msgstr ""
 
-#: src/Module/Admin/Site.php:375
+#: src/Module/Admin/Site.php:373
 msgid "Multi user instance"
 msgstr ""
 
-#: src/Module/Admin/Site.php:402
+#: src/Module/Admin/Site.php:400
 msgid "Closed"
 msgstr ""
 
-#: src/Module/Admin/Site.php:403
+#: src/Module/Admin/Site.php:401
 msgid "Requires approval"
 msgstr ""
 
-#: src/Module/Admin/Site.php:404
+#: src/Module/Admin/Site.php:402
 msgid "Open"
 msgstr ""
 
-#: src/Module/Admin/Site.php:408 src/Module/Install.php:222
+#: src/Module/Admin/Site.php:406 src/Module/Install.php:222
 msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: src/Module/Admin/Site.php:409 src/Module/Install.php:223
+#: src/Module/Admin/Site.php:407 src/Module/Install.php:223
 msgid "Force all links to use SSL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:410 src/Module/Install.php:224
+#: src/Module/Admin/Site.php:408 src/Module/Install.php:224
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: src/Module/Admin/Site.php:414
+#: src/Module/Admin/Site.php:412
 msgid "Don't check"
 msgstr ""
 
-#: src/Module/Admin/Site.php:415
+#: src/Module/Admin/Site.php:413
 msgid "check the stable version"
 msgstr ""
 
-#: src/Module/Admin/Site.php:416
+#: src/Module/Admin/Site.php:414
 msgid "check the development version"
 msgstr ""
 
-#: src/Module/Admin/Site.php:420
+#: src/Module/Admin/Site.php:418
 msgid "none"
 msgstr ""
 
-#: src/Module/Admin/Site.php:421
+#: src/Module/Admin/Site.php:419
 msgid "Local contacts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:422
+#: src/Module/Admin/Site.php:420
 msgid "Interactors"
 msgstr ""
 
-#: src/Module/Admin/Site.php:432 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Site.php:430 src/Module/BaseAdmin.php:91
 msgid "Site"
 msgstr ""
 
-#: src/Module/Admin/Site.php:433
+#: src/Module/Admin/Site.php:431
 msgid "General Information"
 msgstr ""
 
-#: src/Module/Admin/Site.php:435
+#: src/Module/Admin/Site.php:433
 msgid "Republish users to directory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:436 src/Module/Register.php:153
+#: src/Module/Admin/Site.php:434 src/Module/Register.php:153
 msgid "Registration"
 msgstr ""
 
-#: src/Module/Admin/Site.php:437
+#: src/Module/Admin/Site.php:435
 msgid "File upload"
 msgstr ""
 
-#: src/Module/Admin/Site.php:438
+#: src/Module/Admin/Site.php:436
 msgid "Policies"
 msgstr ""
 
-#: src/Module/Admin/Site.php:440
+#: src/Module/Admin/Site.php:438
 msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:441
+#: src/Module/Admin/Site.php:439
 msgid "Performance"
 msgstr ""
 
-#: src/Module/Admin/Site.php:442
+#: src/Module/Admin/Site.php:440
 msgid "Worker"
 msgstr ""
 
-#: src/Module/Admin/Site.php:443
+#: src/Module/Admin/Site.php:441
 msgid "Message Relay"
 msgstr ""
 
-#: src/Module/Admin/Site.php:444
+#: src/Module/Admin/Site.php:442
 msgid ""
 "Use the command \"console relay\" in the command line to add or remove "
 "relays."
 msgstr ""
 
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:443
 msgid "The system is not subscribed to any relays at the moment."
 msgstr ""
 
-#: src/Module/Admin/Site.php:446
+#: src/Module/Admin/Site.php:444
 msgid "The system is currently subscribed to the following relays:"
 msgstr ""
 
-#: src/Module/Admin/Site.php:448
+#: src/Module/Admin/Site.php:446
 msgid "Relocate Node"
 msgstr ""
 
-#: src/Module/Admin/Site.php:449
+#: src/Module/Admin/Site.php:447
 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:450
+#: src/Module/Admin/Site.php:448
 msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
 msgstr ""
 
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:452
 msgid "Site name"
 msgstr ""
 
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:453
 msgid "Sender Email"
 msgstr ""
 
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:453
 msgid ""
 "The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:454
 msgid "Name of the system actor"
 msgstr ""
 
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:454
 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:457
+#: src/Module/Admin/Site.php:455
 msgid "Banner/Logo"
 msgstr ""
 
-#: src/Module/Admin/Site.php:458
+#: src/Module/Admin/Site.php:456
 msgid "Email Banner/Logo"
 msgstr ""
 
-#: src/Module/Admin/Site.php:459
+#: src/Module/Admin/Site.php:457
 msgid "Shortcut icon"
 msgstr ""
 
-#: src/Module/Admin/Site.php:459
+#: src/Module/Admin/Site.php:457
 msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: src/Module/Admin/Site.php:460
+#: src/Module/Admin/Site.php:458
 msgid "Touch icon"
 msgstr ""
 
-#: src/Module/Admin/Site.php:460
+#: src/Module/Admin/Site.php:458
 msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: src/Module/Admin/Site.php:461
+#: src/Module/Admin/Site.php:459
 msgid "Additional Info"
 msgstr ""
 
-#: src/Module/Admin/Site.php:461
+#: src/Module/Admin/Site.php:459
 #, 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:462
+#: src/Module/Admin/Site.php:460
 msgid "System language"
 msgstr ""
 
-#: src/Module/Admin/Site.php:463
+#: src/Module/Admin/Site.php:461
 msgid "System theme"
 msgstr ""
 
-#: src/Module/Admin/Site.php:463
+#: src/Module/Admin/Site.php:461
 #, 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:464
+#: src/Module/Admin/Site.php:462
 msgid "Mobile system theme"
 msgstr ""
 
-#: src/Module/Admin/Site.php:464
+#: src/Module/Admin/Site.php:462
 msgid "Theme for mobile devices"
 msgstr ""
 
-#: src/Module/Admin/Site.php:465 src/Module/Install.php:232
+#: src/Module/Admin/Site.php:463 src/Module/Install.php:232
 msgid "SSL link policy"
 msgstr ""
 
-#: src/Module/Admin/Site.php:465 src/Module/Install.php:234
+#: src/Module/Admin/Site.php:463 src/Module/Install.php:234
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:464
 msgid "Force SSL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:464
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
 "to endless loops."
 msgstr ""
 
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:465
 msgid "Show help entry from navigation menu"
 msgstr ""
 
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:465
 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:468
+#: src/Module/Admin/Site.php:466
 msgid "Single user instance"
 msgstr ""
 
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:466
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: src/Module/Admin/Site.php:470
+#: src/Module/Admin/Site.php:468
 msgid "Maximum image size"
 msgstr ""
 
-#: src/Module/Admin/Site.php:470
+#: src/Module/Admin/Site.php:468
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr ""
 
-#: src/Module/Admin/Site.php:471
+#: src/Module/Admin/Site.php:469
 msgid "Maximum image length"
 msgstr ""
 
-#: src/Module/Admin/Site.php:471
+#: src/Module/Admin/Site.php:469
 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:472
+#: src/Module/Admin/Site.php:470
 msgid "JPEG image quality"
 msgstr ""
 
-#: src/Module/Admin/Site.php:472
+#: src/Module/Admin/Site.php:470
 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:474
+#: src/Module/Admin/Site.php:472
 msgid "Register policy"
 msgstr ""
 
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:473
 msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:473
 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:476
+#: src/Module/Admin/Site.php:474
 msgid "Register text"
 msgstr ""
 
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:474
 msgid ""
 "Will be displayed prominently on the registration page. You can use BBCode "
 "here."
 msgstr ""
 
-#: src/Module/Admin/Site.php:477
+#: src/Module/Admin/Site.php:475
 msgid "Forbidden Nicknames"
 msgstr ""
 
-#: src/Module/Admin/Site.php:477
+#: src/Module/Admin/Site.php:475
 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:478
+#: src/Module/Admin/Site.php:476
 msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: src/Module/Admin/Site.php:478
+#: src/Module/Admin/Site.php:476
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: src/Module/Admin/Site.php:479
+#: src/Module/Admin/Site.php:477
 msgid "Allowed friend domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:479
+#: src/Module/Admin/Site.php:477
 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:480
+#: src/Module/Admin/Site.php:478
 msgid "Allowed email domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:480
+#: src/Module/Admin/Site.php:478
 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:481
+#: src/Module/Admin/Site.php:479
 msgid "No OEmbed rich content"
 msgstr ""
 
-#: src/Module/Admin/Site.php:481
+#: src/Module/Admin/Site.php:479
 msgid ""
 "Don't show the rich content (e.g. embedded PDF), except from the domains "
 "listed below."
 msgstr ""
 
-#: src/Module/Admin/Site.php:482
+#: src/Module/Admin/Site.php:480
 msgid "Trusted third-party domains"
 msgstr ""
 
-#: src/Module/Admin/Site.php:482
+#: src/Module/Admin/Site.php:480
 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:483
+#: src/Module/Admin/Site.php:481
 msgid "Block public"
 msgstr ""
 
-#: src/Module/Admin/Site.php:483
+#: src/Module/Admin/Site.php:481
 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:484
+#: src/Module/Admin/Site.php:482
 msgid "Force publish"
 msgstr ""
 
-#: src/Module/Admin/Site.php:484
+#: src/Module/Admin/Site.php:482
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: src/Module/Admin/Site.php:484
+#: src/Module/Admin/Site.php:482
 msgid "Enabling this may violate privacy laws like the GDPR"
 msgstr ""
 
-#: src/Module/Admin/Site.php:485
+#: src/Module/Admin/Site.php:483
 msgid "Global directory URL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:485
+#: src/Module/Admin/Site.php:483
 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:486
+#: src/Module/Admin/Site.php:484
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: src/Module/Admin/Site.php:486
+#: src/Module/Admin/Site.php:484
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr ""
 
-#: src/Module/Admin/Site.php:487
+#: src/Module/Admin/Site.php:485
 msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: src/Module/Admin/Site.php:487
+#: src/Module/Admin/Site.php:485
 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:488
+#: src/Module/Admin/Site.php:486
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:486
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr ""
 
-#: src/Module/Admin/Site.php:489
+#: src/Module/Admin/Site.php:487
 msgid "Don't embed private images in posts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:489
+#: src/Module/Admin/Site.php:487
 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:490
+#: src/Module/Admin/Site.php:488
 msgid "Explicit Content"
 msgstr ""
 
-#: src/Module/Admin/Site.php:490
+#: src/Module/Admin/Site.php:488
 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 "
@@ -5625,257 +5625,257 @@ msgid ""
 "will be shown at the user registration page."
 msgstr ""
 
-#: src/Module/Admin/Site.php:491
+#: src/Module/Admin/Site.php:489
 msgid "Proxify external content"
 msgstr ""
 
-#: src/Module/Admin/Site.php:491
+#: src/Module/Admin/Site.php:489
 msgid ""
 "Route external content via the proxy functionality. This is used for example "
 "for some OEmbed accesses and in some other rare cases."
 msgstr ""
 
-#: src/Module/Admin/Site.php:492
+#: src/Module/Admin/Site.php:490
 msgid "Cache contact avatars"
 msgstr ""
 
-#: src/Module/Admin/Site.php:492
+#: src/Module/Admin/Site.php:490
 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:493
+#: src/Module/Admin/Site.php:491
 msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:491
 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:494
+#: src/Module/Admin/Site.php:492
 msgid "Enable multiple registrations"
 msgstr ""
 
-#: src/Module/Admin/Site.php:494
+#: src/Module/Admin/Site.php:492
 msgid "Enable users to register additional accounts for use as pages."
 msgstr ""
 
-#: src/Module/Admin/Site.php:495
+#: src/Module/Admin/Site.php:493
 msgid "Enable OpenID"
 msgstr ""
 
-#: src/Module/Admin/Site.php:495
+#: src/Module/Admin/Site.php:493
 msgid "Enable OpenID support for registration and logins."
 msgstr ""
 
-#: src/Module/Admin/Site.php:496
+#: src/Module/Admin/Site.php:494
 msgid "Enable Fullname check"
 msgstr ""
 
-#: src/Module/Admin/Site.php:496
+#: src/Module/Admin/Site.php:494
 msgid ""
 "Enable check to only allow users to register with a space between the first "
 "name and the last name in their full name."
 msgstr ""
 
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:495
 msgid "Community pages for visitors"
 msgstr ""
 
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:495
 msgid ""
 "Which community pages should be available for visitors. Local users always "
 "see both pages."
 msgstr ""
 
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:496
 msgid "Posts per user on community page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:496
 msgid ""
 "The maximum number of posts per user on the community page. (Not valid for "
 "\"Global Community\")"
 msgstr ""
 
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:498
 msgid "Enable Mail support"
 msgstr ""
 
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:498
 msgid ""
 "Enable built-in mail support to poll IMAP folders and to reply via mail."
 msgstr ""
 
-#: src/Module/Admin/Site.php:501
+#: src/Module/Admin/Site.php:499
 msgid ""
 "Mail support can't be enabled because the PHP IMAP module is not installed."
 msgstr ""
 
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:500
 msgid "Enable OStatus support"
 msgstr ""
 
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:500
 msgid ""
 "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public."
 msgstr ""
 
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:502
 msgid ""
 "Diaspora support can't be enabled because Friendica was installed into a sub "
 "directory."
 msgstr ""
 
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:503
 msgid "Enable Diaspora support"
 msgstr ""
 
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:503
 msgid ""
 "Enable built-in Diaspora network compatibility for communicating with "
 "diaspora servers."
 msgstr ""
 
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:504
 msgid "Verify SSL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:504
 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:507
+#: src/Module/Admin/Site.php:505
 msgid "Proxy user"
 msgstr ""
 
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:505
 msgid "User name for the proxy server."
 msgstr ""
 
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:506
 msgid "Proxy URL"
 msgstr ""
 
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:506
 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:509
+#: src/Module/Admin/Site.php:507
 msgid "Network timeout"
 msgstr ""
 
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:507
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:508
 msgid "Maximum Load Average"
 msgstr ""
 
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:508
 #, php-format
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default %d."
 msgstr ""
 
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:509
 msgid "Minimal Memory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:509
 msgid ""
 "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
 "default 0 (deactivated)."
 msgstr ""
 
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:510
 msgid "Periodically optimize tables"
 msgstr ""
 
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:510
 msgid "Periodically optimize tables like the cache and the workerqueue"
 msgstr ""
 
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:512
 msgid "Discover followers/followings from contacts"
 msgstr ""
 
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:512
 msgid ""
 "If enabled, contacts are checked for their followers and following contacts."
 msgstr ""
 
-#: src/Module/Admin/Site.php:515
+#: src/Module/Admin/Site.php:513
 msgid "None - deactivated"
 msgstr ""
 
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:514
 msgid ""
 "Local contacts - contacts of our local contacts are discovered for their "
 "followers/followings."
 msgstr ""
 
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:515
 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:519
+#: src/Module/Admin/Site.php:517
 msgid "Synchronize the contacts with the directory server"
 msgstr ""
 
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:517
 msgid ""
 "if enabled, the system will check periodically for new contacts on the "
 "defined directory server."
 msgstr ""
 
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:519
 msgid "Days between requery"
 msgstr ""
 
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:519
 msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:520
 msgid "Discover contacts from other servers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:522
+#: src/Module/Admin/Site.php:520
 msgid ""
 "Periodically query other servers for contacts. The system queries Friendica, "
 "Mastodon and Hubzilla servers."
 msgstr ""
 
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:521
 msgid "Search the local directory"
 msgstr ""
 
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:521
 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:525
+#: src/Module/Admin/Site.php:523
 msgid "Publish server information"
 msgstr ""
 
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:523
 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 "
@@ -5883,50 +5883,50 @@ msgid ""
 "href=\"http://the-federation.info/\">the-federation.info</a> for details."
 msgstr ""
 
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:525
 msgid "Check upstream version"
 msgstr ""
 
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:525
 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:528
+#: src/Module/Admin/Site.php:526
 msgid "Suppress Tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:528
+#: src/Module/Admin/Site.php:526
 msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:527
 msgid "Clean database"
 msgstr ""
 
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:527
 msgid ""
 "Remove old remote items, orphaned database records and old content from some "
 "other helper tables."
 msgstr ""
 
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:528
 msgid "Lifespan of remote items"
 msgstr ""
 
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:528
 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:531
+#: src/Module/Admin/Site.php:529
 msgid "Lifespan of unclaimed items"
 msgstr ""
 
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:529
 msgid ""
 "When the database cleanup is enabled, this defines the days after which "
 "unclaimed remote items (mostly content from the relay) will be deleted. "
@@ -5934,144 +5934,144 @@ msgid ""
 "items if set to 0."
 msgstr ""
 
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:530
 msgid "Lifespan of raw conversation data"
 msgstr ""
 
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:530
 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:533
+#: src/Module/Admin/Site.php:531
 msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:531
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:532
 msgid "Maximum numbers of comments per post on the display page"
 msgstr ""
 
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:532
 msgid ""
 "How many comments should be shown on the single view for each post? Default "
 "value is 1000."
 msgstr ""
 
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:533
 msgid "Temp path"
 msgstr ""
 
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:533
 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:536
+#: src/Module/Admin/Site.php:534
 msgid "Only search in tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:534
 msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:535
 msgid "Generate counts per contact group when calculating network count"
 msgstr ""
 
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:535
 msgid ""
 "On systems with users that heavily use contact groups the query can be very "
 "expensive."
 msgstr ""
 
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:537
 msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:537
 #, 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:540
+#: src/Module/Admin/Site.php:538
 msgid "Enable fastlane"
 msgstr ""
 
-#: src/Module/Admin/Site.php:540
+#: src/Module/Admin/Site.php:538
 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:542
+#: src/Module/Admin/Site.php:540
 msgid "Direct relay transfer"
 msgstr ""
 
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:540
 msgid ""
 "Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:541
 msgid "Relay scope"
 msgstr ""
 
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:541
 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:543 src/Module/Contact/Profile.php:275
+#: src/Module/Admin/Site.php:541 src/Module/Contact/Profile.php:275
 #: src/Module/Settings/TwoFactor/Index.php:126
 msgid "Disabled"
 msgstr ""
 
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:541
 msgid "all"
 msgstr ""
 
-#: src/Module/Admin/Site.php:543
+#: src/Module/Admin/Site.php:541
 msgid "tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:542
 msgid "Server tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:542
 msgid "Comma separated list of tags for the \"tags\" subscription."
 msgstr ""
 
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:543
 msgid "Deny Server tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:543
 msgid "Comma separated list of tags that are rejected."
 msgstr ""
 
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:544
 msgid "Allow user tags"
 msgstr ""
 
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:544
 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:549
+#: src/Module/Admin/Site.php:547
 msgid "Start Relocation"
 msgstr ""
 
@@ -6097,7 +6097,7 @@ msgstr ""
 msgid "Storage Configuration"
 msgstr ""
 
-#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:94
+#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:92
 msgid "Storage"
 msgstr ""
 
@@ -6313,7 +6313,7 @@ msgid "Screenshot"
 msgstr ""
 
 #: src/Module/Admin/Themes/Details.php:91 src/Module/Admin/Themes/Index.php:112
-#: src/Module/BaseAdmin.php:97
+#: src/Module/BaseAdmin.php:95
 msgid "Themes"
 msgstr ""
 
@@ -6514,7 +6514,7 @@ msgid "Permanent deletion"
 msgstr ""
 
 #: src/Module/Admin/Users/Index.php:151 src/Module/Admin/Users/Index.php:161
-#: src/Module/BaseAdmin.php:95
+#: src/Module/BaseAdmin.php:93
 msgid "Users"
 msgstr ""
 
@@ -6620,89 +6620,89 @@ msgstr ""
 msgid "Item was not found."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:57 src/Module/BaseAdmin.php:61
+#: src/Module/BaseAdmin.php:55 src/Module/BaseAdmin.php:59
 msgid "Please login to continue."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:66
+#: src/Module/BaseAdmin.php:64
 msgid "You don't have access to administration pages."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:70
+#: src/Module/BaseAdmin.php:68
 msgid ""
 "Submanaged account can't access the administration pages. Please log back in "
 "as the main account."
 msgstr ""
 
-#: src/Module/BaseAdmin.php:89
+#: src/Module/BaseAdmin.php:87
 msgid "Overview"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:92
+#: src/Module/BaseAdmin.php:90
 msgid "Configuration"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:98 src/Module/BaseSettings.php:63
+#: src/Module/BaseAdmin.php:96 src/Module/BaseSettings.php:63
 msgid "Additional features"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:101
+#: src/Module/BaseAdmin.php:99
 msgid "Database"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:102
+#: src/Module/BaseAdmin.php:100
 msgid "DB updates"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:103
+#: src/Module/BaseAdmin.php:101
 msgid "Inspect Deferred Workers"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:104
+#: src/Module/BaseAdmin.php:102
 msgid "Inspect worker Queue"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:106
+#: src/Module/BaseAdmin.php:104
 msgid "Tools"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:107
+#: src/Module/BaseAdmin.php:105
 msgid "Contact Blocklist"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:108
+#: src/Module/BaseAdmin.php:106
 msgid "Server Blocklist"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:115
+#: src/Module/BaseAdmin.php:113
 msgid "Diagnostics"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:116
+#: src/Module/BaseAdmin.php:114
 msgid "PHP Info"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:117
+#: src/Module/BaseAdmin.php:115
 msgid "probe address"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:118
+#: src/Module/BaseAdmin.php:116
 msgid "check webfinger"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:120
+#: src/Module/BaseAdmin.php:118
 msgid "Babel"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:121 src/Module/Debug/ActivityPubConversion.php:138
+#: src/Module/BaseAdmin.php:119 src/Module/Debug/ActivityPubConversion.php:138
 msgid "ActivityPub Conversion"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:130
+#: src/Module/BaseAdmin.php:128
 msgid "Addon Features"
 msgstr ""
 
-#: src/Module/BaseAdmin.php:131
+#: src/Module/BaseAdmin.php:129
 msgid "User registrations waiting for confirmation"
 msgstr ""
 
@@ -6940,7 +6940,7 @@ msgid "New photo from this URL"
 msgstr ""
 
 #: src/Module/Contact/Contacts.php:49 src/Module/Conversation/Network.php:187
-#: src/Module/Group.php:104
+#: src/Module/Group.php:102
 msgid "Invalid contact."
 msgstr ""
 
@@ -7231,7 +7231,7 @@ msgstr ""
 msgid "Unknown contact."
 msgstr ""
 
-#: src/Module/Contact/Revoke.php:74 src/Module/Group.php:113
+#: src/Module/Contact/Revoke.php:74 src/Module/Group.php:111
 msgid "Contact is deleted."
 msgstr ""
 
@@ -7256,50 +7256,50 @@ msgstr ""
 msgid "Yes"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:76
+#: src/Module/Conversation/Community.php:74
 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:89
+#: src/Module/Conversation/Community.php:87
 msgid "Local Community"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:92
+#: src/Module/Conversation/Community.php:90
 msgid "Posts from local users on this server"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:100
+#: src/Module/Conversation/Community.php:98
 msgid "Global Community"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:103
+#: src/Module/Conversation/Community.php:101
 msgid "Posts from users of the whole federated network"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:136
+#: src/Module/Conversation/Community.php:134
 msgid "Own Contacts"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:140
+#: src/Module/Conversation/Community.php:138
 msgid "Include"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:141
+#: src/Module/Conversation/Community.php:139
 msgid "Hide"
 msgstr ""
 
-#: src/Module/Conversation/Community.php:158 src/Module/Search/Index.php:152
+#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
 #: src/Module/Search/Index.php:194
 msgid "No results."
 msgstr ""
 
-#: src/Module/Conversation/Community.php:214
+#: src/Module/Conversation/Community.php:212
 msgid "Community option not available."
 msgstr ""
 
-#: src/Module/Conversation/Community.php:230
+#: src/Module/Conversation/Community.php:228
 msgid "Not available."
 msgstr ""
 
@@ -7622,26 +7622,26 @@ msgstr ""
 msgid "Lookup address:"
 msgstr ""
 
-#: src/Module/Delegation.php:110
+#: src/Module/Delegation.php:111
 #, php-format
 msgid "You are now logged in as %s"
 msgstr ""
 
-#: src/Module/Delegation.php:142
+#: src/Module/Delegation.php:143
 msgid "Switch between your accounts"
 msgstr ""
 
-#: src/Module/Delegation.php:143
+#: src/Module/Delegation.php:144
 msgid "Manage your accounts"
 msgstr ""
 
-#: src/Module/Delegation.php:144
+#: src/Module/Delegation.php:145
 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/Delegation.php:145
+#: src/Module/Delegation.php:146
 msgid "Select an identity to manage: "
 msgstr ""
 
@@ -7737,83 +7737,83 @@ msgid ""
 "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
 msgstr ""
 
-#: src/Module/Group.php:59
+#: src/Module/Group.php:57
 msgid "Could not create group."
 msgstr ""
 
-#: src/Module/Group.php:70 src/Module/Group.php:216 src/Module/Group.php:240
+#: src/Module/Group.php:68 src/Module/Group.php:214 src/Module/Group.php:238
 msgid "Group not found."
 msgstr ""
 
-#: src/Module/Group.php:76
+#: src/Module/Group.php:74
 msgid "Group name was not changed."
 msgstr ""
 
-#: src/Module/Group.php:94
+#: src/Module/Group.php:92
 msgid "Unknown group."
 msgstr ""
 
-#: src/Module/Group.php:119
+#: src/Module/Group.php:117
 msgid "Unable to add the contact to the group."
 msgstr ""
 
-#: src/Module/Group.php:122
+#: src/Module/Group.php:120
 msgid "Contact successfully added to group."
 msgstr ""
 
-#: src/Module/Group.php:126
+#: src/Module/Group.php:124
 msgid "Unable to remove the contact from the group."
 msgstr ""
 
-#: src/Module/Group.php:129
+#: src/Module/Group.php:127
 msgid "Contact successfully removed from group."
 msgstr ""
 
-#: src/Module/Group.php:133
+#: src/Module/Group.php:131
 msgid "Bad request."
 msgstr ""
 
-#: src/Module/Group.php:172
+#: src/Module/Group.php:170
 msgid "Save Group"
 msgstr ""
 
-#: src/Module/Group.php:173
+#: src/Module/Group.php:171
 msgid "Filter"
 msgstr ""
 
-#: src/Module/Group.php:179
+#: src/Module/Group.php:177
 msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: src/Module/Group.php:221
+#: src/Module/Group.php:219
 msgid "Unable to remove group."
 msgstr ""
 
-#: src/Module/Group.php:272
+#: src/Module/Group.php:270
 msgid "Delete Group"
 msgstr ""
 
-#: src/Module/Group.php:282
+#: src/Module/Group.php:280
 msgid "Edit Group Name"
 msgstr ""
 
-#: src/Module/Group.php:292
+#: src/Module/Group.php:290
 msgid "Members"
 msgstr ""
 
-#: src/Module/Group.php:295
+#: src/Module/Group.php:293
 msgid "Group is empty"
 msgstr ""
 
-#: src/Module/Group.php:308
+#: src/Module/Group.php:306
 msgid "Remove contact from group"
 msgstr ""
 
-#: src/Module/Group.php:329
+#: src/Module/Group.php:327
 msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: src/Module/Group.php:343
+#: src/Module/Group.php:341
 msgid "Add contact to group"
 msgstr ""
 
@@ -8240,11 +8240,11 @@ msgstr ""
 msgid "Show unread"
 msgstr ""
 
-#: src/Module/Notifications/Ping.php:227
+#: src/Module/Notifications/Ping.php:225
 msgid "{0} requested registration"
 msgstr ""
 
-#: src/Module/Notifications/Ping.php:238
+#: src/Module/Notifications/Ping.php:236
 #, php-format
 msgid "{0} and %d others requested registration"
 msgstr ""
index 1c2f96e81f99f1763a0305d6cb43dd9d76fcc181..93732960b1ad7148fd3ff51b75e19f93345be8bb 100644 (file)
@@ -20,8 +20,7 @@
 
 <script language="javascript" type="text/javascript">
        // This js part changes the state of page-flags radio buttons according
-       // to the selected account type. For a translation of the different
-       // account-types and page-flags have a look in the define section in boot.php
+       // to the selected account type.
        var accountType = {{$account_type}};
 
        $(document).ready(function(){