Merge pull request #10922 from annando/dont-cache-avatar
New option to activate/deactivate contact avatar cache
This commit is contained in:
commit
4a50a83437
6 changed files with 364 additions and 334 deletions
|
|
@ -1553,18 +1553,22 @@ class Contact
|
||||||
*/
|
*/
|
||||||
public static function checkAvatarCache(int $cid)
|
public static function checkAvatarCache(int $cid)
|
||||||
{
|
{
|
||||||
$contact = DBA::selectFirst('contact', ['url', 'avatar', 'photo', 'thumb', 'micro'], ['id' => $cid, 'uid' => 0, 'self' => false]);
|
$contact = DBA::selectFirst('contact', ['url', 'network', 'avatar', 'photo', 'thumb', 'micro'], ['id' => $cid, 'uid' => 0, 'self' => false]);
|
||||||
if (!DBA::isResult($contact)) {
|
if (!DBA::isResult($contact)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($contact['avatar']) || (!empty($contact['photo']) && !empty($contact['thumb']) && !empty($contact['micro']))) {
|
if (in_array($contact['network'], [Protocol::FEED, Protocol::MAIL]) || DI::config()->get('system', 'cache_contact_avatar')) {
|
||||||
|
if (!empty($contact['avatar']) && (empty($contact['photo']) || empty($contact['thumb']) || empty($contact['micro']))) {
|
||||||
|
Logger::info('Adding avatar cache', ['id' => $cid, 'contact' => $contact]);
|
||||||
|
self::updateAvatar($cid, $contact['avatar'], true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} elseif (!empty($contact['photo']) || !empty($contact['thumb']) || !empty($contact['micro'])) {
|
||||||
|
Logger::info('Removing avatar cache', ['id' => $cid, 'contact' => $contact]);
|
||||||
|
self::updateAvatar($cid, $contact['avatar'], true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger::info('Adding avatar cache', ['id' => $cid, 'contact' => $contact]);
|
|
||||||
|
|
||||||
self::updateAvatar($cid, $contact['avatar'], true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -1868,54 +1872,61 @@ class Contact
|
||||||
$avatar = self::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
|
$avatar = self::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($default_avatar && Proxy::isLocalImage($avatar)) {
|
if (in_array($contact['network'], [Protocol::FEED, Protocol::MAIL]) || DI::config()->get('system', 'cache_contact_avatar')) {
|
||||||
$fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(),
|
if ($default_avatar && Proxy::isLocalImage($avatar)) {
|
||||||
'photo' => $avatar,
|
$fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(),
|
||||||
'thumb' => self::getDefaultAvatar($contact, Proxy::SIZE_THUMB),
|
'photo' => $avatar,
|
||||||
'micro' => self::getDefaultAvatar($contact, Proxy::SIZE_MICRO)];
|
'thumb' => self::getDefaultAvatar($contact, Proxy::SIZE_THUMB),
|
||||||
Logger::debug('Use default avatar', ['id' => $cid, 'uid' => $uid]);
|
'micro' => self::getDefaultAvatar($contact, Proxy::SIZE_MICRO)];
|
||||||
}
|
Logger::debug('Use default avatar', ['id' => $cid, 'uid' => $uid]);
|
||||||
|
|
||||||
// Use the data from the self account
|
|
||||||
if (empty($fields)) {
|
|
||||||
$local_uid = User::getIdForURL($contact['url']);
|
|
||||||
if (!empty($local_uid)) {
|
|
||||||
$fields = self::selectFirst(['avatar', 'avatar-date', 'photo', 'thumb', 'micro'], ['self' => true, 'uid' => $local_uid]);
|
|
||||||
Logger::debug('Use owner data', ['id' => $cid, 'uid' => $uid, 'owner-uid' => $local_uid]);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (empty($fields)) {
|
// Use the data from the self account
|
||||||
$update = ($contact['avatar'] != $avatar) || $force;
|
if (empty($fields)) {
|
||||||
|
$local_uid = User::getIdForURL($contact['url']);
|
||||||
|
if (!empty($local_uid)) {
|
||||||
|
$fields = self::selectFirst(['avatar', 'avatar-date', 'photo', 'thumb', 'micro'], ['self' => true, 'uid' => $local_uid]);
|
||||||
|
Logger::debug('Use owner data', ['id' => $cid, 'uid' => $uid, 'owner-uid' => $local_uid]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!$update) {
|
if (empty($fields)) {
|
||||||
$data = [
|
$update = ($contact['avatar'] != $avatar) || $force;
|
||||||
$contact['photo'] ?? '',
|
|
||||||
$contact['thumb'] ?? '',
|
|
||||||
$contact['micro'] ?? '',
|
|
||||||
];
|
|
||||||
|
|
||||||
foreach ($data as $image_uri) {
|
if (!$update) {
|
||||||
$image_rid = Photo::ridFromURI($image_uri);
|
$data = [
|
||||||
if ($image_rid && !Photo::exists(['resource-id' => $image_rid, 'uid' => $uid])) {
|
$contact['photo'] ?? '',
|
||||||
Logger::debug('Regenerating avatar', ['contact uid' => $uid, 'cid' => $cid, 'missing photo' => $image_rid, 'avatar' => $contact['avatar']]);
|
$contact['thumb'] ?? '',
|
||||||
$update = true;
|
$contact['micro'] ?? '',
|
||||||
|
];
|
||||||
|
|
||||||
|
foreach ($data as $image_uri) {
|
||||||
|
$image_rid = Photo::ridFromURI($image_uri);
|
||||||
|
if ($image_rid && !Photo::exists(['resource-id' => $image_rid, 'uid' => $uid])) {
|
||||||
|
Logger::debug('Regenerating avatar', ['contact uid' => $uid, 'cid' => $cid, 'missing photo' => $image_rid, 'avatar' => $contact['avatar']]);
|
||||||
|
$update = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if ($update) {
|
if ($update) {
|
||||||
$photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
|
$photos = Photo::importProfilePhoto($avatar, $uid, $cid, true);
|
||||||
if ($photos) {
|
if ($photos) {
|
||||||
$fields = ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()];
|
$fields = ['avatar' => $avatar, 'photo' => $photos[0], 'thumb' => $photos[1], 'micro' => $photos[2], 'avatar-date' => DateTimeFormat::utcNow()];
|
||||||
$update = !empty($fields);
|
$update = !empty($fields);
|
||||||
Logger::debug('Created new cached avatars', ['id' => $cid, 'uid' => $uid, 'owner-uid' => $local_uid]);
|
Logger::debug('Created new cached avatars', ['id' => $cid, 'uid' => $uid, 'owner-uid' => $local_uid]);
|
||||||
} else {
|
} else {
|
||||||
$update = false;
|
$update = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$update = ($fields['photo'] . $fields['thumb'] . $fields['micro'] != $contact['photo'] . $contact['thumb'] . $contact['micro']) || $force;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$update = ($fields['photo'] . $fields['thumb'] . $fields['micro'] != $contact['photo'] . $contact['thumb'] . $contact['micro']) || $force;
|
Photo::delete(['uid' => $uid, 'contact-id' => $cid, 'photo-type' => Photo::CONTACT_AVATAR]);
|
||||||
|
$fields = ['avatar' => $avatar, 'avatar-date' => DateTimeFormat::utcNow(),
|
||||||
|
'photo' => '', 'thumb' => '', 'micro' => ''];
|
||||||
|
$update = ($avatar != $contact['avatar'] . $contact['photo'] . $contact['thumb'] . $contact['micro']) || $force;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$update) {
|
if (!$update) {
|
||||||
|
|
|
||||||
|
|
@ -163,6 +163,7 @@ class Site extends BaseAdmin
|
||||||
$allow_users_remote_self = !empty($_POST['allow_users_remote_self']);
|
$allow_users_remote_self = !empty($_POST['allow_users_remote_self']);
|
||||||
$explicit_content = !empty($_POST['explicit_content']);
|
$explicit_content = !empty($_POST['explicit_content']);
|
||||||
$proxify_content = !empty($_POST['proxify_content']);
|
$proxify_content = !empty($_POST['proxify_content']);
|
||||||
|
$cache_contact_avatar = !empty($_POST['cache_contact_avatar']);
|
||||||
|
|
||||||
$enable_multi_reg = !empty($_POST['enable_multi_reg']);
|
$enable_multi_reg = !empty($_POST['enable_multi_reg']);
|
||||||
$enable_openid = !empty($_POST['enable_openid']);
|
$enable_openid = !empty($_POST['enable_openid']);
|
||||||
|
|
@ -330,6 +331,7 @@ class Site extends BaseAdmin
|
||||||
DI::config()->set('system', 'allow_users_remote_self', $allow_users_remote_self);
|
DI::config()->set('system', 'allow_users_remote_self', $allow_users_remote_self);
|
||||||
DI::config()->set('system', 'explicit_content' , $explicit_content);
|
DI::config()->set('system', 'explicit_content' , $explicit_content);
|
||||||
DI::config()->set('system', 'proxify_content' , $proxify_content);
|
DI::config()->set('system', 'proxify_content' , $proxify_content);
|
||||||
|
DI::config()->set('system', 'cache_contact_avatar' , $cache_contact_avatar);
|
||||||
DI::config()->set('system', 'check_new_version_url' , $check_new_version_url);
|
DI::config()->set('system', 'check_new_version_url' , $check_new_version_url);
|
||||||
|
|
||||||
DI::config()->set('system', 'block_extended_register', !$enable_multi_reg);
|
DI::config()->set('system', 'block_extended_register', !$enable_multi_reg);
|
||||||
|
|
@ -554,6 +556,7 @@ class Site extends BaseAdmin
|
||||||
'$disable_embedded' => ['disable_embedded', DI::l10n()->t('Don\'t embed private images in posts'), DI::config()->get('system', 'disable_embedded'), DI::l10n()->t('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.')],
|
'$disable_embedded' => ['disable_embedded', DI::l10n()->t('Don\'t embed private images in posts'), DI::config()->get('system', 'disable_embedded'), DI::l10n()->t('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.')],
|
||||||
'$explicit_content' => ['explicit_content', DI::l10n()->t('Explicit Content'), DI::config()->get('system', 'explicit_content'), DI::l10n()->t('Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page.')],
|
'$explicit_content' => ['explicit_content', DI::l10n()->t('Explicit Content'), DI::config()->get('system', 'explicit_content'), DI::l10n()->t('Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page.')],
|
||||||
'$proxify_content' => ['proxify_content', DI::l10n()->t('Proxify external content'), DI::config()->get('system', 'proxify_content'), DI::l10n()->t('Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.')],
|
'$proxify_content' => ['proxify_content', DI::l10n()->t('Proxify external content'), DI::config()->get('system', 'proxify_content'), DI::l10n()->t('Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.')],
|
||||||
|
'$cache_contact_avatar' => ['cache_contact_avatar', DI::l10n()->t('Cache contact avatars'), DI::config()->get('system', 'cache_contact_avatar'), DI::l10n()->t('Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.')],
|
||||||
'$allow_users_remote_self'=> ['allow_users_remote_self', DI::l10n()->t('Allow Users to set remote_self'), DI::config()->get('system', 'allow_users_remote_self'), DI::l10n()->t('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.')],
|
'$allow_users_remote_self'=> ['allow_users_remote_self', DI::l10n()->t('Allow Users to set remote_self'), DI::config()->get('system', 'allow_users_remote_self'), DI::l10n()->t('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.')],
|
||||||
'$enable_multi_reg' => ['enable_multi_reg', DI::l10n()->t('Enable multiple registrations'), !DI::config()->get('system', 'block_extended_register'), DI::l10n()->t('Enable users to register additional accounts for use as pages.')],
|
'$enable_multi_reg' => ['enable_multi_reg', DI::l10n()->t('Enable multiple registrations'), !DI::config()->get('system', 'block_extended_register'), DI::l10n()->t('Enable users to register additional accounts for use as pages.')],
|
||||||
'$enable_openid' => ['enable_openid', DI::l10n()->t('Enable OpenID'), !DI::config()->get('system', 'no_openid'), DI::l10n()->t('Enable OpenID support for registration and logins.')],
|
'$enable_openid' => ['enable_openid', DI::l10n()->t('Enable OpenID'), !DI::config()->get('system', 'no_openid'), DI::l10n()->t('Enable OpenID support for registration and logins.')],
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,10 @@ return [
|
||||||
// Themes users can change to in their settings.
|
// Themes users can change to in their settings.
|
||||||
'allowed_themes' => 'frio,quattro,vier,duepuntozero,smoothly',
|
'allowed_themes' => 'frio,quattro,vier,duepuntozero,smoothly',
|
||||||
|
|
||||||
|
// cache_contact_avatar (Boolean)
|
||||||
|
// Cache versions of the contact avatars. Uses a lot of storage space
|
||||||
|
'cache_contact_avatar' => true,
|
||||||
|
|
||||||
// curl_timeout (Integer)
|
// curl_timeout (Integer)
|
||||||
// Value is in seconds. Set to 0 for unlimited (not recommended).
|
// Value is in seconds. Set to 0 for unlimited (not recommended).
|
||||||
'curl_timeout' => 60,
|
'curl_timeout' => 60,
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2021.12-dev\n"
|
"Project-Id-Version: 2021.12-dev\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2021-10-20 15:10+0200\n"
|
"POT-Creation-Date: 2021-10-23 17:25+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
|
@ -51,10 +51,10 @@ msgstr ""
|
||||||
#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106
|
#: src/Module/BaseApi.php:97 src/Module/BaseApi.php:106
|
||||||
#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:328
|
#: src/Module/BaseNotifications.php:88 src/Module/Contact.php:328
|
||||||
#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118
|
#: src/Module/Contact/Advanced.php:44 src/Module/Delegation.php:118
|
||||||
#: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44
|
#: src/Module/FollowConfirm.php:17 src/Module/FriendSuggest.php:44
|
||||||
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41
|
#: src/Module/Group.php:45 src/Module/Group.php:90 src/Module/Invite.php:41
|
||||||
#: src/Module/Invite.php:130 src/Module/Notifications/Notification.php:47
|
#: src/Module/Invite.php:130 src/Module/Notifications/Notification.php:48
|
||||||
#: src/Module/Notifications/Notification.php:76
|
#: src/Module/Notifications/Notification.php:79
|
||||||
#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56
|
#: src/Module/Profile/Common.php:56 src/Module/Profile/Contacts.php:56
|
||||||
#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56
|
#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56
|
||||||
#: src/Module/Register.php:64 src/Module/Register.php:77
|
#: src/Module/Register.php:64 src/Module/Register.php:77
|
||||||
|
|
@ -62,7 +62,7 @@ msgstr ""
|
||||||
#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42
|
#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42
|
||||||
#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:43
|
#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:43
|
||||||
#: src/Module/Settings/Display.php:121
|
#: src/Module/Settings/Display.php:121
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:164
|
#: src/Module/Settings/Profile/Photo/Crop.php:166
|
||||||
#: src/Module/Settings/Profile/Photo/Index.php:112
|
#: src/Module/Settings/Profile/Photo/Index.php:112
|
||||||
#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:93
|
#: src/Module/Settings/UserExport.php:58 src/Module/Settings/UserExport.php:93
|
||||||
#: src/Module/Settings/UserExport.php:198
|
#: src/Module/Settings/UserExport.php:198
|
||||||
|
|
@ -365,7 +365,7 @@ msgid "Event Finishes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:506 src/Module/Profile/Profile.php:172
|
#: mod/events.php:506 src/Module/Profile/Profile.php:172
|
||||||
#: src/Module/Settings/Profile/Index.php:237
|
#: src/Module/Settings/Profile/Index.php:239
|
||||||
msgid "Description:"
|
msgid "Description:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -397,7 +397,7 @@ msgstr ""
|
||||||
#: src/Module/Install.php:245 src/Module/Install.php:287
|
#: src/Module/Install.php:245 src/Module/Install.php:287
|
||||||
#: src/Module/Install.php:324 src/Module/Invite.php:177
|
#: src/Module/Install.php:324 src/Module/Invite.php:177
|
||||||
#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247
|
#: src/Module/Item/Compose.php:150 src/Module/Profile/Profile.php:247
|
||||||
#: src/Module/Settings/Profile/Index.php:221 src/Object/Post.php:963
|
#: src/Module/Settings/Profile/Index.php:223 src/Object/Post.php:963
|
||||||
#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160
|
#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160
|
||||||
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119
|
#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
|
|
@ -407,7 +407,7 @@ msgstr ""
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/events.php:521 src/Module/Admin/Site.php:505 src/Module/Contact.php:863
|
#: mod/events.php:521 src/Module/Admin/Site.php:507 src/Module/Contact.php:863
|
||||||
#: src/Module/Profile/Profile.php:249
|
#: src/Module/Profile/Profile.php:249
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -451,7 +451,7 @@ msgid "OStatus support is disabled. Contact can't be added."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76
|
#: mod/follow.php:138 src/Content/Item.php:463 src/Content/Widget.php:76
|
||||||
#: src/Model/Contact.php:1071 src/Model/Contact.php:1083
|
#: src/Model/Contact.php:1072 src/Model/Contact.php:1084
|
||||||
#: view/theme/vier/theme.php:172
|
#: view/theme/vier/theme.php:172
|
||||||
msgid "Connect/Follow"
|
msgid "Connect/Follow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -693,7 +693,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/message.php:120 src/Module/Notifications/Introductions.php:113
|
#: mod/message.php:120 src/Module/Notifications/Introductions.php:113
|
||||||
#: src/Module/Notifications/Introductions.php:148
|
#: src/Module/Notifications/Introductions.php:148
|
||||||
#: src/Module/Notifications/Notification.php:56
|
#: src/Module/Notifications/Notification.php:57
|
||||||
msgid "Discard"
|
msgid "Discard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1264,7 +1264,7 @@ msgstr ""
|
||||||
|
|
||||||
#: mod/settings.php:474 mod/settings.php:565 mod/settings.php:702
|
#: mod/settings.php:474 mod/settings.php:565 mod/settings.php:702
|
||||||
#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87
|
#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87
|
||||||
#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:500
|
#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:502
|
||||||
#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66
|
#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66
|
||||||
#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:194
|
#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:194
|
||||||
msgid "Save Settings"
|
msgid "Save Settings"
|
||||||
|
|
@ -2129,8 +2129,8 @@ msgid "All contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/BaseModule.php:212 src/Content/Widget.php:231 src/Core/ACL.php:193
|
#: src/BaseModule.php:212 src/Content/Widget.php:231 src/Core/ACL.php:193
|
||||||
#: src/Module/Contact.php:756 src/Module/PermissionTooltip.php:75
|
#: src/Module/Contact.php:756 src/Module/PermissionTooltip.php:79
|
||||||
#: src/Module/PermissionTooltip.php:97
|
#: src/Module/PermissionTooltip.php:101
|
||||||
msgid "Followers"
|
msgid "Followers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2736,31 +2736,31 @@ msgstr ""
|
||||||
msgid "Follow Thread"
|
msgid "Follow Thread"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:443 src/Model/Contact.php:1076
|
#: src/Content/Item.php:443 src/Model/Contact.php:1077
|
||||||
msgid "View Status"
|
msgid "View Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:444 src/Content/Item.php:466 src/Model/Contact.php:1010
|
#: src/Content/Item.php:444 src/Content/Item.php:466 src/Model/Contact.php:1011
|
||||||
#: src/Model/Contact.php:1068 src/Model/Contact.php:1077
|
#: src/Model/Contact.php:1069 src/Model/Contact.php:1078
|
||||||
#: src/Module/Directory.php:160 src/Module/Settings/Profile/Index.php:224
|
#: src/Module/Directory.php:160 src/Module/Settings/Profile/Index.php:226
|
||||||
msgid "View Profile"
|
msgid "View Profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:445 src/Model/Contact.php:1078
|
#: src/Content/Item.php:445 src/Model/Contact.php:1079
|
||||||
msgid "View Photos"
|
msgid "View Photos"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:446 src/Model/Contact.php:1069
|
#: src/Content/Item.php:446 src/Model/Contact.php:1070
|
||||||
#: src/Model/Contact.php:1079
|
#: src/Model/Contact.php:1080
|
||||||
msgid "Network Posts"
|
msgid "Network Posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:447 src/Model/Contact.php:1070
|
#: src/Content/Item.php:447 src/Model/Contact.php:1071
|
||||||
#: src/Model/Contact.php:1080
|
#: src/Model/Contact.php:1081
|
||||||
msgid "View Contact"
|
msgid "View Contact"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:448 src/Model/Contact.php:1081
|
#: src/Content/Item.php:448 src/Model/Contact.php:1082
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2775,7 +2775,7 @@ msgstr ""
|
||||||
#: src/Module/Contact.php:788 src/Module/Contact.php:1072
|
#: src/Module/Contact.php:788 src/Module/Contact.php:1072
|
||||||
#: src/Module/Notifications/Introductions.php:112
|
#: src/Module/Notifications/Introductions.php:112
|
||||||
#: src/Module/Notifications/Introductions.php:184
|
#: src/Module/Notifications/Introductions.php:184
|
||||||
#: src/Module/Notifications/Notification.php:59
|
#: src/Module/Notifications/Notification.php:61
|
||||||
msgid "Ignore"
|
msgid "Ignore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2783,7 +2783,7 @@ msgstr ""
|
||||||
msgid "Languages"
|
msgid "Languages"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Item.php:458 src/Model/Contact.php:1082
|
#: src/Content/Item.php:458 src/Model/Contact.php:1083
|
||||||
msgid "Poke"
|
msgid "Poke"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3235,7 +3235,7 @@ msgstr ""
|
||||||
msgid "Organisations"
|
msgid "Organisations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Content/Widget.php:522 src/Model/Contact.php:1503
|
#: src/Content/Widget.php:522 src/Model/Contact.php:1506
|
||||||
msgid "News"
|
msgid "News"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3312,8 +3312,8 @@ msgstr ""
|
||||||
msgid "Yourself"
|
msgid "Yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:81
|
#: src/Core/ACL.php:200 src/Module/PermissionTooltip.php:85
|
||||||
#: src/Module/PermissionTooltip.php:103
|
#: src/Module/PermissionTooltip.php:107
|
||||||
msgid "Mutuals"
|
msgid "Mutuals"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4046,81 +4046,81 @@ msgstr ""
|
||||||
msgid "Legacy module file not found: %s"
|
msgid "Legacy module file not found: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1072 src/Model/Contact.php:1084
|
#: src/Model/Contact.php:1073 src/Model/Contact.php:1085
|
||||||
msgid "UnFollow"
|
msgid "UnFollow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1090 src/Module/Admin/Users/Pending.php:107
|
#: src/Model/Contact.php:1091 src/Module/Admin/Users/Pending.php:107
|
||||||
#: src/Module/Notifications/Introductions.php:110
|
#: src/Module/Notifications/Introductions.php:110
|
||||||
#: src/Module/Notifications/Introductions.php:182
|
#: src/Module/Notifications/Introductions.php:182
|
||||||
msgid "Approve"
|
msgid "Approve"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1499
|
#: src/Model/Contact.php:1502
|
||||||
msgid "Organisation"
|
msgid "Organisation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:1507
|
#: src/Model/Contact.php:1510
|
||||||
msgid "Forum"
|
msgid "Forum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2366
|
#: src/Model/Contact.php:2380
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2371 src/Module/Friendica.php:81
|
#: src/Model/Contact.php:2385 src/Module/Friendica.php:81
|
||||||
msgid "Blocked domain"
|
msgid "Blocked domain"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2376
|
#: src/Model/Contact.php:2390
|
||||||
msgid "Connect URL missing."
|
msgid "Connect URL missing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2385
|
#: src/Model/Contact.php:2399
|
||||||
msgid ""
|
msgid ""
|
||||||
"The contact could not be added. Please check the relevant network "
|
"The contact could not be added. Please check the relevant network "
|
||||||
"credentials in your Settings -> Social Networks page."
|
"credentials in your Settings -> Social Networks page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2422
|
#: src/Model/Contact.php:2436
|
||||||
msgid "The profile address specified does not provide adequate information."
|
msgid "The profile address specified does not provide adequate information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2424
|
#: src/Model/Contact.php:2438
|
||||||
msgid "No compatible communication protocols or feeds were discovered."
|
msgid "No compatible communication protocols or feeds were discovered."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2427
|
#: src/Model/Contact.php:2441
|
||||||
msgid "An author or name was not found."
|
msgid "An author or name was not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2430
|
#: src/Model/Contact.php:2444
|
||||||
msgid "No browser URL could be matched to this address."
|
msgid "No browser URL could be matched to this address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2433
|
#: src/Model/Contact.php:2447
|
||||||
msgid ""
|
msgid ""
|
||||||
"Unable to match @-style Identity Address with a known protocol or email "
|
"Unable to match @-style Identity Address with a known protocol or email "
|
||||||
"contact."
|
"contact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2434
|
#: src/Model/Contact.php:2448
|
||||||
msgid "Use mailto: in front of address to force email check."
|
msgid "Use mailto: in front of address to force email check."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2440
|
#: src/Model/Contact.php:2454
|
||||||
msgid ""
|
msgid ""
|
||||||
"The profile address specified belongs to a network which has been disabled "
|
"The profile address specified belongs to a network which has been disabled "
|
||||||
"on this site."
|
"on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2445
|
#: src/Model/Contact.php:2459
|
||||||
msgid ""
|
msgid ""
|
||||||
"Limited profile. This person will be unable to receive direct/personal "
|
"Limited profile. This person will be unable to receive direct/personal "
|
||||||
"notifications from you."
|
"notifications from you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Model/Contact.php:2504
|
#: src/Model/Contact.php:2518
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4708,7 +4708,7 @@ msgstr ""
|
||||||
#: src/Module/Admin/Blocklist/Server.php:88 src/Module/Admin/Federation.php:159
|
#: src/Module/Admin/Blocklist/Server.php:88 src/Module/Admin/Federation.php:159
|
||||||
#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Logs/Settings.php:80
|
#: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Logs/Settings.php:80
|
||||||
#: src/Module/Admin/Logs/View.php:83 src/Module/Admin/Queue.php:72
|
#: src/Module/Admin/Logs/View.php:83 src/Module/Admin/Queue.php:72
|
||||||
#: src/Module/Admin/Site.php:497 src/Module/Admin/Storage.php:139
|
#: src/Module/Admin/Site.php:499 src/Module/Admin/Storage.php:139
|
||||||
#: src/Module/Admin/Summary.php:233 src/Module/Admin/Themes/Details.php:90
|
#: 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:58
|
#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:58
|
||||||
#: src/Module/Admin/Users/Active.php:136 src/Module/Admin/Users/Blocked.php:137
|
#: src/Module/Admin/Users/Active.php:136 src/Module/Admin/Users/Blocked.php:137
|
||||||
|
|
@ -5337,464 +5337,464 @@ msgstr ""
|
||||||
msgid "Relocation started. Could take a while to complete."
|
msgid "Relocation started. Could take a while to complete."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:402 src/Module/Settings/Display.php:139
|
#: src/Module/Admin/Site.php:404 src/Module/Settings/Display.php:139
|
||||||
msgid "No special theme for mobile devices"
|
msgid "No special theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:419 src/Module/Settings/Display.php:149
|
#: src/Module/Admin/Site.php:421 src/Module/Settings/Display.php:149
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s - (Experimental)"
|
msgid "%s - (Experimental)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:431
|
#: src/Module/Admin/Site.php:433
|
||||||
msgid "No community page for local users"
|
msgid "No community page for local users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:432
|
#: src/Module/Admin/Site.php:434
|
||||||
msgid "No community page"
|
msgid "No community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:433
|
#: src/Module/Admin/Site.php:435
|
||||||
msgid "Public postings from users of this site"
|
msgid "Public postings from users of this site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:434
|
#: src/Module/Admin/Site.php:436
|
||||||
msgid "Public postings from the federated network"
|
msgid "Public postings from the federated network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:435
|
#: src/Module/Admin/Site.php:437
|
||||||
msgid "Public postings from local users and the federated network"
|
msgid "Public postings from local users and the federated network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:441
|
#: src/Module/Admin/Site.php:443
|
||||||
msgid "Multi user instance"
|
msgid "Multi user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:468
|
#: src/Module/Admin/Site.php:470
|
||||||
msgid "Closed"
|
msgid "Closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:469
|
#: src/Module/Admin/Site.php:471
|
||||||
msgid "Requires approval"
|
msgid "Requires approval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:470
|
#: src/Module/Admin/Site.php:472
|
||||||
msgid "Open"
|
msgid "Open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:474 src/Module/Install.php:215
|
#: src/Module/Admin/Site.php:476 src/Module/Install.php:215
|
||||||
msgid "No SSL policy, links will track page SSL state"
|
msgid "No SSL policy, links will track page SSL state"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:475 src/Module/Install.php:216
|
#: src/Module/Admin/Site.php:477 src/Module/Install.php:216
|
||||||
msgid "Force all links to use SSL"
|
msgid "Force all links to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:476 src/Module/Install.php:217
|
#: src/Module/Admin/Site.php:478 src/Module/Install.php:217
|
||||||
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:480
|
#: src/Module/Admin/Site.php:482
|
||||||
msgid "Don't check"
|
msgid "Don't check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:481
|
#: src/Module/Admin/Site.php:483
|
||||||
msgid "check the stable version"
|
msgid "check the stable version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:482
|
#: src/Module/Admin/Site.php:484
|
||||||
msgid "check the development version"
|
msgid "check the development version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:486
|
#: src/Module/Admin/Site.php:488
|
||||||
msgid "none"
|
msgid "none"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:487
|
#: src/Module/Admin/Site.php:489
|
||||||
msgid "Local contacts"
|
msgid "Local contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:488
|
#: src/Module/Admin/Site.php:490
|
||||||
msgid "Interactors"
|
msgid "Interactors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:498 src/Module/BaseAdmin.php:90
|
#: src/Module/Admin/Site.php:500 src/Module/BaseAdmin.php:90
|
||||||
msgid "Site"
|
msgid "Site"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:499
|
#: src/Module/Admin/Site.php:501
|
||||||
msgid "General Information"
|
msgid "General Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:501
|
#: src/Module/Admin/Site.php:503
|
||||||
msgid "Republish users to directory"
|
msgid "Republish users to directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:502 src/Module/Register.php:141
|
#: src/Module/Admin/Site.php:504 src/Module/Register.php:141
|
||||||
msgid "Registration"
|
msgid "Registration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:503
|
#: src/Module/Admin/Site.php:505
|
||||||
msgid "File upload"
|
msgid "File upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:504
|
#: src/Module/Admin/Site.php:506
|
||||||
msgid "Policies"
|
msgid "Policies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:506
|
#: src/Module/Admin/Site.php:508
|
||||||
msgid "Auto Discovered Contact Directory"
|
msgid "Auto Discovered Contact Directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:507
|
#: src/Module/Admin/Site.php:509
|
||||||
msgid "Performance"
|
msgid "Performance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:508
|
#: src/Module/Admin/Site.php:510
|
||||||
msgid "Worker"
|
msgid "Worker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:509
|
#: src/Module/Admin/Site.php:511
|
||||||
msgid "Message Relay"
|
msgid "Message Relay"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:510
|
#: src/Module/Admin/Site.php:512
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the command \"console relay\" in the command line to add or remove "
|
"Use the command \"console relay\" in the command line to add or remove "
|
||||||
"relays."
|
"relays."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:511
|
#: src/Module/Admin/Site.php:513
|
||||||
msgid "The system is not subscribed to any relays at the moment."
|
msgid "The system is not subscribed to any relays at the moment."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:512
|
#: src/Module/Admin/Site.php:514
|
||||||
msgid "The system is currently subscribed to the following relays:"
|
msgid "The system is currently subscribed to the following relays:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:514
|
#: src/Module/Admin/Site.php:516
|
||||||
msgid "Relocate Instance"
|
msgid "Relocate Instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:515
|
#: src/Module/Admin/Site.php:517
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>Warning!</strong> Advanced function. Could make this server "
|
"<strong>Warning!</strong> Advanced function. Could make this server "
|
||||||
"unreachable."
|
"unreachable."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:519
|
#: src/Module/Admin/Site.php:521
|
||||||
msgid "Site name"
|
msgid "Site name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:520
|
#: src/Module/Admin/Site.php:522
|
||||||
msgid "Sender Email"
|
msgid "Sender Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:520
|
#: src/Module/Admin/Site.php:522
|
||||||
msgid ""
|
msgid ""
|
||||||
"The email address your server shall use to send notification emails from."
|
"The email address your server shall use to send notification emails from."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:521
|
#: src/Module/Admin/Site.php:523
|
||||||
msgid "Name of the system actor"
|
msgid "Name of the system actor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:521
|
#: src/Module/Admin/Site.php:523
|
||||||
msgid ""
|
msgid ""
|
||||||
"Name of the internal system account that is used to perform ActivityPub "
|
"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 "
|
"requests. This must be an unused username. If set, this can't be changed "
|
||||||
"again."
|
"again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:522
|
#: src/Module/Admin/Site.php:524
|
||||||
msgid "Banner/Logo"
|
msgid "Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:523
|
#: src/Module/Admin/Site.php:525
|
||||||
msgid "Email Banner/Logo"
|
msgid "Email Banner/Logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:524
|
#: src/Module/Admin/Site.php:526
|
||||||
msgid "Shortcut icon"
|
msgid "Shortcut icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:524
|
#: src/Module/Admin/Site.php:526
|
||||||
msgid "Link to an icon that will be used for browsers."
|
msgid "Link to an icon that will be used for browsers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:525
|
#: src/Module/Admin/Site.php:527
|
||||||
msgid "Touch icon"
|
msgid "Touch icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:525
|
#: src/Module/Admin/Site.php:527
|
||||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:526
|
#: src/Module/Admin/Site.php:528
|
||||||
msgid "Additional Info"
|
msgid "Additional Info"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:526
|
#: src/Module/Admin/Site.php:528
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"For public servers: you can add additional information here that will be "
|
"For public servers: you can add additional information here that will be "
|
||||||
"listed at %s/servers."
|
"listed at %s/servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:527
|
#: src/Module/Admin/Site.php:529
|
||||||
msgid "System language"
|
msgid "System language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:528
|
#: src/Module/Admin/Site.php:530
|
||||||
msgid "System theme"
|
msgid "System theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:528
|
#: src/Module/Admin/Site.php:530
|
||||||
msgid ""
|
msgid ""
|
||||||
"Default system theme - may be over-ridden by user profiles - <a href=\"/"
|
"Default system theme - may be over-ridden by user profiles - <a href=\"/"
|
||||||
"admin/themes\" id=\"cnftheme\">Change default theme settings</a>"
|
"admin/themes\" id=\"cnftheme\">Change default theme settings</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:529
|
#: src/Module/Admin/Site.php:531
|
||||||
msgid "Mobile system theme"
|
msgid "Mobile system theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:529
|
#: src/Module/Admin/Site.php:531
|
||||||
msgid "Theme for mobile devices"
|
msgid "Theme for mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:530 src/Module/Install.php:225
|
#: src/Module/Admin/Site.php:532 src/Module/Install.php:225
|
||||||
msgid "SSL link policy"
|
msgid "SSL link policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:530 src/Module/Install.php:227
|
#: src/Module/Admin/Site.php:532 src/Module/Install.php:227
|
||||||
msgid "Determines whether generated links should be forced to use SSL"
|
msgid "Determines whether generated links should be forced to use SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:531
|
#: src/Module/Admin/Site.php:533
|
||||||
msgid "Force SSL"
|
msgid "Force SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:531
|
#: src/Module/Admin/Site.php:533
|
||||||
msgid ""
|
msgid ""
|
||||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
|
||||||
"to endless loops."
|
"to endless loops."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:532
|
#: src/Module/Admin/Site.php:534
|
||||||
msgid "Show help entry from navigation menu"
|
msgid "Show help entry from navigation menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:532
|
#: src/Module/Admin/Site.php:534
|
||||||
msgid ""
|
msgid ""
|
||||||
"Displays the menu entry for the Help pages from the navigation menu. It is "
|
"Displays the menu entry for the Help pages from the navigation menu. It is "
|
||||||
"always accessible by calling /help directly."
|
"always accessible by calling /help directly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:533
|
#: src/Module/Admin/Site.php:535
|
||||||
msgid "Single user instance"
|
msgid "Single user instance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:533
|
#: src/Module/Admin/Site.php:535
|
||||||
msgid "Make this instance multi-user or single-user for the named user"
|
msgid "Make this instance multi-user or single-user for the named user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:535
|
#: src/Module/Admin/Site.php:537
|
||||||
msgid "Maximum image size"
|
msgid "Maximum image size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:535
|
#: src/Module/Admin/Site.php:537
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
"Maximum size in bytes of uploaded images. Default is 0, which means no "
|
||||||
"limits."
|
"limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:536
|
#: src/Module/Admin/Site.php:538
|
||||||
msgid "Maximum image length"
|
msgid "Maximum image length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:536
|
#: src/Module/Admin/Site.php:538
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||||
"-1, which means no limits."
|
"-1, which means no limits."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:537
|
#: src/Module/Admin/Site.php:539
|
||||||
msgid "JPEG image quality"
|
msgid "JPEG image quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:537
|
#: src/Module/Admin/Site.php:539
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||||
"100, which is full quality."
|
"100, which is full quality."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:539
|
#: src/Module/Admin/Site.php:541
|
||||||
msgid "Register policy"
|
msgid "Register policy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:540
|
#: src/Module/Admin/Site.php:542
|
||||||
msgid "Maximum Daily Registrations"
|
msgid "Maximum Daily Registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:540
|
#: src/Module/Admin/Site.php:542
|
||||||
msgid ""
|
msgid ""
|
||||||
"If registration is permitted above, this sets the maximum number of new user "
|
"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 "
|
"registrations to accept per day. If register is set to closed, this setting "
|
||||||
"has no effect."
|
"has no effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:541
|
#: src/Module/Admin/Site.php:543
|
||||||
msgid "Register text"
|
msgid "Register text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:541
|
#: src/Module/Admin/Site.php:543
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will be displayed prominently on the registration page. You can use BBCode "
|
"Will be displayed prominently on the registration page. You can use BBCode "
|
||||||
"here."
|
"here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:542
|
#: src/Module/Admin/Site.php:544
|
||||||
msgid "Forbidden Nicknames"
|
msgid "Forbidden Nicknames"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:542
|
#: src/Module/Admin/Site.php:544
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of nicknames that are forbidden from registration. "
|
"Comma separated list of nicknames that are forbidden from registration. "
|
||||||
"Preset is a list of role names according RFC 2142."
|
"Preset is a list of role names according RFC 2142."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:543
|
#: src/Module/Admin/Site.php:545
|
||||||
msgid "Accounts abandoned after x days"
|
msgid "Accounts abandoned after x days"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:543
|
#: src/Module/Admin/Site.php:545
|
||||||
msgid ""
|
msgid ""
|
||||||
"Will not waste system resources polling external sites for abandonded "
|
"Will not waste system resources polling external sites for abandonded "
|
||||||
"accounts. Enter 0 for no time limit."
|
"accounts. Enter 0 for no time limit."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:544
|
#: src/Module/Admin/Site.php:546
|
||||||
msgid "Allowed friend domains"
|
msgid "Allowed friend domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:544
|
#: src/Module/Admin/Site.php:546
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed to establish friendships "
|
"Comma separated list of domains which are allowed to establish friendships "
|
||||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:545
|
#: src/Module/Admin/Site.php:547
|
||||||
msgid "Allowed email domains"
|
msgid "Allowed email domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:545
|
#: src/Module/Admin/Site.php:547
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains which are allowed in email addresses for "
|
"Comma separated list of domains which are allowed in email addresses for "
|
||||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||||
"domains"
|
"domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:546
|
#: src/Module/Admin/Site.php:548
|
||||||
msgid "No OEmbed rich content"
|
msgid "No OEmbed rich content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:546
|
#: src/Module/Admin/Site.php:548
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
||||||
"listed below."
|
"listed below."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:547
|
#: src/Module/Admin/Site.php:549
|
||||||
msgid "Trusted third-party domains"
|
msgid "Trusted third-party domains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:547
|
#: src/Module/Admin/Site.php:549
|
||||||
msgid ""
|
msgid ""
|
||||||
"Comma separated list of domains from which content is allowed to be embedded "
|
"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 "
|
"in posts like with OEmbed. All sub-domains of the listed domains are allowed "
|
||||||
"as well."
|
"as well."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:548
|
#: src/Module/Admin/Site.php:550
|
||||||
msgid "Block public"
|
msgid "Block public"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:548
|
#: src/Module/Admin/Site.php:550
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to block public access to all otherwise public personal pages on this "
|
"Check to block public access to all otherwise public personal pages on this "
|
||||||
"site unless you are currently logged in."
|
"site unless you are currently logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:549
|
#: src/Module/Admin/Site.php:551
|
||||||
msgid "Force publish"
|
msgid "Force publish"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:549
|
#: src/Module/Admin/Site.php:551
|
||||||
msgid ""
|
msgid ""
|
||||||
"Check to force all profiles on this site to be listed in the site directory."
|
"Check to force all profiles on this site to be listed in the site directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:549
|
#: src/Module/Admin/Site.php:551
|
||||||
msgid "Enabling this may violate privacy laws like the GDPR"
|
msgid "Enabling this may violate privacy laws like the GDPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:550
|
#: src/Module/Admin/Site.php:552
|
||||||
msgid "Global directory URL"
|
msgid "Global directory URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:550
|
#: src/Module/Admin/Site.php:552
|
||||||
msgid ""
|
msgid ""
|
||||||
"URL to the global directory. If this is not set, the global directory is "
|
"URL to the global directory. If this is not set, the global directory is "
|
||||||
"completely unavailable to the application."
|
"completely unavailable to the application."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:551
|
#: src/Module/Admin/Site.php:553
|
||||||
msgid "Private posts by default for new users"
|
msgid "Private posts by default for new users"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:551
|
#: src/Module/Admin/Site.php:553
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set default post permissions for all new members to the default privacy "
|
"Set default post permissions for all new members to the default privacy "
|
||||||
"group rather than public."
|
"group rather than public."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:552
|
#: src/Module/Admin/Site.php:554
|
||||||
msgid "Don't include post content in email notifications"
|
msgid "Don't include post content in email notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:552
|
#: src/Module/Admin/Site.php:554
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't include the content of a post/comment/private message/etc. in the "
|
"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."
|
"email notifications that are sent out from this site, as a privacy measure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:553
|
#: src/Module/Admin/Site.php:555
|
||||||
msgid "Disallow public access to addons listed in the apps menu."
|
msgid "Disallow public access to addons listed in the apps menu."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:553
|
#: src/Module/Admin/Site.php:555
|
||||||
msgid ""
|
msgid ""
|
||||||
"Checking this box will restrict addons listed in the apps menu to members "
|
"Checking this box will restrict addons listed in the apps menu to members "
|
||||||
"only."
|
"only."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:554
|
#: src/Module/Admin/Site.php:556
|
||||||
msgid "Don't embed private images in posts"
|
msgid "Don't embed private images in posts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:554
|
#: src/Module/Admin/Site.php:556
|
||||||
msgid ""
|
msgid ""
|
||||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
"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 "
|
"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."
|
"photos will have to authenticate and load each image, which may take a while."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:555
|
#: src/Module/Admin/Site.php:557
|
||||||
msgid "Explicit Content"
|
msgid "Explicit Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:555
|
#: src/Module/Admin/Site.php:557
|
||||||
msgid ""
|
msgid ""
|
||||||
"Set this to announce that your node is used mostly for explicit content that "
|
"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 "
|
"might not be suited for minors. This information will be published in the "
|
||||||
|
|
@ -5803,245 +5803,255 @@ msgid ""
|
||||||
"will be shown at the user registration page."
|
"will be shown at the user registration page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:556
|
#: src/Module/Admin/Site.php:558
|
||||||
msgid "Proxify external content"
|
msgid "Proxify external content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:556
|
#: src/Module/Admin/Site.php:558
|
||||||
msgid ""
|
msgid ""
|
||||||
"Route external content via the proxy functionality. This is used for example "
|
"Route external content via the proxy functionality. This is used for example "
|
||||||
"for some OEmbed accesses and in some other rare cases."
|
"for some OEmbed accesses and in some other rare cases."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:557
|
#: src/Module/Admin/Site.php:559
|
||||||
|
msgid "Cache contact avatars"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Module/Admin/Site.php:559
|
||||||
|
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:560
|
||||||
msgid "Allow Users to set remote_self"
|
msgid "Allow Users to set remote_self"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:557
|
#: src/Module/Admin/Site.php:560
|
||||||
msgid ""
|
msgid ""
|
||||||
"With checking this, every user is allowed to mark every contact as a "
|
"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 "
|
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||||
"causes mirroring every posting of that contact in the users stream."
|
"causes mirroring every posting of that contact in the users stream."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:558
|
#: src/Module/Admin/Site.php:561
|
||||||
msgid "Enable multiple registrations"
|
msgid "Enable multiple registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:558
|
#: src/Module/Admin/Site.php:561
|
||||||
msgid "Enable users to register additional accounts for use as pages."
|
msgid "Enable users to register additional accounts for use as pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:559
|
#: src/Module/Admin/Site.php:562
|
||||||
msgid "Enable OpenID"
|
msgid "Enable OpenID"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:559
|
#: src/Module/Admin/Site.php:562
|
||||||
msgid "Enable OpenID support for registration and logins."
|
msgid "Enable OpenID support for registration and logins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:560
|
#: src/Module/Admin/Site.php:563
|
||||||
msgid "Enable Fullname check"
|
msgid "Enable Fullname check"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:560
|
#: src/Module/Admin/Site.php:563
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable check to only allow users to register with a space between the first "
|
"Enable check to only allow users to register with a space between the first "
|
||||||
"name and the last name in their full name."
|
"name and the last name in their full name."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:561
|
#: src/Module/Admin/Site.php:564
|
||||||
msgid "Community pages for visitors"
|
msgid "Community pages for visitors"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:561
|
#: src/Module/Admin/Site.php:564
|
||||||
msgid ""
|
msgid ""
|
||||||
"Which community pages should be available for visitors. Local users always "
|
"Which community pages should be available for visitors. Local users always "
|
||||||
"see both pages."
|
"see both pages."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:562
|
#: src/Module/Admin/Site.php:565
|
||||||
msgid "Posts per user on community page"
|
msgid "Posts per user on community page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:562
|
#: src/Module/Admin/Site.php:565
|
||||||
msgid ""
|
msgid ""
|
||||||
"The maximum number of posts per user on the community page. (Not valid for "
|
"The maximum number of posts per user on the community page. (Not valid for "
|
||||||
"\"Global Community\")"
|
"\"Global Community\")"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:564
|
#: src/Module/Admin/Site.php:567
|
||||||
msgid "Enable Mail support"
|
msgid "Enable Mail support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:564
|
#: src/Module/Admin/Site.php:567
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable built-in mail support to poll IMAP folders and to reply via mail."
|
"Enable built-in mail support to poll IMAP folders and to reply via mail."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:565
|
#: src/Module/Admin/Site.php:568
|
||||||
msgid ""
|
msgid ""
|
||||||
"Mail support can't be enabled because the PHP IMAP module is not installed."
|
"Mail support can't be enabled because the PHP IMAP module is not installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:566
|
#: src/Module/Admin/Site.php:569
|
||||||
msgid "Enable OStatus support"
|
msgid "Enable OStatus support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:566
|
#: src/Module/Admin/Site.php:569
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
|
||||||
"communications in OStatus are public."
|
"communications in OStatus are public."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:568
|
#: src/Module/Admin/Site.php:571
|
||||||
msgid ""
|
msgid ""
|
||||||
"Diaspora support can't be enabled because Friendica was installed into a sub "
|
"Diaspora support can't be enabled because Friendica was installed into a sub "
|
||||||
"directory."
|
"directory."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:569
|
#: src/Module/Admin/Site.php:572
|
||||||
msgid "Enable Diaspora support"
|
msgid "Enable Diaspora support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:569
|
#: src/Module/Admin/Site.php:572
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable built-in Diaspora network compatibility for communicating with "
|
"Enable built-in Diaspora network compatibility for communicating with "
|
||||||
"diaspora servers."
|
"diaspora servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:570
|
#: src/Module/Admin/Site.php:573
|
||||||
msgid "Verify SSL"
|
msgid "Verify SSL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:570
|
#: src/Module/Admin/Site.php:573
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you wish, you can turn on strict certificate checking. This will mean you "
|
"If you wish, you can turn on strict certificate checking. This will mean you "
|
||||||
"cannot connect (at all) to self-signed SSL sites."
|
"cannot connect (at all) to self-signed SSL sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:571
|
#: src/Module/Admin/Site.php:574
|
||||||
msgid "Proxy user"
|
msgid "Proxy user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:572
|
#: src/Module/Admin/Site.php:575
|
||||||
msgid "Proxy URL"
|
msgid "Proxy URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:573
|
#: src/Module/Admin/Site.php:576
|
||||||
msgid "Network timeout"
|
msgid "Network timeout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:573
|
#: src/Module/Admin/Site.php:576
|
||||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:574
|
#: src/Module/Admin/Site.php:577
|
||||||
msgid "Maximum Load Average"
|
msgid "Maximum Load Average"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:574
|
#: src/Module/Admin/Site.php:577
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Maximum system load before delivery and poll processes are deferred - "
|
"Maximum system load before delivery and poll processes are deferred - "
|
||||||
"default %d."
|
"default %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:575
|
#: src/Module/Admin/Site.php:578
|
||||||
msgid "Maximum Load Average (Frontend)"
|
msgid "Maximum Load Average (Frontend)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:575
|
#: src/Module/Admin/Site.php:578
|
||||||
msgid "Maximum system load before the frontend quits service - default 50."
|
msgid "Maximum system load before the frontend quits service - default 50."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:576
|
#: src/Module/Admin/Site.php:579
|
||||||
msgid "Minimal Memory"
|
msgid "Minimal Memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:576
|
#: src/Module/Admin/Site.php:579
|
||||||
msgid ""
|
msgid ""
|
||||||
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
||||||
"default 0 (deactivated)."
|
"default 0 (deactivated)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:577
|
#: src/Module/Admin/Site.php:580
|
||||||
msgid "Periodically optimize tables"
|
msgid "Periodically optimize tables"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:577
|
#: src/Module/Admin/Site.php:580
|
||||||
msgid "Periodically optimize tables like the cache and the workerqueue"
|
msgid "Periodically optimize tables like the cache and the workerqueue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:579
|
#: src/Module/Admin/Site.php:582
|
||||||
msgid "Discover followers/followings from contacts"
|
msgid "Discover followers/followings from contacts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:579
|
#: src/Module/Admin/Site.php:582
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, contacts are checked for their followers and following contacts."
|
"If enabled, contacts are checked for their followers and following contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:580
|
#: src/Module/Admin/Site.php:583
|
||||||
msgid "None - deactivated"
|
msgid "None - deactivated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:581
|
#: src/Module/Admin/Site.php:584
|
||||||
msgid ""
|
msgid ""
|
||||||
"Local contacts - contacts of our local contacts are discovered for their "
|
"Local contacts - contacts of our local contacts are discovered for their "
|
||||||
"followers/followings."
|
"followers/followings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:582
|
#: src/Module/Admin/Site.php:585
|
||||||
msgid ""
|
msgid ""
|
||||||
"Interactors - contacts of our local contacts and contacts who interacted on "
|
"Interactors - contacts of our local contacts and contacts who interacted on "
|
||||||
"locally visible postings are discovered for their followers/followings."
|
"locally visible postings are discovered for their followers/followings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:584
|
#: src/Module/Admin/Site.php:587
|
||||||
msgid "Synchronize the contacts with the directory server"
|
msgid "Synchronize the contacts with the directory server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:584
|
#: src/Module/Admin/Site.php:587
|
||||||
msgid ""
|
msgid ""
|
||||||
"if enabled, the system will check periodically for new contacts on the "
|
"if enabled, the system will check periodically for new contacts on the "
|
||||||
"defined directory server."
|
"defined directory server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:586
|
#: src/Module/Admin/Site.php:589
|
||||||
msgid "Days between requery"
|
msgid "Days between requery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:586
|
#: src/Module/Admin/Site.php:589
|
||||||
msgid "Number of days after which a server is requeried for his contacts."
|
msgid "Number of days after which a server is requeried for his contacts."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:587
|
#: src/Module/Admin/Site.php:590
|
||||||
msgid "Discover contacts from other servers"
|
msgid "Discover contacts from other servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:587
|
#: src/Module/Admin/Site.php:590
|
||||||
msgid ""
|
msgid ""
|
||||||
"Periodically query other servers for contacts. The system queries Friendica, "
|
"Periodically query other servers for contacts. The system queries Friendica, "
|
||||||
"Mastodon and Hubzilla servers."
|
"Mastodon and Hubzilla servers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:588
|
#: src/Module/Admin/Site.php:591
|
||||||
msgid "Search the local directory"
|
msgid "Search the local directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:588
|
#: src/Module/Admin/Site.php:591
|
||||||
msgid ""
|
msgid ""
|
||||||
"Search the local directory instead of the global directory. When searching "
|
"Search the local directory instead of the global directory. When searching "
|
||||||
"locally, every search will be executed on the global directory in the "
|
"locally, every search will be executed on the global directory in the "
|
||||||
"background. This improves the search results when the search is repeated."
|
"background. This improves the search results when the search is repeated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:590
|
#: src/Module/Admin/Site.php:593
|
||||||
msgid "Publish server information"
|
msgid "Publish server information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:590
|
#: src/Module/Admin/Site.php:593
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, general server and usage data will be published. The data "
|
"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 "
|
"contains the name and version of the server, number of users with public "
|
||||||
|
|
@ -6049,50 +6059,50 @@ msgid ""
|
||||||
"href=\"http://the-federation.info/\">the-federation.info</a> for details."
|
"href=\"http://the-federation.info/\">the-federation.info</a> for details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:592
|
#: src/Module/Admin/Site.php:595
|
||||||
msgid "Check upstream version"
|
msgid "Check upstream version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:592
|
#: src/Module/Admin/Site.php:595
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables checking for new Friendica versions at github. If there is a new "
|
"Enables checking for new Friendica versions at github. If there is a new "
|
||||||
"version, you will be informed in the admin panel overview."
|
"version, you will be informed in the admin panel overview."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:593
|
#: src/Module/Admin/Site.php:596
|
||||||
msgid "Suppress Tags"
|
msgid "Suppress Tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:593
|
#: src/Module/Admin/Site.php:596
|
||||||
msgid "Suppress showing a list of hashtags at the end of the posting."
|
msgid "Suppress showing a list of hashtags at the end of the posting."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:594
|
#: src/Module/Admin/Site.php:597
|
||||||
msgid "Clean database"
|
msgid "Clean database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:594
|
#: src/Module/Admin/Site.php:597
|
||||||
msgid ""
|
msgid ""
|
||||||
"Remove old remote items, orphaned database records and old content from some "
|
"Remove old remote items, orphaned database records and old content from some "
|
||||||
"other helper tables."
|
"other helper tables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:595
|
#: src/Module/Admin/Site.php:598
|
||||||
msgid "Lifespan of remote items"
|
msgid "Lifespan of remote items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:595
|
#: src/Module/Admin/Site.php:598
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the database cleanup is enabled, this defines the days after which "
|
"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 "
|
"remote items will be deleted. Own items, and marked or filed items are "
|
||||||
"always kept. 0 disables this behaviour."
|
"always kept. 0 disables this behaviour."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:596
|
#: src/Module/Admin/Site.php:599
|
||||||
msgid "Lifespan of unclaimed items"
|
msgid "Lifespan of unclaimed items"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:596
|
#: src/Module/Admin/Site.php:599
|
||||||
msgid ""
|
msgid ""
|
||||||
"When the database cleanup is enabled, this defines the days after which "
|
"When the database cleanup is enabled, this defines the days after which "
|
||||||
"unclaimed remote items (mostly content from the relay) will be deleted. "
|
"unclaimed remote items (mostly content from the relay) will be deleted. "
|
||||||
|
|
@ -6100,144 +6110,144 @@ msgid ""
|
||||||
"items if set to 0."
|
"items if set to 0."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:597
|
#: src/Module/Admin/Site.php:600
|
||||||
msgid "Lifespan of raw conversation data"
|
msgid "Lifespan of raw conversation data"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:597
|
#: src/Module/Admin/Site.php:600
|
||||||
msgid ""
|
msgid ""
|
||||||
"The conversation data is used for ActivityPub and OStatus, as well as for "
|
"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 "
|
"debug purposes. It should be safe to remove it after 14 days, default is 90 "
|
||||||
"days."
|
"days."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:598
|
#: src/Module/Admin/Site.php:601
|
||||||
msgid "Maximum numbers of comments per post"
|
msgid "Maximum numbers of comments per post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:598
|
#: src/Module/Admin/Site.php:601
|
||||||
msgid "How much comments should be shown for each post? Default value is 100."
|
msgid "How much comments should be shown for each post? Default value is 100."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:599
|
#: src/Module/Admin/Site.php:602
|
||||||
msgid "Maximum numbers of comments per post on the display page"
|
msgid "Maximum numbers of comments per post on the display page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:599
|
#: src/Module/Admin/Site.php:602
|
||||||
msgid ""
|
msgid ""
|
||||||
"How many comments should be shown on the single view for each post? Default "
|
"How many comments should be shown on the single view for each post? Default "
|
||||||
"value is 1000."
|
"value is 1000."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:600
|
#: src/Module/Admin/Site.php:603
|
||||||
msgid "Temp path"
|
msgid "Temp path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:600
|
#: src/Module/Admin/Site.php:603
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you have a restricted system where the webserver can't access the system "
|
"If you have a restricted system where the webserver can't access the system "
|
||||||
"temp path, enter another path here."
|
"temp path, enter another path here."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:601
|
#: src/Module/Admin/Site.php:604
|
||||||
msgid "Only search in tags"
|
msgid "Only search in tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:601
|
#: src/Module/Admin/Site.php:604
|
||||||
msgid "On large systems the text search can slow down the system extremely."
|
msgid "On large systems the text search can slow down the system extremely."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:603
|
#: src/Module/Admin/Site.php:606
|
||||||
msgid "New base url"
|
msgid "New base url"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:603
|
#: src/Module/Admin/Site.php:606
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change base url for this server. Sends relocate message to all Friendica and "
|
"Change base url for this server. Sends relocate message to all Friendica and "
|
||||||
"Diaspora* contacts of all users."
|
"Diaspora* contacts of all users."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:605
|
#: src/Module/Admin/Site.php:608
|
||||||
msgid "Maximum number of parallel workers"
|
msgid "Maximum number of parallel workers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:605
|
#: src/Module/Admin/Site.php:608
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"On shared hosters set this to %d. On larger systems, values of %d are great. "
|
"On shared hosters set this to %d. On larger systems, values of %d are great. "
|
||||||
"Default value is %d."
|
"Default value is %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:606
|
#: src/Module/Admin/Site.php:609
|
||||||
msgid "Enable fastlane"
|
msgid "Enable fastlane"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:606
|
#: src/Module/Admin/Site.php:609
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabed, the fastlane mechanism starts an additional worker if processes "
|
"When enabed, the fastlane mechanism starts an additional worker if processes "
|
||||||
"with higher priority are blocked by processes of lower priority."
|
"with higher priority are blocked by processes of lower priority."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:608
|
#: src/Module/Admin/Site.php:611
|
||||||
msgid "Direct relay transfer"
|
msgid "Direct relay transfer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:608
|
#: src/Module/Admin/Site.php:611
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enables the direct transfer to other servers without using the relay servers"
|
"Enables the direct transfer to other servers without using the relay servers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609
|
#: src/Module/Admin/Site.php:612
|
||||||
msgid "Relay scope"
|
msgid "Relay scope"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609
|
#: src/Module/Admin/Site.php:612
|
||||||
msgid ""
|
msgid ""
|
||||||
"Can be \"all\" or \"tags\". \"all\" means that every public post should be "
|
"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. \"tags\" means that only posts with selected tags should be "
|
||||||
"received."
|
"received."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609 src/Module/Contact.php:473
|
#: src/Module/Admin/Site.php:612 src/Module/Contact.php:473
|
||||||
#: src/Module/Settings/TwoFactor/Index.php:118
|
#: src/Module/Settings/TwoFactor/Index.php:118
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609
|
#: src/Module/Admin/Site.php:612
|
||||||
msgid "all"
|
msgid "all"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:609
|
#: src/Module/Admin/Site.php:612
|
||||||
msgid "tags"
|
msgid "tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:610
|
#: src/Module/Admin/Site.php:613
|
||||||
msgid "Server tags"
|
msgid "Server tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:610
|
#: src/Module/Admin/Site.php:613
|
||||||
msgid "Comma separated list of tags for the \"tags\" subscription."
|
msgid "Comma separated list of tags for the \"tags\" subscription."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:611
|
#: src/Module/Admin/Site.php:614
|
||||||
msgid "Deny Server tags"
|
msgid "Deny Server tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:611
|
#: src/Module/Admin/Site.php:614
|
||||||
msgid "Comma separated list of tags that are rejected."
|
msgid "Comma separated list of tags that are rejected."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:612
|
#: src/Module/Admin/Site.php:615
|
||||||
msgid "Allow user tags"
|
msgid "Allow user tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:612
|
#: src/Module/Admin/Site.php:615
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, the tags from the saved searches will used for the \"tags\" "
|
"If enabled, the tags from the saved searches will used for the \"tags\" "
|
||||||
"subscription in addition to the \"relay_server_tags\"."
|
"subscription in addition to the \"relay_server_tags\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Admin/Site.php:615
|
#: src/Module/Admin/Site.php:618
|
||||||
msgid "Start Relocation"
|
msgid "Start Relocation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7558,7 +7568,7 @@ msgid "Sort by post received date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Conversation/Network.php:250
|
#: src/Module/Conversation/Network.php:250
|
||||||
#: src/Module/Settings/Profile/Index.php:226
|
#: src/Module/Settings/Profile/Index.php:228
|
||||||
msgid "Personal"
|
msgid "Personal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -7782,7 +7792,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40
|
#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40
|
||||||
#: src/Module/Settings/Profile/Index.php:140
|
#: src/Module/Settings/Profile/Index.php:142
|
||||||
msgid "You must be logged in to use this module"
|
msgid "You must be logged in to use this module"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8425,7 +8435,7 @@ msgstr ""
|
||||||
msgid "No more %s notifications."
|
msgid "No more %s notifications."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Notifications/Notification.php:104
|
#: src/Module/Notifications/Notification.php:107
|
||||||
msgid "You must be logged in to show this page."
|
msgid "You must be logged in to show this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8483,15 +8493,15 @@ msgstr ""
|
||||||
msgid "Wrong type \"%s\", expected one of: %s"
|
msgid "Wrong type \"%s\", expected one of: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/PermissionTooltip.php:38
|
#: src/Module/PermissionTooltip.php:42
|
||||||
msgid "Model not found"
|
msgid "Model not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/PermissionTooltip.php:60
|
#: src/Module/PermissionTooltip.php:64
|
||||||
msgid "Remote privacy information not available."
|
msgid "Remote privacy information not available."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/PermissionTooltip.php:69
|
#: src/Module/PermissionTooltip.php:73
|
||||||
msgid "Visible to:"
|
msgid "Visible to:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -8545,12 +8555,12 @@ msgstr ""
|
||||||
msgid "Birthday:"
|
msgid "Birthday:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:244
|
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:246
|
||||||
#: src/Util/Temporal.php:165
|
#: src/Util/Temporal.php:165
|
||||||
msgid "Age: "
|
msgid "Age: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:244
|
#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:246
|
||||||
#: src/Util/Temporal.php:165
|
#: src/Util/Temporal.php:165
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d year old"
|
msgid "%d year old"
|
||||||
|
|
@ -9133,125 +9143,125 @@ msgstr ""
|
||||||
msgid "Profile couldn't be updated."
|
msgid "Profile couldn't be updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:171
|
#: src/Module/Settings/Profile/Index.php:173
|
||||||
#: src/Module/Settings/Profile/Index.php:191
|
#: src/Module/Settings/Profile/Index.php:193
|
||||||
msgid "Label:"
|
msgid "Label:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:172
|
#: src/Module/Settings/Profile/Index.php:174
|
||||||
#: src/Module/Settings/Profile/Index.php:192
|
#: src/Module/Settings/Profile/Index.php:194
|
||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:182
|
#: src/Module/Settings/Profile/Index.php:184
|
||||||
#: src/Module/Settings/Profile/Index.php:202
|
#: src/Module/Settings/Profile/Index.php:204
|
||||||
msgid "Field Permissions"
|
msgid "Field Permissions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:183
|
#: src/Module/Settings/Profile/Index.php:185
|
||||||
#: src/Module/Settings/Profile/Index.php:203
|
#: src/Module/Settings/Profile/Index.php:205
|
||||||
msgid "(click to open/close)"
|
msgid "(click to open/close)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:189
|
#: src/Module/Settings/Profile/Index.php:191
|
||||||
msgid "Add a new profile field"
|
msgid "Add a new profile field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:219
|
#: src/Module/Settings/Profile/Index.php:221
|
||||||
msgid "Profile Actions"
|
msgid "Profile Actions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:220
|
#: src/Module/Settings/Profile/Index.php:222
|
||||||
msgid "Edit Profile Details"
|
msgid "Edit Profile Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:222
|
#: src/Module/Settings/Profile/Index.php:224
|
||||||
msgid "Change Profile Photo"
|
msgid "Change Profile Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:227
|
#: src/Module/Settings/Profile/Index.php:229
|
||||||
msgid "Profile picture"
|
msgid "Profile picture"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:228
|
#: src/Module/Settings/Profile/Index.php:230
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:229 src/Util/Temporal.php:93
|
#: src/Module/Settings/Profile/Index.php:231 src/Util/Temporal.php:93
|
||||||
#: src/Util/Temporal.php:95
|
#: src/Util/Temporal.php:95
|
||||||
msgid "Miscellaneous"
|
msgid "Miscellaneous"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:230
|
#: src/Module/Settings/Profile/Index.php:232
|
||||||
msgid "Custom Profile Fields"
|
msgid "Custom Profile Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:232 src/Module/Welcome.php:58
|
#: src/Module/Settings/Profile/Index.php:234 src/Module/Welcome.php:58
|
||||||
msgid "Upload Profile Photo"
|
msgid "Upload Profile Photo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:236
|
#: src/Module/Settings/Profile/Index.php:238
|
||||||
msgid "Display name:"
|
msgid "Display name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:239
|
#: src/Module/Settings/Profile/Index.php:241
|
||||||
msgid "Street Address:"
|
msgid "Street Address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:240
|
#: src/Module/Settings/Profile/Index.php:242
|
||||||
msgid "Locality/City:"
|
msgid "Locality/City:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:241
|
#: src/Module/Settings/Profile/Index.php:243
|
||||||
msgid "Region/State:"
|
msgid "Region/State:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:242
|
#: src/Module/Settings/Profile/Index.php:244
|
||||||
msgid "Postal/Zip Code:"
|
msgid "Postal/Zip Code:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:243
|
#: src/Module/Settings/Profile/Index.php:245
|
||||||
msgid "Country:"
|
msgid "Country:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:245
|
#: src/Module/Settings/Profile/Index.php:247
|
||||||
msgid "XMPP (Jabber) address:"
|
msgid "XMPP (Jabber) address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:245
|
#: src/Module/Settings/Profile/Index.php:247
|
||||||
msgid "The XMPP address will be published so that people can follow you there."
|
msgid "The XMPP address will be published so that people can follow you there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:246
|
#: src/Module/Settings/Profile/Index.php:248
|
||||||
msgid "Matrix (Element) address:"
|
msgid "Matrix (Element) address:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:246
|
#: src/Module/Settings/Profile/Index.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Matrix address will be published so that people can follow you there."
|
"The Matrix address will be published so that people can follow you there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:247
|
#: src/Module/Settings/Profile/Index.php:249
|
||||||
msgid "Homepage URL:"
|
msgid "Homepage URL:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:248
|
#: src/Module/Settings/Profile/Index.php:250
|
||||||
msgid "Public Keywords:"
|
msgid "Public Keywords:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:248
|
#: src/Module/Settings/Profile/Index.php:250
|
||||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:249
|
#: src/Module/Settings/Profile/Index.php:251
|
||||||
msgid "Private Keywords:"
|
msgid "Private Keywords:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:249
|
#: src/Module/Settings/Profile/Index.php:251
|
||||||
msgid "(Used for searching profiles, never shown to others)"
|
msgid "(Used for searching profiles, never shown to others)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Index.php:250
|
#: src/Module/Settings/Profile/Index.php:252
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"<p>Custom fields appear on <a href=\"%s\">your profile page</a>.</p>\n"
|
"<p>Custom fields appear on <a href=\"%s\">your profile page</a>.</p>\n"
|
||||||
|
|
@ -9262,42 +9272,42 @@ msgid ""
|
||||||
"contacts or the Friendica contacts in the selected groups.</p>"
|
"contacts or the Friendica contacts in the selected groups.</p>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:106
|
#: src/Module/Settings/Profile/Photo/Crop.php:108
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:124
|
#: src/Module/Settings/Profile/Photo/Crop.php:126
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:142
|
#: src/Module/Settings/Profile/Photo/Crop.php:144
|
||||||
#: src/Module/Settings/Profile/Photo/Index.php:102
|
#: src/Module/Settings/Profile/Photo/Index.php:102
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image size reduction [%s] failed."
|
msgid "Image size reduction [%s] failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:149
|
#: src/Module/Settings/Profile/Photo/Crop.php:151
|
||||||
msgid ""
|
msgid ""
|
||||||
"Shift-reload the page or clear browser cache if the new photo does not "
|
"Shift-reload the page or clear browser cache if the new photo does not "
|
||||||
"display immediately."
|
"display immediately."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:154
|
#: src/Module/Settings/Profile/Photo/Crop.php:156
|
||||||
msgid "Unable to process image"
|
msgid "Unable to process image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:173
|
#: src/Module/Settings/Profile/Photo/Crop.php:175
|
||||||
msgid "Photo not found."
|
msgid "Photo not found."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:195
|
#: src/Module/Settings/Profile/Photo/Crop.php:197
|
||||||
msgid "Profile picture successfully updated."
|
msgid "Profile picture successfully updated."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:221
|
#: src/Module/Settings/Profile/Photo/Crop.php:223
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:225
|
#: src/Module/Settings/Profile/Photo/Crop.php:227
|
||||||
msgid "Crop Image"
|
msgid "Crop Image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:222
|
#: src/Module/Settings/Profile/Photo/Crop.php:224
|
||||||
msgid "Please adjust the image cropping for optimum viewing."
|
msgid "Please adjust the image cropping for optimum viewing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: src/Module/Settings/Profile/Photo/Crop.php:224
|
#: src/Module/Settings/Profile/Photo/Crop.php:226
|
||||||
msgid "Use Image As Is"
|
msgid "Use Image As Is"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -116,6 +116,7 @@
|
||||||
{{include file="field_input.tpl" field=$dbclean_unclaimed}}
|
{{include file="field_input.tpl" field=$dbclean_unclaimed}}
|
||||||
{{include file="field_input.tpl" field=$dbclean_expire_conv}}
|
{{include file="field_input.tpl" field=$dbclean_expire_conv}}
|
||||||
{{include file="field_checkbox.tpl" field=$optimize_tables}}
|
{{include file="field_checkbox.tpl" field=$optimize_tables}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$cache_contact_avatar}}
|
||||||
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}"/></div>
|
<div class="submit"><input type="submit" name="page_site" value="{{$submit}}"/></div>
|
||||||
|
|
||||||
<h2>{{$worker_title}}</h2>
|
<h2>{{$worker_title}}</h2>
|
||||||
|
|
|
||||||
|
|
@ -251,6 +251,7 @@
|
||||||
{{include file="field_input.tpl" field=$dbclean_unclaimed}}
|
{{include file="field_input.tpl" field=$dbclean_unclaimed}}
|
||||||
{{include file="field_input.tpl" field=$dbclean_expire_conv}}
|
{{include file="field_input.tpl" field=$dbclean_expire_conv}}
|
||||||
{{include file="field_checkbox.tpl" field=$optimize_tables}}
|
{{include file="field_checkbox.tpl" field=$optimize_tables}}
|
||||||
|
{{include file="field_checkbox.tpl" field=$cache_contact_avatar}}
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-footer">
|
<div class="panel-footer">
|
||||||
<input type="submit" name="page_site" class="btn btn-primary" value="{{$submit}}"/>
|
<input type="submit" name="page_site" class="btn btn-primary" value="{{$submit}}"/>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue