diff --git a/boot.php b/boot.php
index b90c1fb2e2..6b078f7c90 100644
--- a/boot.php
+++ b/boot.php
@@ -32,8 +32,6 @@ use Friendica\Model\Contact;
define('FRIENDICA_PLATFORM', 'Friendica');
define('FRIENDICA_CODENAME', 'Giant Rhubarb');
define('FRIENDICA_VERSION', '2022.12-dev');
-define('DFRN_PROTOCOL_VERSION', '2.23');
-define('NEW_TABLE_STRUCTURE_VERSION', 1288);
/**
* Constant with a HTML line break.
@@ -44,21 +42,6 @@ define('NEW_TABLE_STRUCTURE_VERSION', 1288);
*/
define('EOL', "
\r\n");
-/**
- * @name CP
- *
- * Type of the community page
- * @{
- */
-define('CP_NO_INTERNAL_COMMUNITY', -2);
-define('CP_NO_COMMUNITY_PAGE', -1);
-define('CP_USERS_ON_SERVER', 0);
-define('CP_GLOBAL_COMMUNITY', 1);
-define('CP_USERS_AND_GLOBAL', 2);
-/**
- * @}
- */
-
/**
* @name Gravity
*
diff --git a/src/Content/Nav.php b/src/Content/Nav.php
index 77f068863a..6861d69e80 100644
--- a/src/Content/Nav.php
+++ b/src/Content/Nav.php
@@ -30,6 +30,7 @@ use Friendica\DI;
use Friendica\Model\Contact;
use Friendica\Model\Profile;
use Friendica\Model\User;
+use Friendica\Module\Conversation\Community;
class Nav
{
@@ -251,8 +252,8 @@ class Nav
}
}
- if ((local_user() || DI::config()->get('system', 'community_page_style') != CP_NO_COMMUNITY_PAGE) &&
- !(DI::config()->get('system', 'community_page_style') == CP_NO_INTERNAL_COMMUNITY)) {
+ if ((local_user() || DI::config()->get('system', 'community_page_style') != Community::DISABLED_VISITOR) &&
+ !(DI::config()->get('system', 'community_page_style') == Community::DISABLED)) {
$nav['community'] = ['community', DI::l10n()->t('Community'), '', DI::l10n()->t('Conversations on this and other servers')];
}
diff --git a/src/Core/Update.php b/src/Core/Update.php
index ad5b317600..5f42517209 100644
--- a/src/Core/Update.php
+++ b/src/Core/Update.php
@@ -35,6 +35,8 @@ class Update
const SUCCESS = 0;
const FAILED = 1;
+ const NEW_TABLE_STRUCTURE_VERSION = 1288;
+
/**
* Function to check if the Database structure needs an update.
*
@@ -63,7 +65,7 @@ class Update
}
// We don't support upgrading from very old versions anymore
- if ($build < NEW_TABLE_STRUCTURE_VERSION) {
+ if ($build < self::NEW_TABLE_STRUCTURE_VERSION) {
$error = DI::l10n()->t('Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383.', $build);
if (DI::mode()->getExecutor() == Mode::INDEX) {
die($error);
@@ -73,8 +75,8 @@ class Update
}
// The postupdate has to completed version 1288 for the new post views to take over
- $postupdate = DI::config()->get('system', 'post_update_version', NEW_TABLE_STRUCTURE_VERSION);
- if ($postupdate < NEW_TABLE_STRUCTURE_VERSION) {
+ $postupdate = DI::config()->get('system', 'post_update_version', self::NEW_TABLE_STRUCTURE_VERSION);
+ if ($postupdate < self::NEW_TABLE_STRUCTURE_VERSION) {
$error = DI::l10n()->t('Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383.', $postupdate);
if (DI::mode()->getExecutor() == Mode::INDEX) {
die($error);
diff --git a/src/Module/Admin/Site.php b/src/Module/Admin/Site.php
index 37d8ed040f..011e3c411d 100644
--- a/src/Module/Admin/Site.php
+++ b/src/Module/Admin/Site.php
@@ -22,7 +22,6 @@
namespace Friendica\Module\Admin;
use Friendica\App;
-use Friendica\Core\Relocate;
use Friendica\Core\Renderer;
use Friendica\Core\Search;
use Friendica\Core\System;
@@ -33,12 +32,11 @@ use Friendica\DI;
use Friendica\Model\Contact;
use Friendica\Model\User;
use Friendica\Module\BaseAdmin;
+use Friendica\Module\Conversation\Community;
use Friendica\Module\Register;
use Friendica\Protocol\Relay;
use Friendica\Util\BasePath;
use Friendica\Util\EMailer\MailBuilder;
-use Friendica\Util\Strings;
-use Friendica\Worker\Delivery;
require_once __DIR__ . '/../../../boot.php';
@@ -364,11 +362,11 @@ class Site extends BaseAdmin
/* Community page style */
$community_page_style_choices = [
- CP_NO_INTERNAL_COMMUNITY => DI::l10n()->t('No community page for local users'),
- CP_NO_COMMUNITY_PAGE => DI::l10n()->t('No community page'),
- CP_USERS_ON_SERVER => DI::l10n()->t('Public postings from users of this site'),
- CP_GLOBAL_COMMUNITY => DI::l10n()->t('Public postings from the federated network'),
- CP_USERS_AND_GLOBAL => DI::l10n()->t('Public postings from local users and the federated network')
+ Community::DISABLED => DI::l10n()->t('No community page'),
+ Community::DISABLED_VISITOR => DI::l10n()->t('No community page for visitors'),
+ Community::LOCAL => DI::l10n()->t('Public postings from users of this site'),
+ Community::GLOBAL => DI::l10n()->t('Public postings from the federated network'),
+ Community::LOCAL_AND_GLOBAL => DI::l10n()->t('Public postings from local users and the federated network')
];
/* get user names to make the install a personal install of X */
diff --git a/src/Module/Api/GNUSocial/GNUSocial/Config.php b/src/Module/Api/GNUSocial/GNUSocial/Config.php
index b0325f47ab..75c70ce06c 100644
--- a/src/Module/Api/GNUSocial/GNUSocial/Config.php
+++ b/src/Module/Api/GNUSocial/GNUSocial/Config.php
@@ -55,7 +55,6 @@ class Config extends BaseApi
'friendica' => [
'FRIENDICA_PLATFORM' => FRIENDICA_PLATFORM,
'FRIENDICA_VERSION' => FRIENDICA_VERSION,
- 'DFRN_PROTOCOL_VERSION' => DFRN_PROTOCOL_VERSION,
'DB_UPDATE_VERSION' => DB_UPDATE_VERSION,
]
],
diff --git a/src/Module/Conversation/Community.php b/src/Module/Conversation/Community.php
index 8d73f825f9..3ba95e1eff 100644
--- a/src/Module/Conversation/Community.php
+++ b/src/Module/Conversation/Community.php
@@ -40,6 +40,21 @@ use Friendica\Network\HTTPException;
class Community extends BaseModule
{
+ /**
+ * @name CP
+ *
+ * Type of the community page
+ * @{
+ */
+ const DISABLED = -2;
+ const DISABLED_VISITOR = -1;
+ const LOCAL = 0;
+ const GLOBAL = 1;
+ const LOCAL_AND_GLOBAL = 2;
+ /**
+ * @}
+ */
+
protected static $page_style;
protected static $content;
protected static $accountTypeString;
@@ -69,7 +84,7 @@ class Community extends BaseModule
if (empty($_GET['mode']) || ($_GET['mode'] != 'raw')) {
$tabs = [];
- if ((Session::isAuthenticated() || in_array(self::$page_style, [CP_USERS_AND_GLOBAL, CP_USERS_ON_SERVER])) && empty(DI::config()->get('system', 'singleuser'))) {
+ if ((Session::isAuthenticated() || in_array(self::$page_style, [self::LOCAL_AND_GLOBAL, self::LOCAL])) && empty(DI::config()->get('system', 'singleuser'))) {
$tabs[] = [
'label' => DI::l10n()->t('Local Community'),
'url' => 'community/local',
@@ -80,7 +95,7 @@ class Community extends BaseModule
];
}
- if (Session::isAuthenticated() || in_array(self::$page_style, [CP_USERS_AND_GLOBAL, CP_GLOBAL_COMMUNITY])) {
+ if (Session::isAuthenticated() || in_array(self::$page_style, [self::LOCAL_AND_GLOBAL, self::GLOBAL])) {
$tabs[] = [
'label' => DI::l10n()->t('Global Community'),
'url' => 'community/global',
@@ -177,7 +192,7 @@ class Community extends BaseModule
self::$page_style = DI::config()->get('system', 'community_page_style');
- if (self::$page_style == CP_NO_INTERNAL_COMMUNITY) {
+ if (self::$page_style == self::DISABLED) {
throw new HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
}
@@ -191,7 +206,7 @@ class Community extends BaseModule
self::$content = 'global';
} else {
// When only the global community is allowed, we use this as default
- self::$content = self::$page_style == CP_GLOBAL_COMMUNITY ? 'global' : 'local';
+ self::$content = self::$page_style == self::GLOBAL ? 'global' : 'local';
}
}
@@ -201,14 +216,14 @@ class Community extends BaseModule
// Check if we are allowed to display the content to visitors
if (!Session::isAuthenticated()) {
- $available = self::$page_style == CP_USERS_AND_GLOBAL;
+ $available = self::$page_style == self::LOCAL_AND_GLOBAL;
if (!$available) {
- $available = (self::$page_style == CP_USERS_ON_SERVER) && (self::$content == 'local');
+ $available = (self::$page_style == self::LOCAL) && (self::$content == 'local');
}
if (!$available) {
- $available = (self::$page_style == CP_GLOBAL_COMMUNITY) && (self::$content == 'global');
+ $available = (self::$page_style == self::GLOBAL) && (self::$content == 'global');
}
if (!$available) {
diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po
index eed5286895..33b83ca217 100644
--- a/view/lang/C/messages.po
+++ b/view/lang/C/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2022.12-dev\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2022-10-16 12:38-0400\n"
+"POT-Creation-Date: 2022-10-17 09:33+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -19,7 +19,7 @@ msgstr ""
#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:39 mod/redir.php:36
-#: mod/redir.php:177 src/Module/Conversation/Community.php:181
+#: mod/redir.php:177 src/Module/Conversation/Community.php:196
#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57
#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41
#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57
@@ -43,8 +43,8 @@ msgstr ""
msgid "Access to this profile has been restricted."
msgstr ""
-#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:196
-#: src/Content/Nav.php:260 src/Module/BaseProfile.php:84
+#: mod/cal.php:243 mod/events.php:374 src/Content/Nav.php:197
+#: src/Content/Nav.php:261 src/Module/BaseProfile.php:84
#: src/Module/BaseProfile.php:95 view/theme/frio/theme.php:240
#: view/theme/frio/theme.php:244
msgid "Events"
@@ -105,7 +105,7 @@ msgid "calendar"
msgstr ""
#: mod/display.php:143 mod/photos.php:802
-#: src/Module/Conversation/Community.php:175 src/Module/Directory.php:49
+#: src/Module/Conversation/Community.php:190 src/Module/Directory.php:49
#: src/Module/Search/Index.php:65
msgid "Public access denied."
msgstr ""
@@ -119,7 +119,7 @@ msgid "The feed for this item is unavailable."
msgstr ""
#: mod/editpost.php:38 mod/events.php:217 mod/follow.php:56 mod/follow.php:130
-#: mod/item.php:181 mod/item.php:186 mod/item.php:865 mod/message.php:69
+#: mod/item.php:182 mod/item.php:187 mod/item.php:866 mod/message.php:69
#: mod/message.php:111 mod/notes.php:44 mod/ostatus_subscribe.php:33
#: mod/photos.php:160 mod/photos.php:891 mod/repair_ostatus.php:31
#: mod/settings.php:40 mod/settings.php:50 mod/settings.php:156
@@ -426,7 +426,7 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: mod/events.php:517 src/Module/Admin/Site.php:441 src/Module/Contact.php:477
+#: mod/events.php:517 src/Module/Admin/Site.php:439 src/Module/Contact.php:477
#: src/Module/Profile/Profile.php:249
msgid "Advanced"
msgstr ""
@@ -435,7 +435,7 @@ msgstr ""
msgid "Failed to remove event"
msgstr ""
-#: mod/fbrowser.php:61 src/Content/Nav.php:194 src/Module/BaseProfile.php:64
+#: mod/fbrowser.php:61 src/Content/Nav.php:195 src/Module/BaseProfile.php:64
#: view/theme/frio/theme.php:238
msgid "Photos"
msgstr ""
@@ -515,27 +515,27 @@ msgstr ""
msgid "The contact could not be added."
msgstr ""
-#: mod/item.php:131 mod/item.php:135
+#: mod/item.php:132 mod/item.php:136
msgid "Unable to locate original post."
msgstr ""
-#: mod/item.php:337 mod/item.php:342
+#: mod/item.php:338 mod/item.php:343
msgid "Empty post discarded."
msgstr ""
-#: mod/item.php:677
+#: mod/item.php:678
msgid "Post updated."
msgstr ""
-#: mod/item.php:687 mod/item.php:692
+#: mod/item.php:688 mod/item.php:693
msgid "Item wasn't stored."
msgstr ""
-#: mod/item.php:703
+#: mod/item.php:704
msgid "Item couldn't be fetched."
msgstr ""
-#: mod/item.php:843 src/Module/Admin/Themes/Details.php:39
+#: mod/item.php:844 src/Module/Admin/Themes/Details.php:39
#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42
#: src/Module/Debug/ItemBody.php:57
msgid "Item not found."
@@ -691,7 +691,7 @@ msgstr ""
msgid "Profile Match"
msgstr ""
-#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:288
+#: mod/message.php:46 mod/message.php:126 src/Content/Nav.php:289
msgid "New Message"
msgstr ""
@@ -717,7 +717,7 @@ msgstr ""
msgid "Discard"
msgstr ""
-#: mod/message.php:133 src/Content/Nav.php:285 view/theme/frio/theme.php:245
+#: mod/message.php:133 src/Content/Nav.php:286 view/theme/frio/theme.php:245
msgid "Messages"
msgstr ""
@@ -1191,7 +1191,7 @@ msgstr ""
msgid "Name"
msgstr ""
-#: mod/settings.php:177 src/Content/Nav.php:214
+#: mod/settings.php:177 src/Content/Nav.php:215
msgid "Home Page"
msgstr ""
@@ -1206,7 +1206,7 @@ msgstr ""
#: mod/settings.php:205 mod/settings.php:237 mod/settings.php:268
#: mod/settings.php:352 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:436 src/Module/Admin/Themes/Index.php:113
+#: src/Module/Admin/Site.php:434 src/Module/Admin/Themes/Index.php:113
#: src/Module/Admin/Tos.php:83 src/Module/Settings/Account.php:563
#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:201
msgid "Save Settings"
@@ -1389,7 +1389,7 @@ msgstr ""
msgid "Action after import:"
msgstr ""
-#: mod/settings.php:350 src/Content/Nav.php:282
+#: mod/settings.php:350 src/Content/Nav.php:283
msgid "Mark as seen"
msgstr ""
@@ -2274,7 +2274,7 @@ msgstr ""
msgid "Display membership date in profile"
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:241
+#: src/Content/ForumManager.php:151 src/Content/Nav.php:242
#: src/Content/Text/HTML.php:903 src/Content/Widget.php:524
msgid "Forums"
msgstr ""
@@ -2347,101 +2347,101 @@ msgstr ""
msgid "Languages"
msgstr ""
-#: src/Content/Nav.php:90
+#: src/Content/Nav.php:91
msgid "Nothing new here"
msgstr ""
-#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:50
+#: src/Content/Nav.php:95 src/Module/Special/HTTPException.php:50
msgid "Go back"
msgstr ""
-#: src/Content/Nav.php:95
+#: src/Content/Nav.php:96
msgid "Clear notifications"
msgstr ""
-#: src/Content/Nav.php:96 src/Content/Text/HTML.php:890
+#: src/Content/Nav.php:97 src/Content/Text/HTML.php:890
msgid "@name, !forum, #tags, content"
msgstr ""
-#: src/Content/Nav.php:185 src/Module/Security/Login.php:158
+#: src/Content/Nav.php:186 src/Module/Security/Login.php:158
msgid "Logout"
msgstr ""
-#: src/Content/Nav.php:185
+#: src/Content/Nav.php:186
msgid "End this session"
msgstr ""
-#: src/Content/Nav.php:187 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:188 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:159
msgid "Login"
msgstr ""
-#: src/Content/Nav.php:187
+#: src/Content/Nav.php:188
msgid "Sign in"
msgstr ""
-#: src/Content/Nav.php:192 src/Module/BaseProfile.php:56
+#: src/Content/Nav.php:193 src/Module/BaseProfile.php:56
#: src/Module/Contact.php:436 src/Module/Contact/Profile.php:380
#: src/Module/Settings/TwoFactor/Index.php:120 view/theme/frio/theme.php:236
msgid "Status"
msgstr ""
-#: src/Content/Nav.php:192 src/Content/Nav.php:275
+#: src/Content/Nav.php:193 src/Content/Nav.php:276
#: view/theme/frio/theme.php:236
msgid "Your posts and conversations"
msgstr ""
-#: src/Content/Nav.php:193 src/Module/BaseProfile.php:48
+#: src/Content/Nav.php:194 src/Module/BaseProfile.php:48
#: src/Module/BaseSettings.php:55 src/Module/Contact.php:460
#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:241
#: src/Module/Welcome.php:57 view/theme/frio/theme.php:237
msgid "Profile"
msgstr ""
-#: src/Content/Nav.php:193 view/theme/frio/theme.php:237
+#: src/Content/Nav.php:194 view/theme/frio/theme.php:237
msgid "Your profile page"
msgstr ""
-#: src/Content/Nav.php:194 view/theme/frio/theme.php:238
+#: src/Content/Nav.php:195 view/theme/frio/theme.php:238
msgid "Your photos"
msgstr ""
-#: src/Content/Nav.php:195 src/Module/BaseProfile.php:72
+#: src/Content/Nav.php:196 src/Module/BaseProfile.php:72
#: src/Module/BaseProfile.php:75 src/Module/Contact.php:452
#: view/theme/frio/theme.php:239
msgid "Media"
msgstr ""
-#: src/Content/Nav.php:195 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:196 view/theme/frio/theme.php:239
msgid "Your postings with media"
msgstr ""
-#: src/Content/Nav.php:196 view/theme/frio/theme.php:240
+#: src/Content/Nav.php:197 view/theme/frio/theme.php:240
msgid "Your events"
msgstr ""
-#: src/Content/Nav.php:197
+#: src/Content/Nav.php:198
msgid "Personal notes"
msgstr ""
-#: src/Content/Nav.php:197
+#: src/Content/Nav.php:198
msgid "Your personal notes"
msgstr ""
-#: src/Content/Nav.php:214 src/Content/Nav.php:275
+#: src/Content/Nav.php:215 src/Content/Nav.php:276
msgid "Home"
msgstr ""
-#: src/Content/Nav.php:218 src/Module/Register.php:168
+#: src/Content/Nav.php:219 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr ""
-#: src/Content/Nav.php:218
+#: src/Content/Nav.php:219
msgid "Create an account"
msgstr ""
-#: src/Content/Nav.php:224 src/Module/Help.php:67
+#: src/Content/Nav.php:225 src/Module/Help.php:67
#: src/Module/Settings/TwoFactor/AppSpecific.php:127
#: src/Module/Settings/TwoFactor/Index.php:119
#: src/Module/Settings/TwoFactor/Recovery.php:105
@@ -2449,158 +2449,158 @@ msgstr ""
msgid "Help"
msgstr ""
-#: src/Content/Nav.php:224
+#: src/Content/Nav.php:225
msgid "Help and documentation"
msgstr ""
-#: src/Content/Nav.php:228
+#: src/Content/Nav.php:229
msgid "Apps"
msgstr ""
-#: src/Content/Nav.php:228
+#: src/Content/Nav.php:229
msgid "Addon applications, utilities, games"
msgstr ""
-#: src/Content/Nav.php:232 src/Content/Text/HTML.php:888
+#: src/Content/Nav.php:233 src/Content/Text/HTML.php:888
#: src/Module/Admin/Logs/View.php:87 src/Module/Search/Index.php:112
msgid "Search"
msgstr ""
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:233
msgid "Search site content"
msgstr ""
-#: src/Content/Nav.php:235 src/Content/Text/HTML.php:897
+#: src/Content/Nav.php:236 src/Content/Text/HTML.php:897
msgid "Full Text"
msgstr ""
-#: src/Content/Nav.php:236 src/Content/Text/HTML.php:898
+#: src/Content/Nav.php:237 src/Content/Text/HTML.php:898
#: src/Content/Widget/TagCloud.php:68
msgid "Tags"
msgstr ""
-#: src/Content/Nav.php:237 src/Content/Nav.php:296
+#: src/Content/Nav.php:238 src/Content/Nav.php:297
#: src/Content/Text/HTML.php:899 src/Module/BaseProfile.php:125
#: src/Module/BaseProfile.php:128 src/Module/Contact.php:373
#: src/Module/Contact.php:467 view/theme/frio/theme.php:247
msgid "Contacts"
msgstr ""
-#: src/Content/Nav.php:256
+#: src/Content/Nav.php:257
msgid "Community"
msgstr ""
-#: src/Content/Nav.php:256
+#: src/Content/Nav.php:257
msgid "Conversations on this and other servers"
msgstr ""
-#: src/Content/Nav.php:260 src/Module/BaseProfile.php:87
+#: src/Content/Nav.php:261 src/Module/BaseProfile.php:87
#: src/Module/BaseProfile.php:98 view/theme/frio/theme.php:244
msgid "Events and Calendar"
msgstr ""
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:264
msgid "Directory"
msgstr ""
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:264
msgid "People directory"
msgstr ""
-#: src/Content/Nav.php:265 src/Module/BaseAdmin.php:88
+#: src/Content/Nav.php:266 src/Module/BaseAdmin.php:88
msgid "Information"
msgstr ""
-#: src/Content/Nav.php:265
+#: src/Content/Nav.php:266
msgid "Information about this friendica instance"
msgstr ""
-#: src/Content/Nav.php:268 src/Module/Admin/Tos.php:76
+#: src/Content/Nav.php:269 src/Module/Admin/Tos.php:76
#: src/Module/BaseAdmin.php:99 src/Module/Register.php:176
#: src/Module/Tos.php:87
msgid "Terms of Service"
msgstr ""
-#: src/Content/Nav.php:268
+#: src/Content/Nav.php:269
msgid "Terms of Service of this Friendica instance"
msgstr ""
-#: src/Content/Nav.php:273 view/theme/frio/theme.php:243
+#: src/Content/Nav.php:274 view/theme/frio/theme.php:243
msgid "Network"
msgstr ""
-#: src/Content/Nav.php:273 view/theme/frio/theme.php:243
+#: src/Content/Nav.php:274 view/theme/frio/theme.php:243
msgid "Conversations from your friends"
msgstr ""
-#: src/Content/Nav.php:279
+#: src/Content/Nav.php:280
msgid "Introductions"
msgstr ""
-#: src/Content/Nav.php:279
+#: src/Content/Nav.php:280
msgid "Friend Requests"
msgstr ""
-#: src/Content/Nav.php:280 src/Module/BaseNotifications.php:148
+#: src/Content/Nav.php:281 src/Module/BaseNotifications.php:148
#: src/Module/Notifications/Introductions.php:73
msgid "Notifications"
msgstr ""
-#: src/Content/Nav.php:281
+#: src/Content/Nav.php:282
msgid "See all notifications"
msgstr ""
-#: src/Content/Nav.php:282
+#: src/Content/Nav.php:283
msgid "Mark all system notifications as seen"
msgstr ""
-#: src/Content/Nav.php:285 view/theme/frio/theme.php:245
+#: src/Content/Nav.php:286 view/theme/frio/theme.php:245
msgid "Private mail"
msgstr ""
-#: src/Content/Nav.php:286
+#: src/Content/Nav.php:287
msgid "Inbox"
msgstr ""
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:288
msgid "Outbox"
msgstr ""
-#: src/Content/Nav.php:291
+#: src/Content/Nav.php:292
msgid "Accounts"
msgstr ""
-#: src/Content/Nav.php:291
+#: src/Content/Nav.php:292
msgid "Manage other pages"
msgstr ""
-#: src/Content/Nav.php:294 src/Module/Admin/Addons/Details.php:114
+#: src/Content/Nav.php:295 src/Module/Admin/Addons/Details.php:114
#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:122
#: src/Module/Welcome.php:52 view/theme/frio/theme.php:246
msgid "Settings"
msgstr ""
-#: src/Content/Nav.php:294 view/theme/frio/theme.php:246
+#: src/Content/Nav.php:295 view/theme/frio/theme.php:246
msgid "Account settings"
msgstr ""
-#: src/Content/Nav.php:296 view/theme/frio/theme.php:247
+#: src/Content/Nav.php:297 view/theme/frio/theme.php:247
msgid "Manage/edit friends and contacts"
msgstr ""
-#: src/Content/Nav.php:301 src/Module/BaseAdmin.php:129
+#: src/Content/Nav.php:302 src/Module/BaseAdmin.php:129
msgid "Admin"
msgstr ""
-#: src/Content/Nav.php:301
+#: src/Content/Nav.php:302
msgid "Site setup and configuration"
msgstr ""
-#: src/Content/Nav.php:304
+#: src/Content/Nav.php:305
msgid "Navigation"
msgstr ""
-#: src/Content/Nav.php:304
+#: src/Content/Nav.php:305
msgid "Site map"
msgstr ""
@@ -2639,8 +2639,8 @@ msgid ""
"%2$s %3$s"
msgstr ""
-#: src/Content/Text/BBCode.php:1263 src/Model/Item.php:3429
-#: src/Model/Item.php:3435 src/Model/Item.php:3436
+#: src/Content/Text/BBCode.php:1263 src/Model/Item.php:3456
+#: src/Model/Item.php:3462 src/Model/Item.php:3463
msgid "Link to source"
msgstr ""
@@ -3421,36 +3421,36 @@ msgstr ""
msgid "Enter a valid existing folder"
msgstr ""
-#: src/Core/Update.php:67
+#: src/Core/Update.php:69
#, 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:78
+#: src/Core/Update.php:80
#, 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:153
+#: src/Core/Update.php:155
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
-#: src/Core/Update.php:191
+#: src/Core/Update.php:193
#, php-format
msgid "%s: executing post update %d"
msgstr ""
-#: src/Core/Update.php:261
+#: src/Core/Update.php:263
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: src/Core/Update.php:315
+#: src/Core/Update.php:317
#, php-format
msgid ""
"\n"
@@ -3462,16 +3462,16 @@ msgid ""
"might be invalid."
msgstr ""
-#: src/Core/Update.php:321
+#: src/Core/Update.php:323
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
-#: src/Core/Update.php:325 src/Core/Update.php:367
+#: src/Core/Update.php:327 src/Core/Update.php:369
msgid "[Friendica Notify] Database update"
msgstr ""
-#: src/Core/Update.php:361
+#: src/Core/Update.php:363
#, php-format
msgid ""
"\n"
@@ -3799,49 +3799,49 @@ msgstr ""
msgid "post"
msgstr ""
-#: src/Model/Item.php:2978
+#: src/Model/Item.php:3005
#, php-format
msgid "Content warning: %s"
msgstr ""
-#: src/Model/Item.php:3341
+#: src/Model/Item.php:3368
msgid "bytes"
msgstr ""
-#: src/Model/Item.php:3372
+#: src/Model/Item.php:3399
#, 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:3374
+#: src/Model/Item.php:3401
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3379
+#: src/Model/Item.php:3406
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3381
+#: src/Model/Item.php:3408
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3383
+#: src/Model/Item.php:3410
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3417 src/Model/Item.php:3418
+#: src/Model/Item.php:3444 src/Model/Item.php:3445
msgid "View on separate page"
msgstr ""
@@ -4294,7 +4294,7 @@ msgstr ""
#: src/Module/Admin/Blocklist/Server/Index.php:93
#: src/Module/Admin/Federation.php:201 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:433
+#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:431
#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:233
#: 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:136
@@ -5153,470 +5153,470 @@ msgstr ""
msgid "Priority"
msgstr ""
-#: src/Module/Admin/Site.php:338 src/Module/Settings/Display.php:138
+#: src/Module/Admin/Site.php:336 src/Module/Settings/Display.php:138
msgid "No special theme for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:355 src/Module/Settings/Display.php:148
+#: src/Module/Admin/Site.php:353 src/Module/Settings/Display.php:148
#, php-format
msgid "%s - (Experimental)"
msgstr ""
-#: src/Module/Admin/Site.php:367
-msgid "No community page for local users"
-msgstr ""
-
-#: src/Module/Admin/Site.php:368
+#: src/Module/Admin/Site.php:365
msgid "No community page"
msgstr ""
-#: src/Module/Admin/Site.php:369
+#: src/Module/Admin/Site.php:366
+msgid "No community page for visitors"
+msgstr ""
+
+#: src/Module/Admin/Site.php:367
msgid "Public postings from users of this site"
msgstr ""
-#: src/Module/Admin/Site.php:370
+#: src/Module/Admin/Site.php:368
msgid "Public postings from the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:371
+#: src/Module/Admin/Site.php:369
msgid "Public postings from local users and the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:377
+#: src/Module/Admin/Site.php:375
msgid "Multi user instance"
msgstr ""
-#: src/Module/Admin/Site.php:404
+#: src/Module/Admin/Site.php:402
msgid "Closed"
msgstr ""
-#: src/Module/Admin/Site.php:405
+#: src/Module/Admin/Site.php:403
msgid "Requires approval"
msgstr ""
-#: src/Module/Admin/Site.php:406
+#: src/Module/Admin/Site.php:404
msgid "Open"
msgstr ""
-#: src/Module/Admin/Site.php:410 src/Module/Install.php:222
+#: src/Module/Admin/Site.php:408 src/Module/Install.php:222
msgid "No SSL policy, links will track page SSL state"
msgstr ""
-#: src/Module/Admin/Site.php:411 src/Module/Install.php:223
+#: src/Module/Admin/Site.php:409 src/Module/Install.php:223
msgid "Force all links to use SSL"
msgstr ""
-#: src/Module/Admin/Site.php:412 src/Module/Install.php:224
+#: src/Module/Admin/Site.php:410 src/Module/Install.php:224
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
-#: src/Module/Admin/Site.php:416
+#: src/Module/Admin/Site.php:414
msgid "Don't check"
msgstr ""
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:415
msgid "check the stable version"
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: src/Module/Admin/Site.php:416
msgid "check the development version"
msgstr ""
-#: src/Module/Admin/Site.php:422
+#: src/Module/Admin/Site.php:420
msgid "none"
msgstr ""
-#: src/Module/Admin/Site.php:423
+#: src/Module/Admin/Site.php:421
msgid "Local contacts"
msgstr ""
-#: src/Module/Admin/Site.php:424
+#: src/Module/Admin/Site.php:422
msgid "Interactors"
msgstr ""
-#: src/Module/Admin/Site.php:434 src/Module/BaseAdmin.php:93
+#: src/Module/Admin/Site.php:432 src/Module/BaseAdmin.php:93
msgid "Site"
msgstr ""
-#: src/Module/Admin/Site.php:435
+#: src/Module/Admin/Site.php:433
msgid "General Information"
msgstr ""
-#: src/Module/Admin/Site.php:437
+#: src/Module/Admin/Site.php:435
msgid "Republish users to directory"
msgstr ""
-#: src/Module/Admin/Site.php:438 src/Module/Register.php:152
+#: src/Module/Admin/Site.php:436 src/Module/Register.php:152
msgid "Registration"
msgstr ""
-#: src/Module/Admin/Site.php:439
+#: src/Module/Admin/Site.php:437
msgid "File upload"
msgstr ""
-#: src/Module/Admin/Site.php:440
+#: src/Module/Admin/Site.php:438
msgid "Policies"
msgstr ""
-#: src/Module/Admin/Site.php:442
+#: src/Module/Admin/Site.php:440
msgid "Auto Discovered Contact Directory"
msgstr ""
-#: src/Module/Admin/Site.php:443
+#: src/Module/Admin/Site.php:441
msgid "Performance"
msgstr ""
-#: src/Module/Admin/Site.php:444
+#: src/Module/Admin/Site.php:442
msgid "Worker"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:443
msgid "Message Relay"
msgstr ""
-#: src/Module/Admin/Site.php:446
+#: src/Module/Admin/Site.php:444
msgid ""
"Use the command \"console relay\" in the command line to add or remove "
"relays."
msgstr ""
-#: src/Module/Admin/Site.php:447
+#: src/Module/Admin/Site.php:445
msgid "The system is not subscribed to any relays at the moment."
msgstr ""
-#: src/Module/Admin/Site.php:448
+#: src/Module/Admin/Site.php:446
msgid "The system is currently subscribed to the following relays:"
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: src/Module/Admin/Site.php:448
msgid "Relocate Node"
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: src/Module/Admin/Site.php:449
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:452
+#: src/Module/Admin/Site.php:450
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:454
msgid "Site name"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: src/Module/Admin/Site.php:455
msgid "Sender Email"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: src/Module/Admin/Site.php:455
msgid ""
"The email address your server shall use to send notification emails from."
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: src/Module/Admin/Site.php:456
msgid "Name of the system actor"
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: src/Module/Admin/Site.php:456
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:459
+#: src/Module/Admin/Site.php:457
msgid "Banner/Logo"
msgstr ""
-#: src/Module/Admin/Site.php:460
+#: src/Module/Admin/Site.php:458
msgid "Email Banner/Logo"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: src/Module/Admin/Site.php:459
msgid "Shortcut icon"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: src/Module/Admin/Site.php:459
msgid "Link to an icon that will be used for browsers."
msgstr ""
-#: src/Module/Admin/Site.php:462
+#: src/Module/Admin/Site.php:460
msgid "Touch icon"
msgstr ""
-#: src/Module/Admin/Site.php:462
+#: src/Module/Admin/Site.php:460
msgid "Link to an icon that will be used for tablets and mobiles."
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: src/Module/Admin/Site.php:461
msgid "Additional Info"
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: src/Module/Admin/Site.php:461
#, 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:464
+#: src/Module/Admin/Site.php:462
msgid "System language"
msgstr ""
-#: src/Module/Admin/Site.php:465
+#: src/Module/Admin/Site.php:463
msgid "System theme"
msgstr ""
-#: src/Module/Admin/Site.php:465
+#: src/Module/Admin/Site.php:463
#, php-format
msgid ""
"Default system theme - may be over-ridden by user profiles - Change default theme settings"
msgstr ""
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:464
msgid "Mobile system theme"
msgstr ""
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:464
msgid "Theme for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:467 src/Module/Install.php:232
+#: src/Module/Admin/Site.php:465 src/Module/Install.php:232
msgid "SSL link policy"
msgstr ""
-#: src/Module/Admin/Site.php:467 src/Module/Install.php:234
+#: src/Module/Admin/Site.php:465 src/Module/Install.php:234
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:466
msgid "Force SSL"
msgstr ""
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:466
msgid ""
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
"to endless loops."
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:467
msgid "Show help entry from navigation menu"
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:467
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:470
+#: src/Module/Admin/Site.php:468
msgid "Single user instance"
msgstr ""
-#: src/Module/Admin/Site.php:470
+#: src/Module/Admin/Site.php:468
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: src/Module/Admin/Site.php:470
msgid "Maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: src/Module/Admin/Site.php:470
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:471
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:471
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:474
+#: src/Module/Admin/Site.php:472
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:474
+#: src/Module/Admin/Site.php:472
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:476
+#: src/Module/Admin/Site.php:474
msgid "Register policy"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: src/Module/Admin/Site.php:475
msgid "Maximum Daily Registrations"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: src/Module/Admin/Site.php:475
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:478
+#: src/Module/Admin/Site.php:476
msgid "Register text"
msgstr ""
-#: src/Module/Admin/Site.php:478
+#: src/Module/Admin/Site.php:476
msgid ""
"Will be displayed prominently on the registration page. You can use BBCode "
"here."
msgstr ""
-#: src/Module/Admin/Site.php:479
+#: src/Module/Admin/Site.php:477
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:479
+#: src/Module/Admin/Site.php:477
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:480
+#: src/Module/Admin/Site.php:478
msgid "Accounts abandoned after x days"
msgstr ""
-#: src/Module/Admin/Site.php:480
+#: src/Module/Admin/Site.php:478
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: src/Module/Admin/Site.php:481
+#: src/Module/Admin/Site.php:479
msgid "Allowed friend domains"
msgstr ""
-#: src/Module/Admin/Site.php:481
+#: src/Module/Admin/Site.php:479
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:482
+#: src/Module/Admin/Site.php:480
msgid "Allowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:482
+#: src/Module/Admin/Site.php:480
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:483
+#: src/Module/Admin/Site.php:481
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:483
+#: src/Module/Admin/Site.php:481
msgid ""
"Don't show the rich content (e.g. embedded PDF), except from the domains "
"listed below."
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: src/Module/Admin/Site.php:482
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: src/Module/Admin/Site.php:482
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:485
+#: src/Module/Admin/Site.php:483
msgid "Block public"
msgstr ""
-#: src/Module/Admin/Site.php:485
+#: src/Module/Admin/Site.php:483
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:486
+#: src/Module/Admin/Site.php:484
msgid "Force publish"
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: src/Module/Admin/Site.php:484
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: src/Module/Admin/Site.php:484
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:487
+#: src/Module/Admin/Site.php:485
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:487
+#: src/Module/Admin/Site.php:485
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:488
+#: src/Module/Admin/Site.php:486
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:486
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: src/Module/Admin/Site.php:487
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: src/Module/Admin/Site.php:487
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:490
+#: src/Module/Admin/Site.php:488
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:490
+#: src/Module/Admin/Site.php:488
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
-#: src/Module/Admin/Site.php:491
+#: src/Module/Admin/Site.php:489
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:491
+#: src/Module/Admin/Site.php:489
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:492
+#: src/Module/Admin/Site.php:490
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:492
+#: src/Module/Admin/Site.php:490
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:493
+#: src/Module/Admin/Site.php:491
msgid "Proxify external content"
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:491
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:494
+#: src/Module/Admin/Site.php:492
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:494
+#: src/Module/Admin/Site.php:492
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:495
+#: src/Module/Admin/Site.php:493
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:495
+#: src/Module/Admin/Site.php:493
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:496
+#: src/Module/Admin/Site.php:494
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:496
+#: src/Module/Admin/Site.php:494
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:495
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: src/Module/Admin/Site.php:495
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:496
msgid "Enable Fullname check"
msgstr ""
-#: src/Module/Admin/Site.php:498
+#: src/Module/Admin/Site.php:496
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:499
+#: src/Module/Admin/Site.php:497
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:499
+#: src/Module/Admin/Site.php:497
msgid ""
"Which community pages should be available for visitors. Local users always "
"see both pages."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:498
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:498
msgid ""
"The maximum number of posts per user on the community page. (Not valid for "
"\"Global Community\")"
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:500
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:502
+#: src/Module/Admin/Site.php:500
msgid ""
"Enable built-in mail support to poll IMAP folders and to reply via mail."
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: src/Module/Admin/Site.php:501
msgid ""
"Mail support can't be enabled because the PHP IMAP module is not installed."
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:502
msgid "Enable OStatus support"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:502
msgid ""
"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
"communications in OStatus are public."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:504
msgid ""
"Diaspora support can't be enabled because Friendica was installed into a sub "
"directory."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:505
msgid "Enable Diaspora support"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:505
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:506
msgid "Verify SSL"
msgstr ""
-#: src/Module/Admin/Site.php:508
+#: src/Module/Admin/Site.php:506
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:509
+#: src/Module/Admin/Site.php:507
msgid "Proxy user"
msgstr ""
-#: src/Module/Admin/Site.php:509
+#: src/Module/Admin/Site.php:507
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:508
msgid "Proxy URL"
msgstr ""
-#: src/Module/Admin/Site.php:510
+#: src/Module/Admin/Site.php:508
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:511
+#: src/Module/Admin/Site.php:509
msgid "Network timeout"
msgstr ""
-#: src/Module/Admin/Site.php:511
+#: src/Module/Admin/Site.php:509
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:510
msgid "Maximum Load Average"
msgstr ""
-#: src/Module/Admin/Site.php:512
+#: src/Module/Admin/Site.php:510
#, php-format
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default %d."
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:511
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:513
+#: src/Module/Admin/Site.php:511
msgid ""
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
"default 0 (deactivated)."
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:512
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:514
+#: src/Module/Admin/Site.php:512
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:514
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:516
+#: src/Module/Admin/Site.php:514
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:517
+#: src/Module/Admin/Site.php:515
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:518
+#: src/Module/Admin/Site.php:516
msgid ""
"Local contacts - contacts of our local contacts are discovered for their "
"followers/followings."
msgstr ""
-#: src/Module/Admin/Site.php:519
+#: src/Module/Admin/Site.php:517
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:521
+#: src/Module/Admin/Site.php:519
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:521
+#: src/Module/Admin/Site.php:519
msgid ""
"if enabled, the system will check periodically for new contacts on the "
"defined directory server."
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:521
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:523
+#: src/Module/Admin/Site.php:521
msgid "Number of days after which a server is requeried for his contacts."
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:522
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:524
+#: src/Module/Admin/Site.php:522
msgid ""
"Periodically query other servers for contacts. The system queries Friendica, "
"Mastodon and Hubzilla servers."
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:523
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:525
+#: src/Module/Admin/Site.php:523
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:527
+#: src/Module/Admin/Site.php:525
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:527
+#: src/Module/Admin/Site.php:525
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 for details."
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:527
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:529
+#: src/Module/Admin/Site.php:527
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:530
+#: src/Module/Admin/Site.php:528
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:530
+#: src/Module/Admin/Site.php:528
msgid "Suppress showing a list of hashtags at the end of the posting."
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:529
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:531
+#: src/Module/Admin/Site.php:529
msgid ""
"Remove old remote items, orphaned database records and old content from some "
"other helper tables."
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:530
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:532
+#: src/Module/Admin/Site.php:530
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:533
+#: src/Module/Admin/Site.php:531
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:533
+#: src/Module/Admin/Site.php:531
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:534
+#: src/Module/Admin/Site.php:532
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:534
+#: src/Module/Admin/Site.php:532
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:535
+#: src/Module/Admin/Site.php:533
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:535
+#: src/Module/Admin/Site.php:533
msgid "How much comments should be shown for each post? Default value is 100."
msgstr ""
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:534
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:536
+#: src/Module/Admin/Site.php:534
msgid ""
"How many comments should be shown on the single view for each post? Default "
"value is 1000."
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:535
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:537
+#: src/Module/Admin/Site.php:535
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:538
+#: src/Module/Admin/Site.php:536
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:538
+#: src/Module/Admin/Site.php:536
msgid "On large systems the text search can slow down the system extremely."
msgstr ""
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:537
msgid "Generate counts per contact group when calculating network count"
msgstr ""
-#: src/Module/Admin/Site.php:539
+#: src/Module/Admin/Site.php:537
msgid ""
"On systems with users that heavily use contact groups the query can be very "
"expensive."
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:539
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:541
+#: src/Module/Admin/Site.php:539
#, 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:542
+#: src/Module/Admin/Site.php:540
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:542
+#: src/Module/Admin/Site.php:540
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:544
+#: src/Module/Admin/Site.php:542
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:544
+#: src/Module/Admin/Site.php:542
msgid ""
"Enables the direct transfer to other servers without using the relay servers"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:543
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:543
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:545 src/Module/Contact/Profile.php:273
+#: src/Module/Admin/Site.php:543 src/Module/Contact/Profile.php:273
#: src/Module/Settings/TwoFactor/Index.php:126
msgid "Disabled"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:543
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:545
+#: src/Module/Admin/Site.php:543
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:544
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:546
+#: src/Module/Admin/Site.php:544
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:545
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:547
+#: src/Module/Admin/Site.php:545
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:546
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:548
+#: src/Module/Admin/Site.php:546
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:551
+#: src/Module/Admin/Site.php:549
msgid "Start Relocation"
msgstr ""
@@ -7256,50 +7256,50 @@ msgstr ""
msgid "Yes"
msgstr ""
-#: src/Module/Conversation/Community.php:61
+#: src/Module/Conversation/Community.php:76
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:74
+#: src/Module/Conversation/Community.php:89
msgid "Local Community"
msgstr ""
-#: src/Module/Conversation/Community.php:77
+#: src/Module/Conversation/Community.php:92
msgid "Posts from local users on this server"
msgstr ""
-#: src/Module/Conversation/Community.php:85
+#: src/Module/Conversation/Community.php:100
msgid "Global Community"
msgstr ""
-#: src/Module/Conversation/Community.php:88
+#: src/Module/Conversation/Community.php:103
msgid "Posts from users of the whole federated network"
msgstr ""
-#: src/Module/Conversation/Community.php:121
+#: src/Module/Conversation/Community.php:136
msgid "Own Contacts"
msgstr ""
-#: src/Module/Conversation/Community.php:125
+#: src/Module/Conversation/Community.php:140
msgid "Include"
msgstr ""
-#: src/Module/Conversation/Community.php:126
+#: src/Module/Conversation/Community.php:141
msgid "Hide"
msgstr ""
-#: src/Module/Conversation/Community.php:143 src/Module/Search/Index.php:152
+#: src/Module/Conversation/Community.php:158 src/Module/Search/Index.php:152
#: src/Module/Search/Index.php:194
msgid "No results."
msgstr ""
-#: src/Module/Conversation/Community.php:199
+#: src/Module/Conversation/Community.php:214
msgid "Community option not available."
msgstr ""
-#: src/Module/Conversation/Community.php:215
+#: src/Module/Conversation/Community.php:230
msgid "Not available."
msgstr ""
@@ -8410,19 +8410,19 @@ msgstr ""
#: src/Module/Profile/Profile.php:326 src/Module/Profile/Profile.php:329
#: src/Module/Profile/Status.php:66 src/Module/Profile/Status.php:69
-#: src/Protocol/Feed.php:1025 src/Protocol/OStatus.php:1046
+#: src/Protocol/Feed.php:1026 src/Protocol/OStatus.php:1046
#, php-format
msgid "%s's timeline"
msgstr ""
#: src/Module/Profile/Profile.php:327 src/Module/Profile/Status.php:67
-#: src/Protocol/Feed.php:1029 src/Protocol/OStatus.php:1051
+#: src/Protocol/Feed.php:1030 src/Protocol/OStatus.php:1051
#, php-format
msgid "%s's posts"
msgstr ""
#: src/Module/Profile/Profile.php:328 src/Module/Profile/Status.php:68
-#: src/Protocol/Feed.php:1032 src/Protocol/OStatus.php:1055
+#: src/Protocol/Feed.php:1033 src/Protocol/OStatus.php:1055
#, php-format
msgid "%s's comments"
msgstr ""