From 9b62ba6dfee87aa44f59a33c1905efb60fed3fa1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 24 Dec 2023 15:57:10 +0100 Subject: [PATCH 001/281] bump version 2024.03-dev --- VERSION | 2 +- src/App.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index c0d71d8545..dfca892bef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2023.12 +2024.03-dev diff --git a/src/App.php b/src/App.php index a01a6bc6c8..1938db0760 100644 --- a/src/App.php +++ b/src/App.php @@ -64,7 +64,7 @@ class App { const PLATFORM = 'Friendica'; const CODENAME = 'Yellow Archangel'; - const VERSION = '2023.12'; + const VERSION = '2024.03-dev'; // Allow themes to control internal parameters // by changing App values in theme.php From d2feade9cf29b4ddb8c0c3d1bd0b3c1b68380edf Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 24 Dec 2023 16:15:01 +0100 Subject: [PATCH 002/281] new CHANGELOG for 2024.03 --- CHANGELOG | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index d5d76f6e7d..b454648c33 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,11 @@ -Version 2023.12 (unreleased) +Version 2024.03 (unreleased) + Friendica Core + + Friendica Addons + + Closed Issues + +Version 2023.12 (2023-12-24) Friendica Core Raised minimal PHP version to 7.4 Updates to the translations AR, BG, CA, CS, DE, EN GB, EN US, EO, ES, ET, FI, FR, GD, HU, IS, IT, JA, NL, PL, RO, RU, SV From f23ecaff6af1982112469f90d6bcdf0408b0f22e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 25 Dec 2023 12:39:15 +0100 Subject: [PATCH 003/281] Posts per author/server on the community pages (#13764) * Posts per author/server on the community pages * Updated database.sql --- database.sql | 2 +- src/Module/Admin/Site.php | 5 +- src/Module/Conversation/Timeline.php | 60 +- static/settings.config.php | 8 + view/lang/C/messages.po | 774 ++++++++++++----------- view/templates/admin/site.tpl | 1 + view/theme/frio/templates/admin/site.tpl | 1 + 7 files changed, 448 insertions(+), 403 deletions(-) diff --git a/database.sql b/database.sql index f114bb5bfd..985587e356 100644 --- a/database.sql +++ b/database.sql @@ -1,5 +1,5 @@ -- ------------------------------------------ --- Friendica 2023.12 (Yellow archangel) +-- Friendica 2024.03-dev (Yellow Archangel) -- DB_UPDATE_VERSION 1542 -- ------------------------------------------ diff --git a/src/Module/Admin/Site.php b/src/Module/Admin/Site.php index afd6e7ca75..993da0dcce 100644 --- a/src/Module/Admin/Site.php +++ b/src/Module/Admin/Site.php @@ -106,6 +106,7 @@ class Site extends BaseAdmin $register_notification = !empty($_POST['register_notification']); $community_page_style = (!empty($_POST['community_page_style']) ? intval(trim($_POST['community_page_style'])) : 0); $max_author_posts_community_page = (!empty($_POST['max_author_posts_community_page']) ? intval(trim($_POST['max_author_posts_community_page'])) : 0); + $max_server_posts_community_page = (!empty($_POST['max_server_posts_community_page']) ? intval(trim($_POST['max_server_posts_community_page'])) : 0); $verifyssl = !empty($_POST['verifyssl']); $proxyuser = (!empty($_POST['proxyuser']) ? trim($_POST['proxyuser']) : ''); @@ -276,6 +277,7 @@ class Site extends BaseAdmin $transactionConfig->set('system', 'register_notification' , $register_notification); $transactionConfig->set('system', 'community_page_style' , $community_page_style); $transactionConfig->set('system', 'max_author_posts_community_page', $max_author_posts_community_page); + $transactionConfig->set('system', 'max_server_posts_community_page', $max_server_posts_community_page); $transactionConfig->set('system', 'verifyssl' , $verifyssl); $transactionConfig->set('system', 'proxyuser' , $proxyuser); $transactionConfig->set('system', 'proxy' , $proxy); @@ -519,7 +521,8 @@ class Site extends BaseAdmin '$enable_regfullname' => ['enable_regfullname', DI::l10n()->t('Enable full name check'), !DI::config()->get('system', 'no_regfullname'), DI::l10n()->t('Prevents users from registering with a display name with fewer than two parts separated by spaces.')], '$register_notification' => ['register_notification', DI::l10n()->t('Email administrators on new registration'), DI::config()->get('system', 'register_notification'), DI::l10n()->t('If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.')], '$community_page_style' => ['community_page_style', DI::l10n()->t('Community pages for visitors'), DI::config()->get('system', 'community_page_style'), DI::l10n()->t('Which community pages should be available for visitors. Local users always see both pages.'), $community_page_style_choices], - '$max_author_posts_community_page' => ['max_author_posts_community_page', DI::l10n()->t('Posts per user on community page'), DI::config()->get('system', 'max_author_posts_community_page'), DI::l10n()->t('The maximum number of posts per user on the community page. (Not valid for "Global Community")')], + '$max_author_posts_community_page' => ['max_author_posts_community_page', DI::l10n()->t('Posts per user on community page'), DI::config()->get('system', 'max_author_posts_community_page'), DI::l10n()->t('The maximum number of posts per user on the local community page. This is useful, when a single user floods the local community page.')], + '$max_server_posts_community_page' => ['max_server_posts_community_page', DI::l10n()->t('Posts per server on community page'), DI::config()->get('system', 'max_server_posts_community_page'), DI::l10n()->t('The maximum number of posts per server on the global community page. This is useful, when posts from a single server flood the global community page.')], '$mail_able' => function_exists('imap_open'), '$mail_enabled' => ['mail_enabled', DI::l10n()->t('Enable Mail support'), !DI::config()->get('system', 'imap_disabled', !function_exists('imap_open')), DI::l10n()->t('Enable built-in mail support to poll IMAP folders and to reply via mail.')], '$mail_not_able' => DI::l10n()->t('Mail support can\'t be enabled because the PHP IMAP module is not installed.'), diff --git a/src/Module/Conversation/Timeline.php b/src/Module/Conversation/Timeline.php index b5c936b13f..48f1a3fbeb 100644 --- a/src/Module/Conversation/Timeline.php +++ b/src/Module/Conversation/Timeline.php @@ -520,37 +520,54 @@ class Timeline extends BaseModule { $items = $this->selectItems(); - $maxpostperauthor = (int) $this->config->get('system', 'max_author_posts_community_page'); - if ($maxpostperauthor != 0 && $this->selectedTab == 'local') { + if ($this->selectedTab == 'local') { + $maxpostperauthor = (int)$this->config->get('system', 'max_author_posts_community_page'); + $key = 'author-id'; + } elseif ($this->selectedTab == 'global') { + $maxpostperauthor = (int)$this->config->get('system', 'max_server_posts_community_page'); + $key = 'author-gsid'; + } else { + $maxpostperauthor = 0; + } + if ($maxpostperauthor != 0) { $count = 1; - $previousauthor = ''; - $numposts = 0; + $author_posts = []; $selected_items = []; while (count($selected_items) < $this->itemsPerPage && ++$count < 50 && count($items) > 0) { - foreach ($items as $item) { - if ($previousauthor == $item["author-link"]) { - ++$numposts; - } else { - $numposts = 0; - } - $previousauthor = $item["author-link"]; + $maxposts = round((count($items) / $this->itemsPerPage) * $maxpostperauthor); + $minId = $items[array_key_first($items)]['received']; + $maxId = $items[array_key_last($items)]['received']; + $this->logger->debug('Blubb', ['tab' => $this->selectedTab, 'count' => $count, 'min' => $minId, 'max' => $maxId]); - if (($numposts < $maxpostperauthor) && (count($selected_items) < $this->itemsPerPage)) { - $selected_items[] = $item; + foreach ($items as $item) { + $author_posts[$item[$key]][$item['uri-id']] = $item['received']; + } + foreach ($author_posts as $posts) { + if (count($posts) <= $maxposts) { + continue; + } + asort($posts); + while (count($posts) > $maxposts) { + $uri_id = array_key_first($posts); + unset($posts[$uri_id]); + unset($items[$uri_id]); } } + $selected_items = array_merge($selected_items, $items); // If we're looking at a "previous page", the lookup continues forward in time because the list is // sorted in chronologically decreasing order - if (isset($this->minId)) { - $this->minId = $items[0]['received']; + if (!empty($this->minId)) { + $this->minId = $minId; } else { // In any other case, the lookup continues backwards in time - $this->maxId = $items[count($items) - 1]['received']; + $this->maxId = $maxId; } - $items = $this->selectItems(); + if (count($selected_items) < $this->itemsPerPage) { + $items = $this->selectItems(); + } } } else { $selected_items = $items; @@ -606,9 +623,14 @@ class Timeline extends BaseModule } } - $r = Post::selectThreadForUser($this->session->getLocalUserId() ?: 0, ['uri-id', 'received', 'author-link'], $condition, $params); + $items = []; + $result = Post::selectThreadForUser($this->session->getLocalUserId() ?: 0, ['uri-id', 'received', 'author-id', 'author-gsid'], $condition, $params); + + while ($item = $this->database->fetch($result)) { + $items[$item['uri-id']] = $item; + } + $this->database->close($result); - $items = Post::toArray($r); if (empty($items)) { return []; } diff --git a/static/settings.config.php b/static/settings.config.php index 578fdd268c..3a38400561 100644 --- a/static/settings.config.php +++ b/static/settings.config.php @@ -166,6 +166,10 @@ return [ // Has to be one of these values: emergency, alert, critical, error, warning, notice, info, debug 'loglevel' => 'notice', + // max_author_posts_community_page (Integer) + // The maximum number of posts on the local community page from a single author. + 'max_author_posts_community_page' => 0, + // max_image_length (Integer) // An alternate way of limiting picture upload sizes. // Specify the maximum pixel length that pictures are allowed to be (for non-square pictures, it will apply to the longest side). @@ -173,6 +177,10 @@ return [ // If you don't want to set a maximum length, set to -1. 'max_image_length' => -1, + // max_server_posts_community_page (Integer) + // The maximum number of posts on the global community page from a single server. + 'max_server_posts_community_page' => 0, + // maximagesize (Integer) // Maximum size in bytes of an uploaded photo. 'maximagesize' => 800000, diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index abe10bce55..bcd02c885b 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2023.09-rc\n" +"Project-Id-Version: 2024.03-dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-04 22:18+0000\n" +"POT-Creation-Date: 2023-12-25 10:16+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,7 +68,7 @@ msgstr "" #: src/Module/Register.php:90 src/Module/Register.php:206 #: src/Module/Register.php:245 src/Module/Search/Directory.php:37 #: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388 -#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:112 #: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 #: src/Module/Settings/Display.php:197 #: src/Module/Settings/Profile/Photo/Crop.php:165 @@ -293,7 +293,7 @@ msgid "Insert web link" msgstr "" #: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: src/Content/Conversation.php:401 src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:401 src/Content/Conversation.php:1604 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:609 msgid "Please wait" @@ -386,7 +386,7 @@ msgstr "" #: mod/notes.php:57 src/Content/Text/HTML.php:859 #: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:162 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:171 msgid "Save" msgstr "" @@ -396,7 +396,7 @@ msgstr "" #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 #: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 #: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 #: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 #: src/Module/Register.php:267 msgid "User not found." @@ -625,12 +625,12 @@ msgstr "" msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1499 +#: mod/photos.php:1236 src/Content/Conversation.php:1519 #: src/Object/Post.php:261 msgid "Select" msgstr "" -#: mod/photos.php:1237 src/Content/Conversation.php:1500 +#: mod/photos.php:1237 src/Content/Conversation.php:1520 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -798,12 +798,12 @@ msgstr "" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:45 #: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:121 +#: src/Module/Settings/Channels.php:119 msgid "Followers" msgstr "" #: src/BaseModule.php:444 src/Content/Widget.php:240 src/Module/Contact.php:417 -#: src/Module/Settings/Channels.php:120 +#: src/Module/Settings/Channels.php:118 msgid "Following" msgstr "" @@ -961,7 +961,7 @@ msgstr "" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:793 +#: src/Console/User.php:182 src/Model/User.php:806 #: src/Module/Api/Twitter/ContactEndpoint.php:74 #: src/Module/Moderation/Users/Active.php:71 #: src/Module/Moderation/Users/Blocked.php:71 @@ -1490,30 +1490,30 @@ msgstr "" msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1527 src/Object/Post.php:248 +#: src/Content/Conversation.php:1547 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1544 src/Object/Post.php:548 +#: src/Content/Conversation.php:1564 src/Object/Post.php:548 #: src/Object/Post.php:549 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: src/Content/Conversation.php:1557 src/Object/Post.php:536 +#: src/Content/Conversation.php:1577 src/Object/Post.php:536 msgid "Categories:" msgstr "" -#: src/Content/Conversation.php:1558 src/Object/Post.php:537 +#: src/Content/Conversation.php:1578 src/Object/Post.php:537 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1566 src/Object/Post.php:562 +#: src/Content/Conversation.php:1586 src/Object/Post.php:562 #, php-format msgid "%s from %s" msgstr "" -#: src/Content/Conversation.php:1582 +#: src/Content/Conversation.php:1602 msgid "View in context" msgstr "" @@ -1551,7 +1551,7 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:47 -#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +#: src/Module/Settings/Channels.php:146 src/Module/Settings/Channels.php:163 msgid "Images" msgstr "" @@ -1560,7 +1560,7 @@ msgid "Posts with images" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 -#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:148 src/Module/Settings/Channels.php:165 msgid "Audio" msgstr "" @@ -1569,7 +1569,7 @@ msgid "Posts with audio" msgstr "" #: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:147 src/Module/Settings/Channels.php:164 msgid "Videos" msgstr "" @@ -1586,7 +1586,7 @@ msgid "Posts from local users on this server" msgstr "" #: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:118 +#: src/Module/Settings/Channels.php:116 msgid "Global Community" msgstr "" @@ -1749,7 +1749,7 @@ msgstr "" #: src/Content/GroupManager.php:152 src/Content/Nav.php:278 #: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 -#: src/Model/User.php:1355 +#: src/Model/User.php:1368 msgid "Groups" msgstr "" @@ -1770,7 +1770,7 @@ msgstr "" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3137 +#: src/Content/Item.php:332 src/Model/Item.php:3159 msgid "event" msgstr "" @@ -1778,7 +1778,7 @@ msgstr "" msgid "status" msgstr "" -#: src/Content/Item.php:341 src/Model/Item.php:3139 +#: src/Content/Item.php:341 src/Model/Item.php:3161 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "" @@ -2049,7 +2049,7 @@ msgstr "" msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:119 +#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:117 #: view/theme/frio/theme.php:239 msgid "Network" msgstr "" @@ -2190,8 +2190,8 @@ msgid "" "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3870 -#: src/Model/Item.php:3876 src/Model/Item.php:3877 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3892 +#: src/Model/Item.php:3898 src/Model/Item.php:3899 msgid "Link to source" msgstr "" @@ -2359,7 +2359,7 @@ msgstr "" msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1714 +#: src/Content/Widget.php:536 src/Model/Contact.php:1738 msgid "News" msgstr "" @@ -2371,8 +2371,8 @@ msgstr "" msgid "All" msgstr "" -#: src/Content/Widget.php:591 src/Module/Admin/Site.php:464 -#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:158 +#: src/Content/Widget.php:591 src/Module/Admin/Site.php:466 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:167 #: src/Module/Settings/Display.php:315 msgid "Channels" msgstr "" @@ -3234,76 +3234,76 @@ msgstr "" msgid "Approve" msgstr "" -#: src/Model/Contact.php:1710 +#: src/Model/Contact.php:1734 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1718 +#: src/Model/Contact.php:1742 msgid "Group" msgstr "" -#: src/Model/Contact.php:3021 +#: src/Model/Contact.php:3045 msgid "Disallowed profile URL." msgstr "" -#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3050 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3031 +#: src/Model/Contact.php:3055 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3040 +#: src/Model/Contact.php:3064 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3058 +#: src/Model/Contact.php:3082 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3075 +#: src/Model/Contact.php:3099 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:3077 +#: src/Model/Contact.php:3101 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:3080 +#: src/Model/Contact.php:3104 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3086 +#: src/Model/Contact.php:3110 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3087 +#: src/Model/Contact.php:3111 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3093 +#: src/Model/Contact.php:3117 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: src/Model/Contact.php:3098 +#: src/Model/Contact.php:3122 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:3164 +#: src/Model/Contact.php:3188 msgid "Unable to retrieve contact information." msgstr "" @@ -3408,91 +3408,91 @@ msgstr "" msgid "Happy Birthday %s" msgstr "" -#: src/Model/Item.php:2188 +#: src/Model/Item.php:2210 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2190 +#: src/Model/Item.php:2212 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2193 +#: src/Model/Item.php:2215 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3141 +#: src/Model/Item.php:3163 msgid "activity" msgstr "" -#: src/Model/Item.php:3143 +#: src/Model/Item.php:3165 msgid "comment" msgstr "" -#: src/Model/Item.php:3146 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3168 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "" -#: src/Model/Item.php:3316 +#: src/Model/Item.php:3338 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3318 +#: src/Model/Item.php:3340 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3320 +#: src/Model/Item.php:3342 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3324 +#: src/Model/Item.php:3346 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3777 +#: src/Model/Item.php:3799 msgid "bytes" msgstr "" -#: src/Model/Item.php:3808 +#: src/Model/Item.php:3830 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3810 +#: src/Model/Item.php:3832 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3815 +#: src/Model/Item.php:3837 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3817 +#: src/Model/Item.php:3839 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3819 +#: src/Model/Item.php:3841 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3853 src/Model/Item.php:3854 +#: src/Model/Item.php:3875 src/Model/Item.php:3876 msgid "View on separate page" msgstr "" @@ -3650,145 +3650,145 @@ msgstr "" msgid "Contact information and Social Networks" msgstr "" -#: src/Model/User.php:225 src/Model/User.php:1268 +#: src/Model/User.php:225 src/Model/User.php:1281 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:702 src/Model/User.php:735 +#: src/Model/User.php:715 src/Model/User.php:748 msgid "Login failed" msgstr "" -#: src/Model/User.php:767 +#: src/Model/User.php:780 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:888 +#: src/Model/User.php:901 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:943 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:934 +#: src/Model/User.php:947 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:938 +#: src/Model/User.php:951 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:942 +#: src/Model/User.php:955 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1151 +#: src/Model/User.php:1164 msgid "Passwords do not match. Password unchanged." msgstr "" -#: src/Model/User.php:1158 +#: src/Model/User.php:1171 msgid "An invitation is required." msgstr "" -#: src/Model/User.php:1162 +#: src/Model/User.php:1175 msgid "Invitation could not be verified." msgstr "" -#: src/Model/User.php:1170 +#: src/Model/User.php:1183 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: src/Model/User.php:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "" -#: src/Model/User.php:1189 +#: src/Model/User.php:1202 msgid "Please enter the required information." msgstr "" -#: src/Model/User.php:1203 +#: src/Model/User.php:1216 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "" -#: src/Model/User.php:1210 +#: src/Model/User.php:1223 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:1214 +#: src/Model/User.php:1227 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:1222 +#: src/Model/User.php:1235 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: src/Model/User.php:1227 +#: src/Model/User.php:1240 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: src/Model/User.php:1231 +#: src/Model/User.php:1244 msgid "Not a valid email address." msgstr "" -#: src/Model/User.php:1234 +#: src/Model/User.php:1247 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1238 src/Model/User.php:1244 +#: src/Model/User.php:1251 src/Model/User.php:1257 msgid "Cannot use that email." msgstr "" -#: src/Model/User.php:1250 +#: src/Model/User.php:1263 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1258 src/Model/User.php:1315 +#: src/Model/User.php:1271 src/Model/User.php:1328 msgid "Nickname is already registered. Please choose another." msgstr "" -#: src/Model/User.php:1302 src/Model/User.php:1306 +#: src/Model/User.php:1315 src/Model/User.php:1319 msgid "An error occurred during registration. Please try again." msgstr "" -#: src/Model/User.php:1329 +#: src/Model/User.php:1342 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: src/Model/User.php:1336 +#: src/Model/User.php:1349 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1341 +#: src/Model/User.php:1354 msgid "Friends" msgstr "" -#: src/Model/User.php:1345 +#: src/Model/User.php:1358 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1389 +#: src/Model/User.php:1402 msgid "Profile Photos" msgstr "" -#: src/Model/User.php:1569 +#: src/Model/User.php:1582 #, php-format msgid "" "\n" @@ -3796,7 +3796,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1572 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -3832,12 +3832,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1604 src/Model/User.php:1710 +#: src/Model/User.php:1617 src/Model/User.php:1723 #, php-format msgid "Registration details for %s" msgstr "" -#: src/Model/User.php:1624 +#: src/Model/User.php:1637 #, php-format msgid "" "\n" @@ -3853,12 +3853,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1643 +#: src/Model/User.php:1656 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1667 +#: src/Model/User.php:1680 #, php-format msgid "" "\n" @@ -3867,7 +3867,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1675 +#: src/Model/User.php:1688 #, php-format msgid "" "\n" @@ -3905,7 +3905,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1737 +#: src/Model/User.php:1750 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3937,7 +3937,7 @@ msgstr "" #: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:67 #: src/Module/Admin/Federation.php:214 src/Module/Admin/Logs/Settings.php:85 #: src/Module/Admin/Logs/View.php:83 src/Module/Admin/Queue.php:72 -#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:138 +#: src/Module/Admin/Site.php:449 src/Module/Admin/Storage.php:138 #: src/Module/Admin/Summary.php:196 src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 #: src/Module/Moderation/Users/Create.php:61 @@ -3975,7 +3975,7 @@ msgid "Addon %s failed to install." msgstr "" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:452 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 @@ -4175,8 +4175,8 @@ msgid "Enable Debugging" msgstr "" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:470 -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:480 msgid "Read-only because it is set by an environment variable" msgstr "" @@ -4336,269 +4336,269 @@ msgstr "" msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:239 +#: src/Module/Admin/Site.php:240 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:364 src/Module/Settings/Display.php:215 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:381 src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:391 +#: src/Module/Admin/Site.php:393 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:392 +#: src/Module/Admin/Site.php:394 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:393 +#: src/Module/Admin/Site.php:395 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:394 +#: src/Module/Admin/Site.php:396 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:395 +#: src/Module/Admin/Site.php:397 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:426 msgid "Closed" msgstr "" -#: src/Module/Admin/Site.php:425 +#: src/Module/Admin/Site.php:427 msgid "Requires approval" msgstr "" -#: src/Module/Admin/Site.php:426 +#: src/Module/Admin/Site.php:428 msgid "Open" msgstr "" -#: src/Module/Admin/Site.php:430 +#: src/Module/Admin/Site.php:432 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:433 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:438 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:439 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:450 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:451 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:453 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:452 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:454 src/Module/Register.php:152 msgid "Registration" msgstr "" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:455 msgid "File upload" msgstr "" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:456 msgid "Policies" msgstr "" -#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:457 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:458 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:460 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:462 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "Site name" msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:478 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:478 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "System language" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "System theme" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Maximum image size" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " @@ -4610,35 +4610,35 @@ msgid "" "to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:494 msgid "Register policy" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4646,168 +4646,168 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:496 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:496 msgid "" "If registration is permitted above, this sets the maximum number of new user " "registrations to accept per day. If register is set to closed, this setting " "has no effect." msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:497 msgid "Register text" msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:497 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Accounts abandoned after x days" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "Allowed friend domains" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:501 msgid "Allowed email domains" msgstr "" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:501 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "Comma separated list of domains from which content is allowed to be embedded " "in posts like with OEmbed. All sub-domains of the listed domains are allowed " "as well." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Block public" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Force publish" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " "photos will have to authenticate and load each image, which may take a while." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:511 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:511 msgid "" "Set this to announce that your node is used mostly for explicit content that " "might not be suited for minors. This information will be published in the " @@ -4816,319 +4816,329 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:512 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:512 msgid "" "Route external content via the proxy functionality. This is used for example " "for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending " "tags." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 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:514 +#: src/Module/Admin/Site.php:516 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:517 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:517 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:519 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:519 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:523 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:523 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:524 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:522 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "" - -#: src/Module/Admin/Site.php:524 -msgid "Enable Mail support" -msgstr "" - #: src/Module/Admin/Site.php:524 msgid "" -"Enable built-in mail support to poll IMAP folders and to reply via mail." +"The maximum number of posts per user on the local community page. This is " +"useful, when a single user floods the local community page." +msgstr "" + +#: src/Module/Admin/Site.php:525 +msgid "Posts per server on community page" msgstr "" #: src/Module/Admin/Site.php:525 msgid "" +"The maximum number of posts per server on the global community page. This is " +"useful, when posts from a single server flood the global community page." +msgstr "" + +#: src/Module/Admin/Site.php:527 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:527 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:528 +msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you " "cannot connect (at all) to self-signed SSL sites." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Proxy user" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Proxy URL" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:536 msgid "Network timeout" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:536 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "" "Periodically query other servers for contacts and servers that they know of. " "The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:550 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:550 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5136,50 +5146,50 @@ msgid "" "href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:555 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:555 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "Remove old remote items, orphaned database records and old content from some " "other helper tables." msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5187,165 +5197,165 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "Number of items per page in stream pages (network, community, profile/" "contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "" "Number of items per page in stream pages (network, community, profile/" "contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "On systems with users that heavily use contact circles the query can be very " "expensive." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on " "performant system." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great. " "Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes " "with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via " "a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease " @@ -5353,142 +5363,142 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:577 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:580 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:589 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:589 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "" "Number of days of the last interaction that are used to define which sharers " "are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Start Relocation" msgstr "" @@ -6109,7 +6119,7 @@ msgstr "" #: src/Module/Moderation/Blocklist/Server/Index.php:116 #: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/TwoFactor/Index.php:161 #: src/Module/Settings/TwoFactor/Verify.php:158 msgid "Required" @@ -6195,7 +6205,7 @@ msgstr "" #: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 #: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 #: src/Module/Contact/Conversations.php:89 -#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:61 #: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 #: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 #: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 @@ -7363,7 +7373,7 @@ msgstr "" #: src/Module/Friendica.php:102 #: src/Module/Moderation/Blocklist/Server/Index.php:87 #: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:165 +#: src/Module/Settings/Channels.php:174 msgid "Reason for the block" msgstr "" @@ -8111,7 +8121,7 @@ msgstr "" #: src/Module/Moderation/Blocklist/Server/Index.php:86 #: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:164 +#: src/Module/Settings/Channels.php:173 msgid "Blocked server domain pattern" msgstr "" @@ -10149,76 +10159,76 @@ msgstr "" msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/Display.php:338 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:157 #: src/Module/Settings/Display.php:339 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +#: src/Module/Settings/Channels.php:141 src/Module/Settings/Channels.php:158 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +#: src/Module/Settings/Channels.php:142 src/Module/Settings/Channels.php:159 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +#: src/Module/Settings/Channels.php:143 src/Module/Settings/Channels.php:160 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:161 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:145 src/Module/Settings/Channels.php:162 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:156 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:157 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:149 +#: src/Module/Settings/Channels.php:158 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:150 +#: src/Module/Settings/Channels.php:159 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:151 +#: src/Module/Settings/Channels.php:160 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:161 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:162 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10226,39 +10236,39 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:154 +#: src/Module/Settings/Channels.php:163 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:164 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:165 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:159 +#: src/Module/Settings/Channels.php:168 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:160 +#: src/Module/Settings/Channels.php:169 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:161 +#: src/Module/Settings/Channels.php:170 msgid "Add" msgstr "" -#: src/Module/Settings/Channels.php:163 +#: src/Module/Settings/Channels.php:172 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:166 +#: src/Module/Settings/Channels.php:175 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:167 +#: src/Module/Settings/Channels.php:176 msgid "Delete entry from the channel list?" msgstr "" diff --git a/view/templates/admin/site.tpl b/view/templates/admin/site.tpl index 393c1ec4a9..a0adf1b804 100644 --- a/view/templates/admin/site.tpl +++ b/view/templates/admin/site.tpl @@ -56,6 +56,7 @@ {{include file="field_checkbox.tpl" field=$force_publish}} {{include file="field_select.tpl" field=$community_page_style}} {{include file="field_input.tpl" field=$max_author_posts_community_page}} + {{include file="field_input.tpl" field=$max_server_posts_community_page}} {{if $mail_able}} {{include file="field_checkbox.tpl" field=$mail_enabled}} diff --git a/view/theme/frio/templates/admin/site.tpl b/view/theme/frio/templates/admin/site.tpl index e2fab6d8a9..229704e7b5 100644 --- a/view/theme/frio/templates/admin/site.tpl +++ b/view/theme/frio/templates/admin/site.tpl @@ -134,6 +134,7 @@ {{include file="field_checkbox.tpl" field=$force_publish}} {{include file="field_select.tpl" field=$community_page_style}} {{include file="field_input.tpl" field=$max_author_posts_community_page}} + {{include file="field_input.tpl" field=$max_server_posts_community_page}} {{if $mail_able}} {{include file="field_checkbox.tpl" field=$mail_enabled}} From 04cdd3e8ec460d6c06869dd6ae1d2e0ac60812ed Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 25 Dec 2023 13:26:19 -0500 Subject: [PATCH 004/281] Fix Smarty reference to version constant after it was moved to App class (#13769) --- view/templates/admin/federation.tpl | 2 +- view/templates/calendar/calendar_head.tpl | 8 +- view/templates/head.tpl | 48 ++++---- view/templates/jot-header.tpl | 2 +- view/templates/media/browser.tpl | 4 +- view/templates/msg-header.tpl | 2 +- .../templates/settings/profile/index_head.tpl | 2 +- .../settings/profile/photo/crop_head.tpl | 4 +- view/theme/frio/templates/admin/site.tpl | 2 +- view/theme/frio/templates/admin/storage.tpl | 2 +- .../frio/templates/calendar/calendar_head.tpl | 2 +- view/theme/frio/templates/circle_edit.tpl | 2 +- view/theme/frio/templates/contacts-head.tpl | 2 +- view/theme/frio/templates/head.tpl | 106 +++++++++--------- view/theme/frio/templates/jot-header.tpl | 6 +- .../moderation/blocklist/contact.tpl | 4 +- .../templates/moderation/users/active.tpl | 4 +- .../templates/moderation/users/blocked.tpl | 4 +- .../templates/moderation/users/deleted.tpl | 4 +- .../frio/templates/moderation/users/index.tpl | 4 +- .../templates/moderation/users/pending.tpl | 4 +- .../templates/notifications/notifications.tpl | 4 +- view/theme/frio/templates/photos_head.tpl | 2 +- view/theme/frio/templates/theme_settings.tpl | 4 +- .../frio/templates/threaded_conversation.tpl | 4 +- 25 files changed, 116 insertions(+), 116 deletions(-) diff --git a/view/templates/admin/federation.tpl b/view/templates/admin/federation.tpl index 8f8d70cd2b..7757691ea5 100644 --- a/view/templates/admin/federation.tpl +++ b/view/templates/admin/federation.tpl @@ -1,4 +1,4 @@ - +

{{$title}} - {{$page}}

diff --git a/view/templates/calendar/calendar_head.tpl b/view/templates/calendar/calendar_head.tpl index 9266cecf7d..a326d397bb 100644 --- a/view/templates/calendar/calendar_head.tpl +++ b/view/templates/calendar/calendar_head.tpl @@ -1,7 +1,7 @@ - - - - + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + \ No newline at end of file + diff --git a/view/templates/jot-header.tpl b/view/templates/jot-header.tpl index 808d511262..2ffc0753be 100644 --- a/view/templates/jot-header.tpl +++ b/view/templates/jot-header.tpl @@ -45,7 +45,7 @@ function enableOnUser(){ } - + - + + - + \ No newline at end of file + diff --git a/view/templates/settings/profile/photo/crop_head.tpl b/view/templates/settings/profile/photo/crop_head.tpl index 357cc1861c..f92933fc10 100644 --- a/view/templates/settings/profile/photo/crop_head.tpl +++ b/view/templates/settings/profile/photo/crop_head.tpl @@ -1,2 +1,2 @@ - - + + diff --git a/view/theme/frio/templates/admin/site.tpl b/view/theme/frio/templates/admin/site.tpl index 229704e7b5..418eb1237b 100644 --- a/view/theme/frio/templates/admin/site.tpl +++ b/view/theme/frio/templates/admin/site.tpl @@ -17,7 +17,7 @@ }); }); - +

{{$title}} - {{$page}}

diff --git a/view/theme/frio/templates/admin/storage.tpl b/view/theme/frio/templates/admin/storage.tpl index c1bfe371bc..76c405860e 100644 --- a/view/theme/frio/templates/admin/storage.tpl +++ b/view/theme/frio/templates/admin/storage.tpl @@ -1,4 +1,4 @@ - +

{{$title}} - {{$page}}

diff --git a/view/theme/frio/templates/calendar/calendar_head.tpl b/view/theme/frio/templates/calendar/calendar_head.tpl index 481da5f724..98fc92f1ad 100644 --- a/view/theme/frio/templates/calendar/calendar_head.tpl +++ b/view/theme/frio/templates/calendar/calendar_head.tpl @@ -1,5 +1,5 @@ - + +
{{if $editable == 1}} diff --git a/view/theme/frio/templates/contacts-head.tpl b/view/theme/frio/templates/contacts-head.tpl index ebdf2a29a8..0af30ded55 100644 --- a/view/theme/frio/templates/contacts-head.tpl +++ b/view/theme/frio/templates/contacts-head.tpl @@ -1,2 +1,2 @@ - + diff --git a/view/theme/frio/templates/head.tpl b/view/theme/frio/templates/head.tpl index 742a5203b8..5003cb5a1b 100644 --- a/view/theme/frio/templates/head.tpl +++ b/view/theme/frio/templates/head.tpl @@ -6,56 +6,56 @@ {{* All needed css files - Note: css must be inserted before js files *}} - - + - - - - {{* own css files *}} - - {{foreach $stylesheets as $stylesheetUrl => $media}} @@ -81,74 +81,74 @@ {{* The js files we use *}} - - + - + - + src="view/asset/textcomplete/dist/textcomplete.min.js?v={{constant('\Friendica\App::VERSION')}}"> + - + - - + + - + + src="view/theme/frio/frameworks/bootstrap/js/bootstrap.min.js?v={{constant('\Friendica\App::VERSION')}}"> + src="view/theme/frio/frameworks/jasny/js/jasny-bootstrap.custom.js?v={{constant('\Friendica\App::VERSION')}}"> + src="view/theme/frio/frameworks/ekko-lightbox/ekko-lightbox.min.js?v={{constant('\Friendica\App::VERSION')}}"> + src="view/theme/frio/frameworks/flexMenu/flexmenu.custom.js?v={{constant('\Friendica\App::VERSION')}}"> + src="view/theme/frio/frameworks/autosize/autosize.min.js?v={{constant('\Friendica\App::VERSION')}}"> + src="view/theme/frio/frameworks/sticky-kit/jquery.sticky-kit.min.js?v={{constant('\Friendica\App::VERSION')}}"> {{* own js files *}} - - + + {{if ! $block_public}} - + {{/if}} - - - + + + - - - + + + - + {{* Include the strings which are needed for some js functions (e.g. translation) They are loaded into the html so that js functions can use them *}} {{include file="js_strings.tpl"}} diff --git a/view/theme/frio/templates/jot-header.tpl b/view/theme/frio/templates/jot-header.tpl index ed3839860e..498ed7fb24 100644 --- a/view/theme/frio/templates/jot-header.tpl +++ b/view/theme/frio/templates/jot-header.tpl @@ -1,7 +1,7 @@ - - - + + + - + +

{{$title}} - {{$page}}

diff --git a/view/theme/frio/templates/moderation/users/active.tpl b/view/theme/frio/templates/moderation/users/active.tpl index 1972f138ff..fd61ea50fb 100644 --- a/view/theme/frio/templates/moderation/users/active.tpl +++ b/view/theme/frio/templates/moderation/users/active.tpl @@ -1,5 +1,5 @@ - - + +

{{$title}} - {{$page}} ({{$count}})

diff --git a/view/theme/frio/templates/moderation/users/blocked.tpl b/view/theme/frio/templates/moderation/users/blocked.tpl index 3bfcced681..f2dbc386d0 100644 --- a/view/theme/frio/templates/moderation/users/blocked.tpl +++ b/view/theme/frio/templates/moderation/users/blocked.tpl @@ -1,5 +1,5 @@ - - + +

{{$title}} - {{$page}} ({{$count}})

diff --git a/view/theme/frio/templates/moderation/users/deleted.tpl b/view/theme/frio/templates/moderation/users/deleted.tpl index cc4fa5ac02..d8501d616f 100644 --- a/view/theme/frio/templates/moderation/users/deleted.tpl +++ b/view/theme/frio/templates/moderation/users/deleted.tpl @@ -1,5 +1,5 @@ - - + +

{{$title}} - {{$page}} ({{$count}})

diff --git a/view/theme/frio/templates/moderation/users/index.tpl b/view/theme/frio/templates/moderation/users/index.tpl index c0abae5000..b03d2a540d 100644 --- a/view/theme/frio/templates/moderation/users/index.tpl +++ b/view/theme/frio/templates/moderation/users/index.tpl @@ -1,5 +1,5 @@ - - + +

{{$title}} - {{$page}} ({{$count}})

diff --git a/view/theme/frio/templates/moderation/users/pending.tpl b/view/theme/frio/templates/moderation/users/pending.tpl index dbe54029e3..4960ff00b4 100644 --- a/view/theme/frio/templates/moderation/users/pending.tpl +++ b/view/theme/frio/templates/moderation/users/pending.tpl @@ -1,5 +1,5 @@ - - + +

{{$title}} - {{$page}} ({{$count}})

diff --git a/view/theme/frio/templates/notifications/notifications.tpl b/view/theme/frio/templates/notifications/notifications.tpl index 06baf0b739..5a327a063c 100644 --- a/view/theme/frio/templates/notifications/notifications.tpl +++ b/view/theme/frio/templates/notifications/notifications.tpl @@ -1,5 +1,5 @@ - - + +
{{include file="section_title.tpl" title=$header}} diff --git a/view/theme/frio/templates/photos_head.tpl b/view/theme/frio/templates/photos_head.tpl index 8399b413c1..4b460b9dda 100644 --- a/view/theme/frio/templates/photos_head.tpl +++ b/view/theme/frio/templates/photos_head.tpl @@ -1,5 +1,5 @@ - + diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index d633913edf..7e53429e3b 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -1,5 +1,5 @@ - - + +
diff --git a/view/theme/frio/templates/threaded_conversation.tpl b/view/theme/frio/templates/threaded_conversation.tpl index de5522fa9b..dab28d8ca1 100644 --- a/view/theme/frio/templates/threaded_conversation.tpl +++ b/view/theme/frio/templates/threaded_conversation.tpl @@ -1,5 +1,5 @@ -{{if !$update}}{{/if}} -{{if $mode == display}}{{/if}} +{{if !$update}}{{/if}} +{{if $mode == display}}{{/if}} {{$live_update nofilter}} {{foreach $threads as $thread}}
From cb816bde6688cdedaa5d06ec3b8197a94a5913e6 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 26 Dec 2023 08:32:17 +0000 Subject: [PATCH 005/281] Restrict the access for servers that the user ignored --- src/Protocol/ActivityPub.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Protocol/ActivityPub.php b/src/Protocol/ActivityPub.php index 09464a13c2..7396f29211 100644 --- a/src/Protocol/ActivityPub.php +++ b/src/Protocol/ActivityPub.php @@ -315,7 +315,9 @@ class ActivityPub } } - // @todo Look for user blocked domains + if (DI::userGServer()->isIgnoredByUser($uid, $apcontact['gsid'])) { + return false; + } Logger::debug('Server is an accepted requester', ['uid' => $uid, 'id' => $apcontact['gsid'], 'url' => $apcontact['baseurl'], 'signer' => $signer, 'called_by' => $called_by]); From 243bcba726203a4dc14f9c6efcb0dd224970f1c4 Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 09:46:33 +0100 Subject: [PATCH 006/281] Update style.css to display remote friends in common in a css grid --- view/theme/frio/css/style.css | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 74fc0001ca..5069b0ecc8 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -3489,10 +3489,41 @@ body .tread-wrapper .hovercard:hover .hover-card-content a { * some temporary workarounds until this will solved * elsewhere (e.g. new templates) */ +#remote-friends-in-common { + background-color: #fff; + border-radius: 4px; + color: #444; + display: grid; + grid-template-columns: repeat(4, 1fr); + grid-gap: 10px; + margin-bottom: 15px; + padding: 10px; +} + section .profile-match-wrapper { float: left; } +.profile-match-photo { + align-items: center; + display: flex; + justify-content: center; + +} +.profile-match-name { + align-items: center; + display: flex; + justify-content: center; + text-align:center; +} +.profile-match-break { + display:none; +} + +.profile-match-end { + display:none; +} + /** * Login page */ From cc5711b2dff0a4dbac7dd52f64e278e455b911a2 Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 09:48:57 +0100 Subject: [PATCH 007/281] Update remote_friends_common.tpl moved rfic-desc to top, tested on vier, frio and both mobile views --- .../widget/remote_friends_common.tpl | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/view/templates/widget/remote_friends_common.tpl b/view/templates/widget/remote_friends_common.tpl index 74d8e66804..e9a801a434 100644 --- a/view/templates/widget/remote_friends_common.tpl +++ b/view/templates/widget/remote_friends_common.tpl @@ -1,18 +1,18 @@ -
-
{{$desc nofilter}}      {{if $linkmore}}{{$more}}{{/if}}
- {{foreach $contacts as $contact}} -
-
- - {{$contact.name}} - +
{{$desc nofilter}}      {{if $linkmore}}{{$more}}{{/if}}
+
+ {{foreach $contacts as $contact}} +
+
+ + {{$contact.name}} + +
+
+ +
-
- -
+ {{/foreach}} +
- {{/foreach}} -
-
From 2bb5785dfa062423044dc5782b2f7c01e1d1678a Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 09:53:12 +0100 Subject: [PATCH 008/281] Update style.css addes missing empty lines --- view/theme/frio/css/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 5069b0ecc8..6e9ee5aab2 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -3510,12 +3510,14 @@ section .profile-match-wrapper { justify-content: center; } + .profile-match-name { align-items: center; display: flex; justify-content: center; text-align:center; } + .profile-match-break { display:none; } From 46d34c53e66af216fff5026957ab4b89b1565739 Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 10:04:24 +0100 Subject: [PATCH 009/281] Update style.css - removed unnecessary empty line --- view/theme/frio/css/style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 6e9ee5aab2..8f1a322d50 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -3508,7 +3508,6 @@ section .profile-match-wrapper { align-items: center; display: flex; justify-content: center; - } .profile-match-name { From bfc11495f3740060b4ca1bb55e07977015fc15d9 Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 14:13:02 +0100 Subject: [PATCH 010/281] Update style.css Adjusted the BGcolor as suggested by Annando --- view/theme/frio/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 8f1a322d50..924baf639d 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -3490,7 +3490,7 @@ body .tread-wrapper .hovercard:hover .hover-card-content a { * elsewhere (e.g. new templates) */ #remote-friends-in-common { - background-color: #fff; + background-color: rgba(247, 247, 247, $contentbg_transp) border-radius: 4px; color: #444; display: grid; From 4faa43766d8271cdc3a292d03dc87ed86c44f1dc Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 16:39:08 +0100 Subject: [PATCH 011/281] Added collapsable support for remote friends in common in vier theme --- view/theme/vier/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index b2ef72f5f5..24265e899f 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -221,12 +221,21 @@ div.pager { margin-bottom: 5px; */ } -.birthday-notice, .event-notice { +.birthday-notice, .event-notice, #rfic-desc { margin-top: 5px; margin-bottom: 5px; background-color: #F5F5F5; } +#remote-friends-in-common-wrapper { + display: none; +} + +#rfic-desc { + cursor:pointer; +} + + #live-network { /* border-bottom: 1px solid #BDCDD4; */ border-bottom: 1px solid #D2D2D2; From 4e3302ea0d157c6921de9d73f8b00e2ebd08e845 Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 16:42:07 +0100 Subject: [PATCH 012/281] Update style.css Addes remote friends in common wrapper --- view/theme/frio/css/style.css | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 924baf639d..f01128a897 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -2231,6 +2231,8 @@ img.acpopup-img { /* Birthday and Event Reminders */ #birthday-notice, #birthday-wrapper, +#rfic-desc, +#remote-friends-in-common, #event-notice, #event-wrapper { margin-bottom: 5px; @@ -2241,6 +2243,20 @@ img.acpopup-img { -webkit-box-shadow: 0 0 3px #dadada; -moz-box-shadow: 0 0 3px #dadada; border-radius: 4px; + cursor: pointer; +} +#remote-friends-in-common { + background-color: rgba(247, 247, 247, $contentbg_transp) + border-radius: 4px; + color: #444; + display: grid; + grid-template-columns: repeat(4, 1fr); + grid-gap: 10px; + margin-bottom: 15px; + padding: 10px; +} +#remote-friends-in-common-wrapper{ + display: none; } /* Menubar Tabs */ @@ -3489,16 +3505,6 @@ body .tread-wrapper .hovercard:hover .hover-card-content a { * some temporary workarounds until this will solved * elsewhere (e.g. new templates) */ -#remote-friends-in-common { - background-color: rgba(247, 247, 247, $contentbg_transp) - border-radius: 4px; - color: #444; - display: grid; - grid-template-columns: repeat(4, 1fr); - grid-gap: 10px; - margin-bottom: 15px; - padding: 10px; -} section .profile-match-wrapper { float: left; From a609e545b66808f8a8e6c9d2f8dab08acd968880 Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 16:43:23 +0100 Subject: [PATCH 013/281] Update remote_friends_common.tpl Addes collapsable remote friends in common for frio and vier --- .../widget/remote_friends_common.tpl | 32 ++++++++++--------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/view/templates/widget/remote_friends_common.tpl b/view/templates/widget/remote_friends_common.tpl index e9a801a434..27728fec6a 100644 --- a/view/templates/widget/remote_friends_common.tpl +++ b/view/templates/widget/remote_friends_common.tpl @@ -1,18 +1,20 @@ -
{{$desc nofilter}}      {{if $linkmore}}{{$more}}{{/if}}
-
- {{foreach $contacts as $contact}} -
-
- - {{$contact.name}} - +
{{$desc nofilter}}  {{if $linkmore}}{{$more}}{{/if}}
+
+
+ {{foreach $contacts as $contact}} +
+
+ + {{$contact.name}} + +
+
+ +
-
- -
+ {{/foreach}} +
- {{/foreach}} -
From 53c7da87a6fe4b799745497e3120ab14acdc900d Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 16:53:34 +0100 Subject: [PATCH 014/281] removed unnecessary empty line --- view/theme/vier/style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 24265e899f..34ae315420 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -235,7 +235,6 @@ div.pager { cursor:pointer; } - #live-network { /* border-bottom: 1px solid #BDCDD4; */ border-bottom: 1px solid #D2D2D2; From 6c1df6471ae6082636f2b6f8a12bac018f1aee0d Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 19:40:44 +0100 Subject: [PATCH 015/281] Update style.css Added missing spaces --- view/theme/frio/css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index f01128a897..be71399a86 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -3520,15 +3520,15 @@ section .profile-match-wrapper { align-items: center; display: flex; justify-content: center; - text-align:center; + text-align: center; } .profile-match-break { - display:none; + display: none; } .profile-match-end { - display:none; + display: none; } /** From b26a5ce0fa5be00b54f1cd73cd0335345ae47f6b Mon Sep 17 00:00:00 2001 From: Raroun Date: Tue, 26 Dec 2023 19:41:37 +0100 Subject: [PATCH 016/281] Update style.css Added missing space --- view/theme/vier/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 34ae315420..3231c7a703 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -232,7 +232,7 @@ div.pager { } #rfic-desc { - cursor:pointer; + cursor: pointer; } #live-network { From 86a27b51ad1713cbd455c1058ff8f877ae7a1433 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 28 Dec 2023 10:23:01 +0000 Subject: [PATCH 017/281] "User::" is changed to "self::" --- src/Model/User.php | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Model/User.php b/src/Model/User.php index 28742e6395..4782e1bf0a 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -117,16 +117,16 @@ class User { switch ($accounttype) { case 'person': - return User::ACCOUNT_TYPE_PERSON; + return self::ACCOUNT_TYPE_PERSON; case 'organisation': - return User::ACCOUNT_TYPE_ORGANISATION; + return self::ACCOUNT_TYPE_ORGANISATION; case 'news': - return User::ACCOUNT_TYPE_NEWS; + return self::ACCOUNT_TYPE_NEWS; case 'community': - return User::ACCOUNT_TYPE_COMMUNITY; + return self::ACCOUNT_TYPE_COMMUNITY; } return null; } @@ -161,7 +161,7 @@ class User $system['sprvkey'] = $system['uprvkey'] = $system['prvkey']; $system['spubkey'] = $system['upubkey'] = $system['pubkey']; $system['nickname'] = $system['nick']; - $system['page-flags'] = User::PAGE_FLAGS_SOAPBOX; + $system['page-flags'] = self::PAGE_FLAGS_SOAPBOX; $system['account-type'] = $system['contact-type']; $system['guid'] = ''; $system['picdate'] = ''; @@ -193,8 +193,8 @@ class User 'sprvkey' => $system['sprvkey'], 'guid' => System::createUUID(), 'verified' => true, - 'page-flags' => User::PAGE_FLAGS_SOAPBOX, - 'account-type' => User::ACCOUNT_TYPE_RELAY, + 'page-flags' => self::PAGE_FLAGS_SOAPBOX, + 'account-type' => self::ACCOUNT_TYPE_RELAY, ]; DBA::update('user', $fields, ['uid' => 0]); @@ -351,7 +351,7 @@ class User public static function setCommunityUserSettings(int $uid) { $user = self::getById($uid, ['account-type', 'page-flags']); - if ($user['account-type'] != User::ACCOUNT_TYPE_COMMUNITY) { + if ($user['account-type'] != self::ACCOUNT_TYPE_COMMUNITY) { return; } @@ -359,14 +359,14 @@ class User $fields = [ 'allow_cid' => '', - 'allow_gid' => $user['page-flags'] == User::PAGE_FLAGS_PRVGROUP ? '<' . Circle::FOLLOWERS . '>' : '', + 'allow_gid' => $user['page-flags'] == self::PAGE_FLAGS_PRVGROUP ? '<' . Circle::FOLLOWERS . '>' : '', 'deny_cid' => '', 'deny_gid' => '', 'blockwall' => true, 'blocktags' => true, ]; - User::update($fields, $uid); + self::update($fields, $uid); Profile::update(['hide-friends' => true], $uid); } @@ -585,7 +585,7 @@ class User */ public static function getWantedLanguages(int $uid): array { - return DI::pConfig()->get($uid, 'channel', 'languages', [User::getLanguageCode($uid)]) ?? []; + return DI::pConfig()->get($uid, 'channel', 'languages', [self::getLanguageCode($uid)]) ?? []; } /** @@ -822,7 +822,7 @@ class User return; } - $user = User::getById($uid, ['last-activity']); + $user = self::getById($uid, ['last-activity']); if (empty($user)) { return; } @@ -830,7 +830,7 @@ class User $current_day = DateTimeFormat::utcNow('Y-m-d'); if ($user['last-activity'] != $current_day) { - User::update(['last-activity' => $current_day], $uid); + self::update(['last-activity' => $current_day], $uid); // Set the last activity for all identities of the user DBA::update('user', ['last-activity' => $current_day], ['parent-uid' => $uid, 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false]); } @@ -1271,7 +1271,7 @@ class User throw new Exception(DI::l10n()->t('Nickname is already registered. Please choose another.')); } - $new_password = strlen($password) ? $password : User::generateNewPassword(); + $new_password = strlen($password) ? $password : self::generateNewPassword(); $new_password_encoded = self::hashPassword($new_password); $return['password'] = $new_password; @@ -1492,7 +1492,7 @@ class User return false; } - $user = User::getById($register['uid']); + $user = self::getById($register['uid']); if (!DBA::isResult($user)) { return false; } @@ -1510,7 +1510,7 @@ class User $l10n = DI::l10n()->withLang($register['language']); - return User::sendRegisterOpenEmail( + return self::sendRegisterOpenEmail( $l10n, $user, DI::config()->get('config', 'sitename'), @@ -1538,7 +1538,7 @@ class User return false; } - $user = User::getById($register['uid']); + $user = self::getById($register['uid']); if (!DBA::isResult($user)) { return false; } From ba760bb3409e559f11f2b8b37448f8294127d950 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 28 Dec 2023 10:25:22 +0000 Subject: [PATCH 018/281] Unneeded logging removed --- src/Module/Conversation/Timeline.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Module/Conversation/Timeline.php b/src/Module/Conversation/Timeline.php index 48f1a3fbeb..1e49970e65 100644 --- a/src/Module/Conversation/Timeline.php +++ b/src/Module/Conversation/Timeline.php @@ -538,7 +538,6 @@ class Timeline extends BaseModule $maxposts = round((count($items) / $this->itemsPerPage) * $maxpostperauthor); $minId = $items[array_key_first($items)]['received']; $maxId = $items[array_key_last($items)]['received']; - $this->logger->debug('Blubb', ['tab' => $this->selectedTab, 'count' => $count, 'min' => $minId, 'max' => $maxId]); foreach ($items as $item) { $author_posts[$item[$key]][$item['uri-id']] = $item['received']; From 40a126306621fe9eadb58101bd19a0be32e4c163 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 28 Dec 2023 17:42:39 +0000 Subject: [PATCH 019/281] New table "post-counts" to precalculate the counts --- database.sql | 19 +++++- doc/database.md | 1 + doc/database/db_post-counts.md | 35 +++++++++++ src/Database/PostUpdate.php | 53 +++++++++++++++- src/Model/Item.php | 4 ++ src/Model/Post.php | 2 +- src/Model/Post/Counts.php | 90 +++++++++++++++++++++++++++ src/Protocol/ActivityPub/Receiver.php | 5 ++ static/dbstructure.config.php | 17 ++++- 9 files changed, 222 insertions(+), 4 deletions(-) create mode 100644 doc/database/db_post-counts.md create mode 100644 src/Model/Post/Counts.php diff --git a/database.sql b/database.sql index 985587e356..3c2fbb3150 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2024.03-dev (Yellow Archangel) --- DB_UPDATE_VERSION 1542 +-- DB_UPDATE_VERSION 1543 -- ------------------------------------------ @@ -1236,6 +1236,23 @@ CREATE TABLE IF NOT EXISTS `post-category` ( FOREIGN KEY (`tid`) REFERENCES `tag` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='post relation to categories'; +-- +-- TABLE post-counts +-- +CREATE TABLE IF NOT EXISTS `post-counts` ( + `uri-id` int unsigned NOT NULL COMMENT 'Id of the item-uri table entry that contains the item uri', + `vid` smallint unsigned NOT NULL COMMENT 'Id of the verb table entry that contains the activity verbs', + `reaction` varchar(1) NOT NULL COMMENT 'Emoji Reaction', + `parent-uri-id` int unsigned COMMENT 'Id of the item-uri table that contains the parent uri', + `count` int unsigned DEFAULT 0 COMMENT 'Number of activities', + PRIMARY KEY(`uri-id`,`vid`,`reaction`), + INDEX `vid` (`vid`), + INDEX `parent-uri-id` (`parent-uri-id`), + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT, + FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Original remote activity'; + -- -- TABLE post-collection -- diff --git a/doc/database.md b/doc/database.md index 26519ccfb4..f6b0406956 100644 --- a/doc/database.md +++ b/doc/database.md @@ -61,6 +61,7 @@ Database Tables | [post-category](help/database/db_post-category) | post relation to categories | | [post-collection](help/database/db_post-collection) | Collection of posts | | [post-content](help/database/db_post-content) | Content for all posts | +| [post-counts](help/database/db_post-counts) | Original remote activity | | [post-delivery](help/database/db_post-delivery) | Delivery data for posts for the batch processing | | [post-delivery-data](help/database/db_post-delivery-data) | Delivery data for items | | [post-engagement](help/database/db_post-engagement) | Engagement data per post | diff --git a/doc/database/db_post-counts.md b/doc/database/db_post-counts.md new file mode 100644 index 0000000000..86383bfc19 --- /dev/null +++ b/doc/database/db_post-counts.md @@ -0,0 +1,35 @@ +Table post-counts +=========== + +Original remote activity + +Fields +------ + +| Field | Description | Type | Null | Key | Default | Extra | +| ------------- | ----------------------------------------------------------- | ----------------- | ---- | --- | ------- | ----- | +| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | | +| vid | Id of the verb table entry that contains the activity verbs | smallint unsigned | NO | PRI | NULL | | +| reaction | Emoji Reaction | varchar(1) | NO | PRI | NULL | | +| parent-uri-id | Id of the item-uri table that contains the parent uri | int unsigned | YES | | NULL | | +| count | Number of activities | int unsigned | YES | | 0 | | + +Indexes +------------ + +| Name | Fields | +| ------------- | --------------------- | +| PRIMARY | uri-id, vid, reaction | +| vid | vid | +| parent-uri-id | parent-uri-id | + +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +| uri-id | [item-uri](help/database/db_item-uri) | id | +| vid | [verb](help/database/db_verb) | id | +| parent-uri-id | [item-uri](help/database/db_item-uri) | id | + +Return to [database documentation](help/database) diff --git a/src/Database/PostUpdate.php b/src/Database/PostUpdate.php index acc98c882c..ee8c060fa1 100644 --- a/src/Database/PostUpdate.php +++ b/src/Database/PostUpdate.php @@ -32,6 +32,7 @@ use Friendica\Model\ItemURI; use Friendica\Model\Photo; use Friendica\Model\Post; use Friendica\Model\Post\Category; +use Friendica\Model\Post\Counts; use Friendica\Model\Tag; use Friendica\Model\Verb; use Friendica\Protocol\ActivityPub\Processor; @@ -51,7 +52,7 @@ class PostUpdate // Needed for the helper function to read from the legacy term table const OBJECT_TYPE_POST = 1; - const VERSION = 1507; + const VERSION = 1543; /** * Calls the post update functions @@ -124,6 +125,9 @@ class PostUpdate if (!self::update1507()) { return false; } + if (!self::update1543()) { + return false; + } return true; } @@ -1303,4 +1307,51 @@ class PostUpdate return false; } + + /** + * Create "post-counts" entries for old entries. + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1543() + { + // Was the script completed? + if (DI::keyValue()->get('post_update_version') >= 1543) { + return true; + } + + $id = DI::keyValue()->get('post_update_version_1543_id') ?? 0; + + Logger::info('Start', ['uri-id' => $id]); + + $rows = 0; + + $posts = Post::selectPosts(['uri-id', 'parent-uri-id'], ["`uri-id` > ? AND `gravity` IN (?, ?)", $id, Item::GRAVITY_COMMENT, Item::GRAVITY_PARENT], ['order' => ['uri-id'], 'limit' => 1000]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($post = Post::fetch($posts)) { + $id = $post['uri-id']; + Counts::updateForPost($post['uri-id'], $post['parent-uri-id']); + ++$rows; + } + DBA::close($posts); + + DI::keyValue()->set('post_update_version_1543_id', $id); + + Logger::info('Processed', ['rows' => $rows, 'last' => $id]); + + if ($rows <= 100) { + DI::keyValue()->set('post_update_version', 1543); + Logger::info('Done'); + return true; + } + + return false; + } } diff --git a/src/Model/Item.php b/src/Model/Item.php index 524c4facb4..b52f065b04 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -1432,6 +1432,10 @@ class Item self::updateDisplayCache($posted_item['uri-id']); } + if (in_array($posted_item['gravity'], [self::GRAVITY_ACTIVITY, self::GRAVITY_COMMENT]) && ($posted_item['uid'] == 0)) { + Post\Counts::update($posted_item['thr-parent-id'], $posted_item['parent-uri-id'], $posted_item['vid'], $posted_item['verb'], $posted_item['body']); + } + if ($inserted) { Post\Engagement::storeFromItem($posted_item); } diff --git a/src/Model/Post.php b/src/Model/Post.php index 2e8bbe22e3..03df5f9030 100644 --- a/src/Model/Post.php +++ b/src/Model/Post.php @@ -72,7 +72,7 @@ class Post if (array_key_exists('title', $row)) { $row['title'] = ''; } - if (array_key_exists('body', $row)) { + if (array_key_exists('body', $row) && empty($row['body'])) { $row['body'] = $row['verb']; } if (array_key_exists('object', $row)) { diff --git a/src/Model/Post/Counts.php b/src/Model/Post/Counts.php new file mode 100644 index 0000000000..bc617608ee --- /dev/null +++ b/src/Model/Post/Counts.php @@ -0,0 +1,90 @@ +. + * + */ + +namespace Friendica\Model\Post; + +use Friendica\Content\Smilies; +use Friendica\Core\Logger; +use Friendica\Database\Database; +use Friendica\Database\DBA; +use Friendica\Model\Item; +use Friendica\Model\Post; +use Friendica\Model\Verb; +use Friendica\Protocol\Activity; + +class Counts +{ + /** + * Insert or update a post-counts entry + * + * @param int $uri_id + */ + public static function update(int $uri_id, int $parent_uri_id, int $vid, string $verb, string $body = null) + { + $condition = ['thr-parent-id' => $uri_id, 'vid' => $vid]; + + if ($body == $verb) { + $condition['body'] = null; + $body = ''; + } elseif (($verb != Activity::POST) && (mb_strlen($body) == 1) && Smilies::isEmojiPost($body)) { + $condition['body'] = $body; + } else { + $body = ''; + } + + $fields = [ + 'uri-id' => $uri_id, + 'vid' => $vid, + 'reaction' => $body, + 'parent-uri-id' => $parent_uri_id, + 'count' => Post::countPosts($condition), + ]; + + if ($fields['count'] == 0) { + return true; + } + + return DBA::insert('post-counts', $fields, Database::INSERT_UPDATE); + } + + public static function updateForPost(int $uri_id, int $parent_uri_id) + { + self::update($uri_id, $parent_uri_id, Verb::getID(Activity::POST), Activity::POST); + + $activities = DBA::p("SELECT `parent-uri-id`, `vid`, `verb`, `body` FROM `post-view` WHERE `thr-parent-id` = ? AND `gravity` = ? GROUP BY `parent-uri-id`, `vid`, `verb`, `body`", $uri_id, Item::GRAVITY_ACTIVITY); + while ($activity = DBA::fetch($activities)) { + self::update($uri_id, $activity['parent-uri-id'], $activity['vid'], $activity['verb'], $activity['body']); + } + DBA::close($activities); + } + + /** + * Retrieves counts of the given uri-id + * + * @param int $uriId + * + * @return array + */ + public static function getByURIId(int $uriId): array + { + return DBA::selectToArray('post-counts', [], ['uri-id' => $uriId]); + } +} diff --git a/src/Protocol/ActivityPub/Receiver.php b/src/Protocol/ActivityPub/Receiver.php index 94233c8a89..738d1955ab 100644 --- a/src/Protocol/ActivityPub/Receiver.php +++ b/src/Protocol/ActivityPub/Receiver.php @@ -1272,6 +1272,11 @@ class Receiver } } + if (empty($receivers) && !empty($parent['parent-author-link'])) { + $uid = User::getIdForURL($parent['parent-author-link']); + $receivers[$uid] = ['uid' => $uid, 'type' => self::TARGET_BTO]; + } + if (!empty($reply) && (!empty($receivers[0]) || !empty($receivers[-1]))) { $parents = Post::select(['uid'], DBA::mergeConditions(['uri' => $reply], ["`uid` != ?", 0])); while ($parent = Post::fetch($parents)) { diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 64c9bdff1f..d3963e205b 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -56,7 +56,7 @@ use Friendica\Database\DBA; // This file is required several times during the test in DbaDefinition which justifies this condition if (!defined('DB_UPDATE_VERSION')) { - define('DB_UPDATE_VERSION', 1542); + define('DB_UPDATE_VERSION', 1543); } return [ @@ -1264,6 +1264,21 @@ return [ "uid_uri-id" => ["uid", "uri-id"], ] ], + "post-counts" => [ + "comment" => "Original remote activity", + "fields" => [ + "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"], + "vid" => ["type" => "smallint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["verb" => "id", "on delete" => "restrict"], "comment" => "Id of the verb table entry that contains the activity verbs"], + "reaction" => ["type" => "varchar(1)", "not null" => "1", "primary" => "1", "comment" => "Emoji Reaction"], + "parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table that contains the parent uri"], + "count" => ["type" => "int unsigned", "default" => 0, "comment" => "Number of activities"], + ], + "indexes" => [ + "PRIMARY" => ["uri-id", "vid", "reaction"], + "vid" => ["vid"], + "parent-uri-id" => ["parent-uri-id"], + ] + ], "post-collection" => [ "comment" => "Collection of posts", "fields" => [ From e88cd166446f5a2665264a9ae60b5e82a4670603 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 28 Dec 2023 17:50:11 +0000 Subject: [PATCH 020/281] Code standards --- src/Model/Post/Counts.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Model/Post/Counts.php b/src/Model/Post/Counts.php index bc617608ee..2d6f671d7d 100644 --- a/src/Model/Post/Counts.php +++ b/src/Model/Post/Counts.php @@ -22,7 +22,6 @@ namespace Friendica\Model\Post; use Friendica\Content\Smilies; -use Friendica\Core\Logger; use Friendica\Database\Database; use Friendica\Database\DBA; use Friendica\Model\Item; @@ -43,7 +42,7 @@ class Counts if ($body == $verb) { $condition['body'] = null; - $body = ''; + $body = ''; } elseif (($verb != Activity::POST) && (mb_strlen($body) == 1) && Smilies::isEmojiPost($body)) { $condition['body'] = $body; } else { From 1564c297bbd30337aef82d0e9d1013c8e61612da Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 30 Dec 2023 00:27:57 +0100 Subject: [PATCH 021/281] Cache blocklist (#13779) --- src/Content/Conversation.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index 1f321b75e8..deecc6c224 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -96,6 +96,8 @@ class Conversation private $session; /** @var Repository\UserGServer */ private $userGServer; + /** @var Array */ + private $blockList; public function __construct(Repository\UserGServer $userGServer, LoggerInterface $logger, Profiler $profiler, Activity $activity, L10n $l10n, Item $item, Arguments $args, BaseURL $baseURL, IManageConfigValues $config, IManagePersonalConfigValues $pConfig, App\Page $page, App\Mode $mode, App $app, IHandleUserSessions $session) { @@ -700,21 +702,25 @@ class Conversation return []; } + if (!empty($this->blockList)) { + return $this->blockList; + } + $str_blocked = str_replace(["\n", "\r"], ",", $this->pConfig->get($this->session->getLocalUserId(), 'system', 'blocked') ?? ''); if (empty($str_blocked)) { return []; } - $blocklist = []; + $this->blockList = []; foreach (explode(',', $str_blocked) as $entry) { $cid = Contact::getIdForURL(trim($entry), 0, false); if (!empty($cid)) { - $blocklist[] = $cid; + $this->blockList[] = $cid; } } - return $blocklist; + return $this->blockList; } /** From ad1389b20a9f252eea7c13637701d4b008834e78 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 30 Dec 2023 00:43:14 +0100 Subject: [PATCH 022/281] Transmitting events to Diaspora does work again (#13777) --- src/Protocol/Diaspora.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 59918287ab..a9ba52dcd0 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -3259,7 +3259,9 @@ class Diaspora /// @todo - establish "all day" events in Friendica $eventdata['all_day'] = 'false'; - $eventdata['timezone'] = 'UTC'; + // @todo Should be user timezone - but only if the event is supposed to be displayed + // in that specific timezone and not the user's timezone. + // $eventdata['timezone'] = 'UTC'; if ($event['start']) { $eventdata['start'] = DateTimeFormat::utc($event['start'], $mask); @@ -3403,8 +3405,7 @@ class Diaspora if ($item['event-id'] > 0) { $event = self::buildEvent($item['event-id']); if (count($event)) { - // Deactivated, since Diaspora seems to have problems with the processing. - // $message['event'] = $event; + $message['event'] = $event; if ( !empty($event['location']['address']) && From 0c68a53e1e86ef6d7a3faf236267df576f976647 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 30 Dec 2023 00:51:41 +0100 Subject: [PATCH 023/281] Remove 'blocklist' pconfig functionality (#13780) * Cache blocklist * Remove 'blocklist' pconfig functionality * The blocklist variable isn't used anymore --- src/Content/Conversation.php | 41 ------------------------------------ 1 file changed, 41 deletions(-) diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index deecc6c224..303850d9d9 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -658,10 +658,6 @@ class Conversation * But for now, this array respects the old style, just in case */ foreach ($items as $item) { - if (in_array($item['author-id'], $this->getBlocklist())) { - continue; - } - // Can we put this after the visibility check? $this->builtinActivityPuller($item, $conv_responses); @@ -696,33 +692,6 @@ class Conversation return $threads; } - private function getBlocklist(): array - { - if (!$this->session->getLocalUserId()) { - return []; - } - - if (!empty($this->blockList)) { - return $this->blockList; - } - - $str_blocked = str_replace(["\n", "\r"], ",", $this->pConfig->get($this->session->getLocalUserId(), 'system', 'blocked') ?? ''); - if (empty($str_blocked)) { - return []; - } - - $this->blockList = []; - - foreach (explode(',', $str_blocked) as $entry) { - $cid = Contact::getIdForURL(trim($entry), 0, false); - if (!empty($cid)) { - $this->blockList[] = $cid; - } - } - - return $this->blockList; - } - /** * Adds some information (Causer, post reason, direction) to the fetched post row. * @@ -1280,16 +1249,10 @@ class Conversation return $parents; } - $blocklist = $this->getBlocklist(); - $item_array = []; // Dedupes the item list on the uri to prevent infinite loops foreach ($item_list as $item) { - if (in_array($item['author-id'], $blocklist)) { - continue; - } - $item_array[$item['uri-id']] = $item; } @@ -1478,10 +1441,6 @@ class Conversation continue; } - if (in_array($item['author-id'], $this->getBlocklist())) { - continue; - } - // prevent private email from leaking. if ($item['network'] === Protocol::MAIL && $this->session->getLocalUserId() != $item['uid']) { continue; From 8fc96477e74753a481db471cca64abb5c759e0c0 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 31 Dec 2023 12:50:07 +0100 Subject: [PATCH 024/281] Use the post-counts table to display content (#13781) * Use the post-counts table to display content * Use verb instead of vid * Use verb * Update counter on delete --- database.sql | 16 ++- src/Content/Conversation.php | 55 +++++---- src/Database/PostUpdate.php | 20 ++-- src/Model/Item.php | 23 ++-- src/Model/Post/Counts.php | 47 +++++++- src/Model/Verb.php | 19 +++- src/Module/Conversation/Network.php | 4 +- src/Module/Conversation/Timeline.php | 10 ++ src/Object/Post.php | 7 +- static/dbstructure.config.php | 2 +- static/dbview.config.php | 12 ++ view/lang/C/messages.po | 161 ++++++++++++++------------- 12 files changed, 250 insertions(+), 126 deletions(-) diff --git a/database.sql b/database.sql index 3c2fbb3150..87fbd84a61 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2024.03-dev (Yellow Archangel) --- DB_UPDATE_VERSION 1543 +-- DB_UPDATE_VERSION 1544 -- ------------------------------------------ @@ -2025,6 +2025,20 @@ CREATE VIEW `circle-member-view` AS SELECT INNER JOIN `contact` ON `group_member`.`contact-id` = `contact`.`id` INNER JOIN `group` ON `group_member`.`gid` = `group`.`id`; +-- +-- VIEW post-counts-view +-- +DROP VIEW IF EXISTS `post-counts-view`; +CREATE VIEW `post-counts-view` AS SELECT + `post-counts`.`uri-id` AS `uri-id`, + `post-counts`.`vid` AS `vid`, + `verb`.`name` AS `verb`, + `post-counts`.`reaction` AS `reaction`, + `post-counts`.`parent-uri-id` AS `parent-uri-id`, + `post-counts`.`count` AS `count` + FROM `post-counts` + INNER JOIN `verb` ON `verb`.`id` = `post-counts`.`vid`; + -- -- VIEW post-timeline-view -- diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index 303850d9d9..453fe7a663 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -96,8 +96,6 @@ class Conversation private $session; /** @var Repository\UserGServer */ private $userGServer; - /** @var Array */ - private $blockList; public function __construct(Repository\UserGServer $userGServer, LoggerInterface $logger, Profiler $profiler, Activity $activity, L10n $l10n, Item $item, Arguments $args, BaseURL $baseURL, IManageConfigValues $config, IManagePersonalConfigValues $pConfig, App\Page $page, App\Mode $mode, App $app, IHandleUserSessions $session) { @@ -868,6 +866,7 @@ class Conversation $emojis = $this->getEmojis($uriids); $quoteshares = $this->getQuoteShares($uriids); + $counts = $this->getCounts($uriids); if (!$this->config->get('system', 'legacy_activities')) { $condition = DBA::mergeConditions($condition, ["(`gravity` != ? OR `origin`)", ItemModel::GRAVITY_ACTIVITY]); @@ -875,7 +874,7 @@ class Conversation $condition = DBA::mergeConditions( $condition, - ["`uid` IN (0, ?) AND (NOT `vid` IN (?, ?, ?) OR `vid` IS NULL)", $uid, Verb::getID(Activity::FOLLOW), Verb::getID(Activity::VIEW), Verb::getID(Activity::READ)] + ["`uid` IN (0, ?) AND (NOT `verb` IN (?, ?, ?) OR `verb` IS NULL)", $uid, Activity::FOLLOW, Activity::VIEW, Activity::READ] ); $condition = DBA::mergeConditions($condition, ["(`uid` != ? OR `private` != ?)", 0, ItemModel::PRIVATE]); @@ -992,6 +991,7 @@ class Conversation foreach ($items as $key => $row) { $items[$key]['emojis'] = $emojis[$key] ?? []; + $items[$key]['counts'] = $counts[$key] ?? 0; $items[$key]['quoteshares'] = $quoteshares[$key] ?? []; $always_display = in_array($mode, [self::MODE_CONTACTS, self::MODE_CONTACT_POSTS]); @@ -1025,6 +1025,16 @@ class Conversation */ private function getEmojis(array $uriids): array { + $emojis = []; + + foreach (Post\Counts::get(['parent-uri-id' => $uriids]) as $count) { + $emojis[$count['uri-id']][$count['reaction']]['emoji'] = $count['reaction']; + $emojis[$count['uri-id']][$count['reaction']]['verb'] = Verb::getByID($count['vid']); + $emojis[$count['uri-id']][$count['reaction']]['total'] = $count['count']; + $emojis[$count['uri-id']][$count['reaction']]['title'] = []; + } + + // @todo The following code should be removed, once that we display activity authors on demand $activity_emoji = [ Activity::LIKE => '👍', Activity::DISLIKE => '👎', @@ -1033,42 +1043,49 @@ class Conversation Activity::ATTENDNO => '❌', Activity::ANNOUNCE => '♻', Activity::VIEW => '📺', + Activity::READ => '📖', ]; - $index_list = array_values($activity_emoji); - $verbs = array_merge(array_keys($activity_emoji), [Activity::EMOJIREACT, Activity::POST]); - + $verbs = array_merge(array_keys($activity_emoji), [Activity::EMOJIREACT, Activity::POST]); $condition = DBA::mergeConditions(['parent-uri-id' => $uriids, 'gravity' => [ItemModel::GRAVITY_ACTIVITY, ItemModel::GRAVITY_COMMENT], 'verb' => $verbs], ["NOT `deleted`"]); $separator = chr(255) . chr(255) . chr(255); - $sql = "SELECT `thr-parent-id`, `body`, `verb`, `gravity`, COUNT(*) AS `total`, GROUP_CONCAT(REPLACE(`author-name`, '" . $separator . "', ' ') SEPARATOR '" . $separator . "' LIMIT 50) AS `title` FROM `post-view` WHERE " . array_shift($condition) . " GROUP BY `thr-parent-id`, `verb`, `body`, `gravity`"; - - $emojis = []; + $sql = "SELECT `parent-uri-id`, `thr-parent-id`, `body`, `verb`, `gravity`, GROUP_CONCAT(REPLACE(`author-name`, '" . $separator . "', ' ') SEPARATOR '" . $separator . "' LIMIT 50) AS `title` FROM `post-view` WHERE " . array_shift($condition) . " GROUP BY `parent-uri-id`, `thr-parent-id`, `verb`, `body`, `gravity`"; $rows = DBA::p($sql, $condition); while ($row = DBA::fetch($rows)) { if ($row['gravity'] == ItemModel::GRAVITY_ACTIVITY) { - $row['verb'] = $row['body'] ? Activity::EMOJIREACT : $row['verb']; - $emoji = $row['body'] ?: $activity_emoji[$row['verb']]; + $emoji = $row['body'] ?: $activity_emoji[$row['verb']]; } else { $emoji = ''; } - if (!isset($index_list[$emoji])) { - $index_list[] = $emoji; + if (isset($emojis[$row['thr-parent-id']][$emoji]['title'])) { + $emojis[$row['thr-parent-id']][$emoji]['title'] = array_unique(array_merge($emojis[$row['thr-parent-id']][$emoji]['title'] ?? [], explode($separator, $row['title']))); } - $index = array_search($emoji, $index_list); - - $emojis[$row['thr-parent-id']][$index]['emoji'] = $emoji; - $emojis[$row['thr-parent-id']][$index]['verb'] = $row['verb']; - $emojis[$row['thr-parent-id']][$index]['total'] = ($emojis[$row['thr-parent-id']][$index]['total'] ?? 0) + $row['total']; - $emojis[$row['thr-parent-id']][$index]['title'] = array_unique(array_merge($emojis[$row['thr-parent-id']][$index]['title'] ?? [], explode($separator, $row['title']))); } DBA::close($rows); return $emojis; } + /** + * Fetch comment counts from the conversation + * + * @param array $uriids + * @return array + */ + private function getCounts(array $uriids): array + { + $counts = []; + + foreach (Post\Counts::get(['parent-uri-id' => $uriids, 'verb' => Activity::POST]) as $count) { + $counts[$count['parent-uri-id']] = ($counts[$count['parent-uri-id']] ?? 0) + $count['count']; + } + + return $counts; + } + /** * Fetch quote shares from the conversation * diff --git a/src/Database/PostUpdate.php b/src/Database/PostUpdate.php index ee8c060fa1..1434031eaf 100644 --- a/src/Database/PostUpdate.php +++ b/src/Database/PostUpdate.php @@ -52,7 +52,7 @@ class PostUpdate // Needed for the helper function to read from the legacy term table const OBJECT_TYPE_POST = 1; - const VERSION = 1543; + const VERSION = 1544; /** * Calls the post update functions @@ -125,7 +125,7 @@ class PostUpdate if (!self::update1507()) { return false; } - if (!self::update1543()) { + if (!self::update1544()) { return false; } return true; @@ -1315,20 +1315,24 @@ class PostUpdate * @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \ImagickException */ - private static function update1543() + private static function update1544() { // Was the script completed? - if (DI::keyValue()->get('post_update_version') >= 1543) { + if (DI::keyValue()->get('post_update_version') >= 1544) { return true; } - $id = DI::keyValue()->get('post_update_version_1543_id') ?? 0; + $id = (int)(DI::keyValue()->get('post_update_version_1544_id') ?? 0); + if ($id == 0) { + $post = Post::selectFirstPost(['uri-id'], [], ['order' => ['uri-id' => true]]); + $id = (int)($post['uri-id'] ?? 0); + } Logger::info('Start', ['uri-id' => $id]); $rows = 0; - $posts = Post::selectPosts(['uri-id', 'parent-uri-id'], ["`uri-id` > ? AND `gravity` IN (?, ?)", $id, Item::GRAVITY_COMMENT, Item::GRAVITY_PARENT], ['order' => ['uri-id'], 'limit' => 1000]); + $posts = Post::selectPosts(['uri-id', 'parent-uri-id'], ["`uri-id` < ? AND `gravity` IN (?, ?)", $id, Item::GRAVITY_COMMENT, Item::GRAVITY_PARENT], ['order' => ['uri-id' => true], 'limit' => 1000]); if (DBA::errorNo() != 0) { Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); @@ -1342,12 +1346,12 @@ class PostUpdate } DBA::close($posts); - DI::keyValue()->set('post_update_version_1543_id', $id); + DI::keyValue()->set('post_update_version_1544_id', $id); Logger::info('Processed', ['rows' => $rows, 'last' => $id]); if ($rows <= 100) { - DI::keyValue()->set('post_update_version', 1543); + DI::keyValue()->set('post_update_version', 1544); Logger::info('Done'); return true; } diff --git a/src/Model/Item.php b/src/Model/Item.php index b52f065b04..3a613d6180 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -338,7 +338,7 @@ class Item // locate item to be deleted $fields = [ 'id', 'uri', 'uri-id', 'uid', 'parent', 'parent-uri-id', 'origin', - 'deleted', 'resource-id', 'event-id', + 'thr-parent-id', 'deleted', 'resource-id', 'event-id', 'vid', 'body', 'verb', 'object-type', 'object', 'target', 'contact-id', 'psid', 'gravity' ]; $item = Post::selectFirst($fields, ['id' => $item_id]); @@ -418,6 +418,10 @@ class Item DI::notify()->deleteForItem($item['uri-id']); DI::notification()->deleteForItem($item['uri-id']); + if (in_array($item['gravity'], [self::GRAVITY_ACTIVITY, self::GRAVITY_COMMENT])) { + Post\Counts::update($item['thr-parent-id'], $item['parent-uri-id'], $item['vid'], $item['verb'], $item['body']); + } + Logger::info('Item has been marked for deletion.', ['id' => $item_id]); return true; @@ -1427,16 +1431,15 @@ class Item Worker::add(['priority' => $priority, 'dont_fork' => true], 'Notifier', $notify_type, (int)$posted_item['uri-id'], (int)$posted_item['uid']); } - // Fill the cache with the rendered content. - if (in_array($posted_item['gravity'], [self::GRAVITY_PARENT, self::GRAVITY_COMMENT]) && ($posted_item['uid'] == 0)) { - self::updateDisplayCache($posted_item['uri-id']); - } - - if (in_array($posted_item['gravity'], [self::GRAVITY_ACTIVITY, self::GRAVITY_COMMENT]) && ($posted_item['uid'] == 0)) { - Post\Counts::update($posted_item['thr-parent-id'], $posted_item['parent-uri-id'], $posted_item['vid'], $posted_item['verb'], $posted_item['body']); - } - if ($inserted) { + // Fill the cache with the rendered content. + if (in_array($posted_item['gravity'], [self::GRAVITY_PARENT, self::GRAVITY_COMMENT])) { + self::updateDisplayCache($posted_item['uri-id']); + } + + if (in_array($posted_item['gravity'], [self::GRAVITY_ACTIVITY, self::GRAVITY_COMMENT])) { + Post\Counts::update($posted_item['thr-parent-id'], $posted_item['parent-uri-id'], $posted_item['vid'], $posted_item['verb'], $posted_item['body']); + } Post\Engagement::storeFromItem($posted_item); } diff --git a/src/Model/Post/Counts.php b/src/Model/Post/Counts.php index 2d6f671d7d..865b3bdb4c 100644 --- a/src/Model/Post/Counts.php +++ b/src/Model/Post/Counts.php @@ -38,11 +38,20 @@ class Counts */ public static function update(int $uri_id, int $parent_uri_id, int $vid, string $verb, string $body = null) { - $condition = ['thr-parent-id' => $uri_id, 'vid' => $vid]; + if (!in_array($verb, [Activity::POST, Activity::LIKE, Activity::DISLIKE, + Activity::ATTEND, Activity::ATTENDMAYBE, Activity::ATTENDNO, + Activity::EMOJIREACT, Activity::ANNOUNCE, Activity::VIEW, Activity::READ])) { + return true; + } + + $condition = ['thr-parent-id' => $uri_id, 'vid' => $vid, 'deleted' => false]; if ($body == $verb) { $condition['body'] = null; $body = ''; + } elseif ($verb == Activity::POST) { + $condition['gravity'] = Item::GRAVITY_COMMENT; + $body = ''; } elseif (($verb != Activity::POST) && (mb_strlen($body) == 1) && Smilies::isEmojiPost($body)) { $condition['body'] = $body; } else { @@ -58,6 +67,7 @@ class Counts ]; if ($fields['count'] == 0) { + DBA::delete('post-counts', ['uri-id' => $uri_id, 'vid' => $vid, 'reaction' => $body]); return true; } @@ -76,14 +86,41 @@ class Counts } /** - * Retrieves counts of the given uri-id + * Retrieves counts of the given condition * - * @param int $uriId + * @param array $condition * * @return array */ - public static function getByURIId(int $uriId): array + public static function get(array $condition): array { - return DBA::selectToArray('post-counts', [], ['uri-id' => $uriId]); + $counts = []; + + $activity_emoji = [ + Activity::LIKE => '👍', + Activity::DISLIKE => '👎', + Activity::ATTEND => '✔️', + Activity::ATTENDMAYBE => '❓', + Activity::ATTENDNO => '❌', + Activity::ANNOUNCE => '♻', + Activity::VIEW => '📺', + Activity::READ => '📖', + ]; + + $verbs = array_merge(array_keys($activity_emoji), [Activity::EMOJIREACT, Activity::POST]); + + $condition = DBA::mergeConditions($condition, ['verb' => $verbs]); + $countquery = DBA::select('post-counts-view', [], $condition); + while ($count = DBA::fetch($countquery)) { + if (!empty($count['reaction'])) { + $count['verb'] = Activity::EMOJIREACT; + $count['vid'] = Verb::getID($count['verb']); + } elseif (!empty($activity_emoji[$count['verb']])) { + $count['reaction'] = $activity_emoji[$count['verb']]; + } + $counts[] = $count; + } + DBA::close($counts); + return $counts; } } diff --git a/src/Model/Verb.php b/src/Model/Verb.php index 488715b287..72759834ec 100644 --- a/src/Model/Verb.php +++ b/src/Model/Verb.php @@ -26,6 +26,8 @@ use Friendica\Database\DBA; class Verb { + static $verbs = []; + /** * Insert a verb record and return its id * @@ -40,14 +42,23 @@ class Verb return 0; } + $id = array_search($verb, self::$verbs); + if ($id !== false) { + return $id; + } + $verb_record = DBA::selectFirst('verb', ['id'], ['name' => $verb]); if (DBA::isResult($verb_record)) { + self::$verbs[$verb_record['id']] = $verb; return $verb_record['id']; } DBA::insert('verb', ['name' => $verb], Database::INSERT_IGNORE); - return DBA::lastInsertId(); + $id = DBA::lastInsertId(); + self::$verbs[$id] = $verb; + return $id; + } /** @@ -62,11 +73,17 @@ class Verb return ''; } + if (!empty(self::$verbs[$id])) { + return self::$verbs[$id]; + } + $verb_record = DBA::selectFirst('verb', ['name'], ['id' => $id]); if (!DBA::isResult($verb_record)) { return ''; } + self::$verbs[$id] = $verb_record['name']; + return $verb_record['name']; } } diff --git a/src/Module/Conversation/Network.php b/src/Module/Conversation/Network.php index b98e9d3652..89c9ccb197 100644 --- a/src/Module/Conversation/Network.php +++ b/src/Module/Conversation/Network.php @@ -435,8 +435,8 @@ class Network extends Timeline $conditionStrings = DBA::mergeConditions($conditionStrings, ["`contact-id` IN (SELECT `contact-id` FROM `group_member` WHERE `gid` = ?)", $this->circleId]); } elseif ($this->groupContactId) { $conditionStrings = DBA::mergeConditions($conditionStrings, - ["((`contact-id` = ?) OR `uri-id` IN (SELECT `parent-uri-id` FROM `post-user-view` WHERE (`contact-id` = ? AND `gravity` = ? AND `vid` = ? AND `uid` = ?)))", - $this->groupContactId, $this->groupContactId, Item::GRAVITY_ACTIVITY, Verb::getID(Activity::ANNOUNCE), $this->session->getLocalUserId()]); + ["((`contact-id` = ?) OR `uri-id` IN (SELECT `parent-uri-id` FROM `post-user-view` WHERE (`contact-id` = ? AND `gravity` = ? AND `verb` = ? AND `uid` = ?)))", + $this->groupContactId, $this->groupContactId, Item::GRAVITY_ACTIVITY, Activity::ANNOUNCE, $this->session->getLocalUserId()]); } // Currently only the order modes "received" and "commented" are in use diff --git a/src/Module/Conversation/Timeline.php b/src/Module/Conversation/Timeline.php index 1e49970e65..9001a43871 100644 --- a/src/Module/Conversation/Timeline.php +++ b/src/Module/Conversation/Timeline.php @@ -41,7 +41,9 @@ use Friendica\Database\DBA; use Friendica\Model\Item; use Friendica\Model\Post; use Friendica\Model\Post\Engagement; +use Friendica\Model\Verb; use Friendica\Module\Response; +use Friendica\Protocol\Activity; use Friendica\Util\DateTimeFormat; use Friendica\Util\Profiler; use Psr\Log\LoggerInterface; @@ -626,6 +628,8 @@ class Timeline extends BaseModule $result = Post::selectThreadForUser($this->session->getLocalUserId() ?: 0, ['uri-id', 'received', 'author-id', 'author-gsid'], $condition, $params); while ($item = $this->database->fetch($result)) { + $item['comments'] = 0; + $items[$item['uri-id']] = $item; } $this->database->close($result); @@ -634,6 +638,12 @@ class Timeline extends BaseModule return []; } + $uriids = array_keys($items); + + foreach (Post\Counts::get(['parent-uri-id' => $uriids, 'verb' => Activity::POST]) as $count) { + $items[$count['parent-uri-id']]['comments'] += $count['count']; + } + // Previous page case: once we get the relevant items closest to min_id, we need to restore the expected display order if (empty($this->itemUriId) && isset($this->minId) && !isset($this->maxId)) { $items = array_reverse($items); diff --git a/src/Object/Post.php b/src/Object/Post.php index d52a05dddc..0176e49ad7 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -201,7 +201,7 @@ class Post $indent = ''; $shiny = ''; $osparkle = ''; - $total_children = $this->countDescendants(); + $total_children = $item['counts'] ?? $this->countDescendants(); $conv = $this->getThread(); @@ -697,6 +697,11 @@ class Post $icon = ['fa' => 'fa-eye', 'icon' => 'icon-eye-open']; break; + case Activity::READ: + $title = DI::l10n()->t('Read by: %s', $actors); + $icon = ['fa' => 'fa-book', 'icon' => 'icon-book']; + break; + case Activity::LIKE: $title = DI::l10n()->t('Liked by: %s', $actors); $icon = ['fa' => 'fa-thumbs-up', 'icon' => 'icon-thumbs-up']; diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index d3963e205b..1a3ef8aa87 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -56,7 +56,7 @@ use Friendica\Database\DBA; // This file is required several times during the test in DbaDefinition which justifies this condition if (!defined('DB_UPDATE_VERSION')) { - define('DB_UPDATE_VERSION', 1543); + define('DB_UPDATE_VERSION', 1544); } return [ diff --git a/static/dbview.config.php b/static/dbview.config.php index b4d10de83c..91661a43ef 100644 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -87,6 +87,18 @@ INNER JOIN `contact` ON `group_member`.`contact-id` = `contact`.`id` INNER JOIN `group` ON `group_member`.`gid` = `group`.`id`" ], + "post-counts-view" => [ + "fields" => [ + "uri-id" => ["post-counts", "uri-id"], + "vid" => ["post-counts", "vid"], + "verb" => ["verb", "name"], + "reaction" => ["post-counts", "reaction"], + "parent-uri-id" => ["post-counts", "parent-uri-id"], + "count" => ["post-counts", "count"], + ], + "query" => "FROM `post-counts` + INNER JOIN `verb` ON `verb`.`id` = `post-counts`.`vid`" + ], "post-timeline-view" => [ "fields" => [ "uid" => ["post-user", "uid"], diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index bcd02c885b..a812ef31fb 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.03-dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-25 10:16+0000\n" +"POT-Creation-Date: 2023-12-30 21:51+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -293,7 +293,7 @@ msgid "Insert web link" msgstr "" #: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: src/Content/Conversation.php:401 src/Content/Conversation.php:1604 +#: src/Content/Conversation.php:401 src/Content/Conversation.php:1589 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:609 msgid "Please wait" @@ -318,7 +318,7 @@ msgstr "" #: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1149 view/theme/duepuntozero/config.php:85 +#: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 #: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" @@ -603,34 +603,34 @@ msgstr "" #: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:1146 +#: src/Object/Post.php:1151 msgid "This is you" msgstr "" #: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 -#: src/Object/Post.php:1148 +#: src/Object/Post.php:1153 msgid "Comment" msgstr "" #: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1162 +#: src/Object/Post.php:1167 msgid "Preview" msgstr "" #: mod/photos.php:1144 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1150 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1519 +#: mod/photos.php:1236 src/Content/Conversation.php:1504 #: src/Object/Post.php:261 msgid "Select" msgstr "" -#: mod/photos.php:1237 src/Content/Conversation.php:1520 +#: mod/photos.php:1237 src/Content/Conversation.php:1505 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -1244,7 +1244,7 @@ msgid "Visible to everybody" msgstr "" #: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1161 +#: src/Object/Post.php:1166 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" @@ -1289,52 +1289,52 @@ msgid "attach file" msgstr "" #: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1151 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 msgid "Bold" msgstr "" #: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1152 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 msgid "Italic" msgstr "" #: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1153 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 msgid "Underline" msgstr "" #: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1155 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 msgid "Quote" msgstr "" #: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1156 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 msgid "Add emojis" msgstr "" #: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1154 +#: src/Object/Post.php:1159 msgid "Content Warning" msgstr "" #: src/Content/Conversation.php:380 src/Module/Item/Compose.php:196 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1157 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1162 msgid "Code" msgstr "" #: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1163 msgid "Image" msgstr "" #: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1159 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 msgid "Link" msgstr "" #: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1160 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 msgid "Link or Media" msgstr "" @@ -1404,116 +1404,116 @@ msgstr "" msgid "Delete Selected Items" msgstr "" -#: src/Content/Conversation.php:756 src/Content/Conversation.php:759 -#: src/Content/Conversation.php:762 src/Content/Conversation.php:765 -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:729 src/Content/Conversation.php:732 +#: src/Content/Conversation.php:735 src/Content/Conversation.php:738 +#: src/Content/Conversation.php:741 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:744 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:749 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:751 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:798 +#: src/Content/Conversation.php:771 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:776 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:806 +#: src/Content/Conversation.php:779 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:809 +#: src/Content/Conversation.php:782 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:818 +#: src/Content/Conversation.php:791 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:821 +#: src/Content/Conversation.php:794 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:824 +#: src/Content/Conversation.php:797 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:827 +#: src/Content/Conversation.php:800 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:830 +#: src/Content/Conversation.php:803 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1547 src/Object/Post.php:248 +#: src/Content/Conversation.php:1532 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1564 src/Object/Post.php:548 +#: src/Content/Conversation.php:1549 src/Object/Post.php:548 #: src/Object/Post.php:549 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: src/Content/Conversation.php:1577 src/Object/Post.php:536 +#: src/Content/Conversation.php:1562 src/Object/Post.php:536 msgid "Categories:" msgstr "" -#: src/Content/Conversation.php:1578 src/Object/Post.php:537 +#: src/Content/Conversation.php:1563 src/Object/Post.php:537 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1586 src/Object/Post.php:562 +#: src/Content/Conversation.php:1571 src/Object/Post.php:562 #, php-format msgid "%s from %s" msgstr "" -#: src/Content/Conversation.php:1602 +#: src/Content/Conversation.php:1587 msgid "View in context" msgstr "" @@ -1770,7 +1770,7 @@ msgstr "" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3159 +#: src/Content/Item.php:332 src/Model/Item.php:3162 msgid "event" msgstr "" @@ -1778,7 +1778,7 @@ msgstr "" msgid "status" msgstr "" -#: src/Content/Item.php:341 src/Model/Item.php:3161 +#: src/Content/Item.php:341 src/Model/Item.php:3164 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "" @@ -2190,8 +2190,8 @@ msgid "" "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3892 -#: src/Model/Item.php:3898 src/Model/Item.php:3899 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3895 +#: src/Model/Item.php:3901 src/Model/Item.php:3902 msgid "Link to source" msgstr "" @@ -3408,91 +3408,91 @@ msgstr "" msgid "Happy Birthday %s" msgstr "" -#: src/Model/Item.php:2210 +#: src/Model/Item.php:2213 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2212 +#: src/Model/Item.php:2215 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2215 +#: src/Model/Item.php:2218 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3163 +#: src/Model/Item.php:3166 msgid "activity" msgstr "" -#: src/Model/Item.php:3165 +#: src/Model/Item.php:3168 msgid "comment" msgstr "" -#: src/Model/Item.php:3168 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3171 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "" -#: src/Model/Item.php:3338 +#: src/Model/Item.php:3341 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3340 +#: src/Model/Item.php:3343 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3342 +#: src/Model/Item.php:3345 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3346 +#: src/Model/Item.php:3349 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3799 +#: src/Model/Item.php:3802 msgid "bytes" msgstr "" -#: src/Model/Item.php:3830 +#: src/Model/Item.php:3833 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3832 +#: src/Model/Item.php:3835 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3837 +#: src/Model/Item.php:3840 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3839 +#: src/Model/Item.php:3842 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3841 +#: src/Model/Item.php:3844 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3875 src/Model/Item.php:3876 +#: src/Model/Item.php:3878 src/Model/Item.php:3879 msgid "View on separate page" msgstr "" @@ -7019,15 +7019,15 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:166 +#: src/Module/Conversation/Timeline.php:168 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:170 +#: src/Module/Conversation/Timeline.php:172 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:171 +#: src/Module/Conversation/Timeline.php:173 msgid "Hide" msgstr "" @@ -12415,40 +12415,45 @@ msgstr "" #: src/Object/Post.php:701 #, php-format -msgid "Liked by: %s" +msgid "Read by: %s" msgstr "" #: src/Object/Post.php:706 #, php-format -msgid "Disliked by: %s" +msgid "Liked by: %s" msgstr "" #: src/Object/Post.php:711 #, php-format -msgid "Attended by: %s" +msgid "Disliked by: %s" msgstr "" #: src/Object/Post.php:716 #, php-format -msgid "Maybe attended by: %s" +msgid "Attended by: %s" msgstr "" #: src/Object/Post.php:721 #, php-format -msgid "Not attended by: %s" +msgid "Maybe attended by: %s" msgstr "" #: src/Object/Post.php:726 #, php-format -msgid "Commented by: %s" +msgid "Not attended by: %s" msgstr "" #: src/Object/Post.php:731 #, php-format +msgid "Commented by: %s" +msgstr "" + +#: src/Object/Post.php:736 +#, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:759 #, php-format msgid "Quote shared by: %s" msgstr "" From 85eb09806fca389d7b402115e1166ffaf6c3d911 Mon Sep 17 00:00:00 2001 From: foss- Date: Sun, 31 Dec 2023 14:51:14 +0100 Subject: [PATCH 025/281] Update README.md - updated main screenshot (changed post action icons, text no longer shown) - fixed path for mobile screenshots - removed vier screenshot (it as not seen any development for ages, is not the default and thus not representative or needed for a first impression) - tweaked humane tech mention text --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4dedf006b1..1a54069e4d 100644 --- a/README.md +++ b/README.md @@ -11,19 +11,15 @@ Being part of the Fediverse allows you to be free from data-harvesting corporati ### Friendica on desktop -![Frio theme in desktop browser](images/screenshots/friendica-2023-10-frio-desktop.png?raw=true "Frio theme in desktop browser") +![Frio theme in desktop browser](images/screenshots/friendica-2023-12-frio-desktop.png?raw=true "Frio theme in desktop browser") ### Friendica on mobile

-frio on mobile, dark color scheme -frio on mobile, light color scheme +frio on mobile, dark color scheme +frio on mobile, light color scheme

-### Alternative Theme "Vier" - -![Vier theme in desktop browser](images/screenshots/friendica-vier-community.png?raw=true "Vier theme in desktop browser") - ## Endorsements -- [![Awesome Humane Tech](images/humane-tech-badge.svg)](https://codeberg.org/teaserbot-labs/delightful-humane-design) In August 2020 Friendica was added to the curated delightful humane design resources in the [Fediverse category](https://codeberg.org/teaserbot-labs/delightful-humane-design#fediverse). +- Friendica is listed on [![Awesome Humane Tech](images/humane-tech-badge.svg)](https://codeberg.org/teaserbot-labs/delightful-humane-design) in the [Fediverse category](https://codeberg.org/teaserbot-labs/delightful-humane-design#fediverse). From 4e7f0f9f04a20de7f7ba4d1a6e6d09eb3359e3f1 Mon Sep 17 00:00:00 2001 From: hoergen Date: Mon, 1 Jan 2024 18:01:22 +0100 Subject: [PATCH 026/281] added jit and preload explanation in comment added information to identify which parameter causes which result --- static/defaults.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/static/defaults.config.php b/static/defaults.config.php index b33b30b562..40c466e785 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -162,6 +162,7 @@ return [ // config_adapter (jit|preload) // Allow to switch the configuration adapter to improve performances at the cost of memory consumption. + // jit is slightly slower, while preload consumes marginally more memory 'config_adapter' => 'jit', // crawl_permit_period (Integer) From bf80001c806a1d01c73cdd70541cb824aa4ec6c4 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 2 Jan 2024 14:56:08 +0100 Subject: [PATCH 027/281] Fixed detection for empty server data in apcontact (#13791) --- src/Protocol/ActivityPub.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocol/ActivityPub.php b/src/Protocol/ActivityPub.php index 7396f29211..a2ae7333eb 100644 --- a/src/Protocol/ActivityPub.php +++ b/src/Protocol/ActivityPub.php @@ -295,7 +295,7 @@ class ActivityPub return false; } - if (empty($apcontact['gsid'] || empty($apcontact['baseurl']))) { + if (empty($apcontact['gsid']) || empty($apcontact['baseurl'])) { Logger::debug('No server found', ['uid' => $uid, 'signer' => $signer, 'called_by' => $called_by]); return false; } From 9592292dbacf811e8c46b778c611ae6a94c3865c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 2 Jan 2024 20:12:37 +0100 Subject: [PATCH 028/281] Improved server detection / new servers added to federation statistics (#13793) * Improved server detection / new servers added to federation statistics * Fix wrong color code --- src/Model/GServer.php | 7 ++++- src/Module/Admin/Federation.php | 6 +++- src/Util/JsonLD.php | 3 ++ static/did-v1.jsonld | 54 +++++++++++++++++++++++++++++++++ 4 files changed, 68 insertions(+), 2 deletions(-) create mode 100644 static/did-v1.jsonld diff --git a/src/Model/GServer.php b/src/Model/GServer.php index e00facde18..b8c76ca1ba 100644 --- a/src/Model/GServer.php +++ b/src/Model/GServer.php @@ -1247,6 +1247,11 @@ class GServer } } + // Special treatment for NextCloud, since there you can freely define your software name + if (!empty($nodeinfo['rootUrl']) && in_array(parse_url($nodeinfo['rootUrl'], PHP_URL_PATH), ['/index.php/apps/social', '/apps/social'])) { + $server['platform'] = 'nextcloud'; + } + if (!empty($nodeinfo['metadata']['nodeName'])) { $server['site_name'] = $nodeinfo['metadata']['nodeName']; } @@ -1565,7 +1570,7 @@ class GServer } foreach ($tags as $tag) { - if ((($tag['as:name'] ?? '') == 'Protocol') && (($tag['sc:value'] ?? '') == 'nomad')) { + if ((($tag['as:name'] ?? '') == 'Protocol') && in_array('nomad', [$tag['sc:value'] ?? '', $tag['as:content'] ?? ''])) { return true; } } diff --git a/src/Module/Admin/Federation.php b/src/Module/Admin/Federation.php index 7263057e53..8f05ec41ee 100644 --- a/src/Module/Admin/Federation.php +++ b/src/Module/Admin/Federation.php @@ -45,14 +45,16 @@ class Federation extends BaseAdmin 'castopod' => ['name' => 'Castopod', 'color' => '#00564a'], // Background color from the page 'diaspora' => ['name' => 'Diaspora', 'color' => '#a1a1a1'], // logo is black and white, makes a gray 'calckey' => ['name' => 'firefish (Calckey)', 'color' => '#1c4a5c'], // Color from the page + 'sharkey' => ['name' => 'Sharkey', 'color' => 'lightpink'], // Font color from the homepage 'foundkey' => ['name' => 'Foundkey', 'color' => '#609926'], // Some random color from the repository 'funkwhale' => ['name' => 'Funkwhale', 'color' => '#4082B4'], // From the homepage 'gancio' => ['name' => 'Gancio', 'color' => '#7253ed'], // Fontcolor from the page 'gnusocial' => ['name' => 'GNU Social/Statusnet', 'color' => '#a22430'], // dark red from the logo 'gotosocial' => ['name' => 'GoToSocial', 'color' => '#df8958'], // Some color from their mascot 'hometown' => ['name' => 'Hometown', 'color' => '#1f70c1'], // Color from the Patreon page - 'honk' => ['name' => 'Honk', 'color' => '##0d0d0d'], // Background color from the page + 'honk' => ['name' => 'Honk', 'color' => '#0d0d0d'], // Background color from the page 'hubzilla' => ['name' => 'Hubzilla/Red Matrix', 'color' => '#43488a'], // blue from the logo + 'iceshrimp' => ['name' => 'iceshrimp', 'color' => 'mediumslateblue'], // Color that is used in their software 'kbin' => ['name' => 'kbin', 'color' => '#61366b'], // Color from their main instance 'lemmy' => ['name' => 'Lemmy', 'color' => '#00c853'], // Green from the page 'mastodon' => ['name' => 'Mastodon', 'color' => '#1a9df9'], // blue from the Mastodon logo @@ -66,8 +68,10 @@ class Federation extends BaseAdmin 'pixelfed' => ['name' => 'Pixelfed', 'color' => '#11da47'], // One of the logo colors 'pleroma' => ['name' => 'Pleroma', 'color' => '#E46F0F'], // Orange from the text that is used on Pleroma instances 'plume' => ['name' => 'Plume', 'color' => '#7765e3'], // From the homepage + 'postmarks' => ['name' => 'Postmarks', 'color' => 'darkblue'], // Header color from the homepage 'relay' => ['name' => 'ActivityPub Relay', 'color' => '#888888'], // Grey like the second color of the ActivityPub logo 'socialhome' => ['name' => 'SocialHome', 'color' => '#52056b'], // lilac from the Django Image used at the Socialhome homepage + 'snac' => ['name' => 'Snac', 'color' => '#2966a8'], // Color from one of their themes 'takahe' => ['name' => 'Takahē', 'color' => '#26323c'], // Background color of the homepage 'wildebeest' => ['name' => 'Wildebeest', 'color' => '#0055dc'], // Color of the mascot 'wordpress' => ['name' => 'WordPress', 'color' => '#016087'], // Background color of the homepage diff --git a/src/Util/JsonLD.php b/src/Util/JsonLD.php index 5bf6593aed..e8cddbede0 100644 --- a/src/Util/JsonLD.php +++ b/src/Util/JsonLD.php @@ -58,6 +58,9 @@ class JsonLD case 'https://www.w3.org/ns/activitystreams': $url = DI::basePath() . '/static/activitystreams.jsonld'; break; + case 'https://www.w3.org/ns/did/v1': + $url = DI::basePath() . '/static/did-v1.jsonld'; + break; case 'https://funkwhale.audio/ns': $url = DI::basePath() . '/static/funkwhale.audio.jsonld'; break; diff --git a/static/did-v1.jsonld b/static/did-v1.jsonld new file mode 100644 index 0000000000..ea65773c17 --- /dev/null +++ b/static/did-v1.jsonld @@ -0,0 +1,54 @@ +{ + "@context": { + "alsoKnownAs": { + "@id": "https://www.w3.org/ns/activitystreams#alsoKnownAs", + "@type": "@id" + }, + "assertionMethod": { + "@id": "https://w3id.org/security#assertionMethod", + "@type": "@id", + "@container": "@set" + }, + "authentication": { + "@id": "https://w3id.org/security#authenticationMethod", + "@type": "@id", + "@container": "@set" + }, + "capabilityDelegation": { + "@id": "https://w3id.org/security#capabilityDelegationMethod", + "@type": "@id", + "@container": "@set" + }, + "capabilityInvocation": { + "@id": "https://w3id.org/security#capabilityInvocationMethod", + "@type": "@id", + "@container": "@set" + }, + "controller": { + "@id": "https://w3id.org/security#controller", + "@type": "@id" + }, + "keyAgreement": { + "@id": "https://w3id.org/security#keyAgreementMethod", + "@type": "@id", + "@container": "@set" + }, + "service": { + "@id": "https://www.w3.org/ns/did#service", + "@type": "@id", + "@context": { + "@protected": true, + "id": "@id", + "type": "@type", + "serviceEndpoint": { + "@id": "https://www.w3.org/ns/did#serviceEndpoint", + "@type": "@id" + } + } + }, + "verificationMethod": { + "@id": "https://w3id.org/security#verificationMethod", + "@type": "@id" + } + } +} From 16d0d171698bb78e7b5182708f3c5c7f405d48f9 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 Jan 2024 20:45:02 +0000 Subject: [PATCH 029/281] There is now a single way to display group postings --- src/Content/GroupManager.php | 11 ++--- src/Module/Conversation/Network.php | 47 +++---------------- view/templates/widget/group_list.tpl | 4 +- .../quattro/templates/widget/group_list.tpl | 4 +- view/theme/vier/theme.php | 2 +- 5 files changed, 15 insertions(+), 53 deletions(-) diff --git a/src/Content/GroupManager.php b/src/Content/GroupManager.php index fc43080d90..45a182a484 100644 --- a/src/Content/GroupManager.php +++ b/src/Content/GroupManager.php @@ -106,14 +106,12 @@ class GroupManager * Sidebar widget to show subscribed Friendica groups. If activated * in the settings, it appears in the network page sidebar * - * @param string $baseurl Base module path - * @param int $uid The ID of the User - * @param int $cid The contact id which is used to mark a group as "selected" + * @param int $uid The ID of the User * @return string * @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \ImagickException */ - public static function widget(string $baseurl, int $uid, int $cid = 0) + public static function widget(int $uid) { $o = ''; @@ -130,14 +128,11 @@ class GroupManager $entries = []; foreach ($contacts as $contact) { - $selected = (($cid == $contact['id']) ? ' group-selected' : ''); - $entry = [ - 'url' => $baseurl . '/' . $contact['id'], + 'url' => 'contact/' . $contact['id'] . '/conversations', 'external_url' => Contact::magicLinkByContact($contact), 'name' => $contact['name'], 'cid' => $contact['id'], - 'selected' => $selected, 'micro' => DI::baseUrl()->remove(Contact::getMicro($contact)), 'id' => ++$id, ]; diff --git a/src/Module/Conversation/Network.php b/src/Module/Conversation/Network.php index 89c9ccb197..12b500fd4b 100644 --- a/src/Module/Conversation/Network.php +++ b/src/Module/Conversation/Network.php @@ -50,25 +50,19 @@ use Friendica\Database\DBA; use Friendica\Database\Database; use Friendica\Model\Contact; use Friendica\Model\Circle; -use Friendica\Model\Item; use Friendica\Model\Profile; -use Friendica\Model\Verb; -use Friendica\Module\Contact as ModuleContact; use Friendica\Module\Response; use Friendica\Module\Security\Login; use Friendica\Network\HTTPException; use Friendica\Navigation\SystemMessages; use Friendica\Util\DateTimeFormat; use Friendica\Util\Profiler; -use Friendica\Protocol\Activity; use Psr\Log\LoggerInterface; class Network extends Timeline { /** @var int */ protected $circleId; - /** @var int */ - protected $groupContactId; /** @var string */ protected $network; /** @var string */ @@ -140,9 +134,9 @@ class Network extends Timeline $o = ''; $this->page['aside'] .= Circle::sidebarWidget($module, $module . '/circle', 'standard', $this->circleId); - $this->page['aside'] .= GroupManager::widget($module . '/group', $this->session->getLocalUserId(), $this->groupContactId); + $this->page['aside'] .= GroupManager::widget($this->session->getLocalUserId()); $this->page['aside'] .= Widget::postedByYear($module . '/archive', $this->session->getLocalUserId(), false); - $this->page['aside'] .= Widget::networks($module, !$this->groupContactId ? $this->network : ''); + $this->page['aside'] .= Widget::networks($module, $this->network); $this->page['aside'] .= Widget::accountTypes($module, $this->accountTypeString); $this->page['aside'] .= Widget::channels($module, $this->selectedTab, $this->session->getLocalUserId()); $this->page['aside'] .= Widget\SavedSearches::getHTML($this->args->getQueryString()); @@ -164,24 +158,13 @@ class Network extends Timeline $content = ''; - if ($this->groupContactId) { - // If $this->groupContactId belongs to a community group or a private group, add a mention to the status editor - $condition = ["`id` = ? AND `contact-type` = ?", $this->groupContactId, Contact::TYPE_COMMUNITY]; - $contact = $this->database->selectFirst('contact', ['addr'], $condition); - if (!empty($contact['addr'])) { - $content = '!' . $contact['addr']; - } - } - $default_permissions = []; if ($this->circleId) { $default_permissions['allow_gid'] = [$this->circleId]; } $allowedCids = []; - if ($this->groupContactId) { - $allowedCids[] = (int) $this->groupContactId; - } elseif ($this->network) { + if ($this->network) { $condition = [ 'uid' => $this->session->getLocalUserId(), 'network' => $this->network, @@ -203,9 +186,9 @@ class Network extends Timeline } $x = [ - 'lockstate' => $this->circleId || $this->groupContactId || $this->network || ACL::getLockstateForUserId($this->session->getLocalUserId()) ? 'lock' : 'unlock', + 'lockstate' => $this->circleId || $this->network || ACL::getLockstateForUserId($this->session->getLocalUserId()) ? 'lock' : 'unlock', 'acl' => ACL::getFullSelectorHTML($this->page, $this->session->getLocalUserId(), true, $default_permissions), - 'bang' => (($this->circleId || $this->groupContactId || $this->network) ? '!' : ''), + 'bang' => (($this->circleId || $this->network) ? '!' : ''), 'content' => $content, ]; @@ -220,16 +203,6 @@ class Network extends Timeline $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [ '$title' => $this->l10n->t('Circle: %s', $circle['name']) ]) . $o; - } elseif ($this->groupContactId) { - $contact = Contact::getById($this->groupContactId); - if ($this->database->isResult($contact)) { - $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('contact/list.tpl'), [ - 'contacts' => [ModuleContact::getContactTemplateVars($contact)], - 'id' => $this->args->get(0), - ]) . $o; - } else { - $this->systemMessages->addNotice($this->l10n->t('Invalid contact.')); - } } elseif (Profile::shouldDisplayEventList($this->session->getLocalUserId(), $this->mode)) { $o .= Profile::getBirthdays($this->session->getLocalUserId()); $o .= Profile::getEventsReminderHTML($this->session->getLocalUserId(), $this->session->getPublicContactId()); @@ -321,15 +294,13 @@ class Network extends Timeline $this->circleId = (int)($this->parameters['circle_id'] ?? 0); - $this->groupContactId = (int)($this->parameters['contact_id'] ?? 0); - if (!$this->selectedTab) { $this->selectedTab = self::getTimelineOrderBySession($this->session, $this->pConfig); } elseif (!$this->networkFactory->isTimeline($this->selectedTab) && !$this->channel->isTimeline($this->selectedTab) && !$this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId()) && !$this->community->isTimeline($this->selectedTab)) { throw new HTTPException\BadRequestException($this->l10n->t('Network feed not available.')); } - if (($this->network || $this->circleId || $this->groupContactId) && ($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId()) || $this->community->isTimeline($this->selectedTab))) { + if (($this->network || $this->circleId) && ($this->channel->isTimeline($this->selectedTab) || $this->userDefinedChannel->isTimeline($this->selectedTab, $this->session->getLocalUserId()) || $this->community->isTimeline($this->selectedTab))) { $this->selectedTab = NetworkEntity::RECEIVED; } @@ -433,10 +404,6 @@ class Network extends Timeline if ($this->circleId) { $conditionStrings = DBA::mergeConditions($conditionStrings, ["`contact-id` IN (SELECT `contact-id` FROM `group_member` WHERE `gid` = ?)", $this->circleId]); - } elseif ($this->groupContactId) { - $conditionStrings = DBA::mergeConditions($conditionStrings, - ["((`contact-id` = ?) OR `uri-id` IN (SELECT `parent-uri-id` FROM `post-user-view` WHERE (`contact-id` = ? AND `gravity` = ? AND `verb` = ? AND `uid` = ?)))", - $this->groupContactId, $this->groupContactId, Item::GRAVITY_ACTIVITY, Activity::ANNOUNCE, $this->session->getLocalUserId()]); } // Currently only the order modes "received" and "commented" are in use @@ -505,7 +472,7 @@ class Network extends Timeline // We aren't going to try and figure out at the item, circle, and page // level which items you've seen and which you haven't. If you're looking // at the top level network page just mark everything seen. - if (!$this->circleId && !$this->groupContactId && !$this->star && !$this->mention) { + if (!$this->circleId && !$this->star && !$this->mention) { $condition = ['unseen' => true, 'uid' => $this->session->getLocalUserId()]; $this->setItemsSeenByCondition($condition); } elseif (!empty($parents)) { diff --git a/view/templates/widget/group_list.tpl b/view/templates/widget/group_list.tpl index c939d074ae..2d29855de5 100644 --- a/view/templates/widget/group_list.tpl +++ b/view/templates/widget/group_list.tpl @@ -34,7 +34,7 @@ function showHideGroupList() { {{$group.link_desc}} - {{$group.name}} + {{$group.name}} {{/if}} @@ -44,7 +44,7 @@ function showHideGroupList() { {{$group.link_desc}} - {{$group.name}} + {{$group.name}} {{/if}} {{/foreach}} diff --git a/view/theme/quattro/templates/widget/group_list.tpl b/view/theme/quattro/templates/widget/group_list.tpl index e86c2dab22..c4898785cb 100644 --- a/view/theme/quattro/templates/widget/group_list.tpl +++ b/view/theme/quattro/templates/widget/group_list.tpl @@ -19,7 +19,7 @@ function showHideGroupList() {
'; +$test = Proxy::proxifyHtml($ret, $uriid); return str_replace("\n", "", $ret); } @@ -302,14 +298,19 @@ class OEmbed * Converts BBCode to HTML code * * @param string $text + * @param int $uriid * @return string */ - public static function BBCode2HTML(string $text): string + public static function BBCode2HTML(string $text, int $uriid): string { - if (DI::config()->get('system', 'no_oembed')) { - return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "" . DI::l10n()->t('Embedding disabled') . " : $1", $text); + if (!preg_match_all("/\[embed\](.+?)\[\/embed\]/is", $text, $matches, PREG_SET_ORDER)) { + return $text; } - return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", [self::class, 'replaceCallback'], $text); + foreach ($matches as $match) { + $data = self::fetchURL($match[1]); + $text = str_replace($match[0], self::formatObject($data, $uriid), $text); + } + return $text; } /** @@ -342,10 +343,11 @@ class OEmbed * Returns a formatted HTML code from given URL and sets optional title * * @param string $url URL to fetch - * @param string $title Optional title (default: what comes from OEmbed object) + * @param string $title title (default: what comes from OEmbed object) + * @param int $uriid * @return string Formatted HTML */ - public static function getHTML(string $url, string $title = ''): string + public static function getHTML(string $url, string $title, int $uriid): string { $o = self::fetchURL($url); @@ -357,7 +359,7 @@ class OEmbed $o->title = $title; } - $html = self::formatObject($o); + $html = self::formatObject($o, $uriid); return $html; } diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 23f02dd26b..877e3e2e55 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -310,7 +310,7 @@ class BBCode return trim($text); } - private static function proxyUrl(string $image, int $simplehtml = self::INTERNAL, int $uriid = 0, string $size = ''): string + public static function proxyUrl(string $image, int $simplehtml = self::INTERNAL, int $uriid = 0, string $size = ''): string { // Only send proxied pictures to API and for internal display if (!in_array($simplehtml, [self::INTERNAL, self::MASTODON_API, self::TWITTER_API])) { @@ -453,7 +453,7 @@ class BBCode $return = ''; try { if ($tryoembed && OEmbed::isAllowedURL($data['url'])) { - $return = OEmbed::getHTML($data['url'], $data['title']); + $return = OEmbed::getHTML($data['url'], $data['title'], $uriid); } else { throw new Exception('OEmbed is disabled for this attachment.'); } @@ -1358,12 +1358,12 @@ class BBCode * $match[1] = $url * $match[2] = $title or absent */ - $try_oembed_callback = function (array $match) { + $try_oembed_callback = function (array $match) use ($uriid) { $url = $match[1]; $title = $match[2] ?? ''; try { - $return = OEmbed::getHTML($url, $title); + $return = OEmbed::getHTML($url, $title, $uriid); } catch (Exception $ex) { $return = $match[0]; } @@ -1810,7 +1810,7 @@ class BBCode } // oembed tag - $text = OEmbed::BBCode2HTML($text); + $text = OEmbed::BBCode2HTML($text, $uriid); // Avoid triple linefeeds through oembed $text = str_replace("


", "

", $text); diff --git a/src/Util/Proxy.php b/src/Util/Proxy.php index 9a2d25c680..17b71ddd88 100644 --- a/src/Util/Proxy.php +++ b/src/Util/Proxy.php @@ -21,8 +21,8 @@ namespace Friendica\Util; +use Friendica\Content\Text\BBCode; use Friendica\Core\Logger; -use Friendica\Core\System; use Friendica\DI; use GuzzleHttp\Psr7\Uri; @@ -133,15 +133,24 @@ class Proxy * proxy storage directory. * * @param string $html Un-proxified HTML code + * @param int $uriid * * @return string Proxified HTML code * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - public static function proxifyHtml(string $html): string + public static function proxifyHtml(string $html, int $uriid): string { $html = str_replace(Strings::normaliseLink(DI::baseUrl()) . '/', DI::baseUrl() . '/', $html); - return preg_replace_callback('/(]*src *= *["\'])([^"\']+)(["\'][^>]*>)/siU', [self::class, 'replaceUrl'], $html); + if (!preg_match_all('/(]*src *= *["\'])([^"\']+)(["\'][^>]*>)/siU', $html, $matches, PREG_SET_ORDER)) { + return $html; + } + + foreach ($matches as $match) { + $html = str_replace($match[0], self::replaceUrl($match, $uriid), $html); + } + + return $html; } /** @@ -193,7 +202,7 @@ class Proxy * @return string Proxified HTML image tag * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - private static function replaceUrl(array $matches): string + private static function replaceUrl(array $matches, int $uriid): string { // if the picture seems to be from another picture cache then take the original source $queryvar = self::parseQuery($matches[2]); @@ -208,7 +217,7 @@ class Proxy } // Return proxified HTML - return $matches[1] . self::proxifyUrl(htmlspecialchars_decode($matches[2])) . $matches[3]; + return $matches[1] . BBCode::proxyUrl(htmlspecialchars_decode($matches[2]), BBCode::INTERNAL, $uriid, Proxy::SIZE_MEDIUM) . $matches[3]; } public static function getPixelsFromSize(string $size): int From ae358cae4c7c6e9ac74a447b5de7f4040acfa182 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 24 Feb 2024 15:29:33 +0000 Subject: [PATCH 212/281] Updated messages.po --- view/lang/C/messages.po | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index d2b83d9c93..aeaa39fc86 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.03-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-24 11:56+0000\n" +"POT-Creation-Date: 2024-02-24 15:29+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2174,10 +2174,6 @@ msgstr "" msgid "Site map" msgstr "" -#: src/Content/OEmbed.php:312 -msgid "Embedding disabled" -msgstr "" - #: src/Content/Pager.php:216 msgid "first" msgstr "" From e52fa44d3f1ac15ed68e546721615c19c7b14629 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 24 Feb 2024 17:37:30 +0000 Subject: [PATCH 213/281] Round the load to two digits --- src/Core/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/System.php b/src/Core/System.php index df8cb9377e..b38076ad41 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -473,7 +473,7 @@ class System return false; } - return max($load_arr[0], $load_arr[1]); + return round(max($load_arr[0], $load_arr[1]), 2); } /** From ddc9f5f5955a855fa86b959919034b742c0c3cf3 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 25 Feb 2024 08:52:52 +0000 Subject: [PATCH 214/281] Image handling: separate between outout and input type, use Imagick on PNG --- src/Object/Image.php | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/src/Object/Image.php b/src/Object/Image.php index d2a5c3ce77..bff1efccbe 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -45,7 +45,8 @@ class Image private $width; private $height; private $valid; - private $imageType; + private $outputType; + private $originType; private $filename; /** @@ -65,9 +66,10 @@ class Image $type = Images::addMimeTypeByExtensionIfInvalid($type, $filename); if (Images::isSupportedMimeType($type)) { - $this->imageType = Images::getImageTypeByMimeType($type); + $this->originType = $this->outputType = Images::getImageTypeByMimeType($type); } elseif (($type == '') || substr($type, 0, 6) == 'image/' || substr($type, 0, 12) == ' application/') { - $this->imageType = IMAGETYPE_WEBP; + $this->originType = IMAGETYPE_UNKNOWN; + $this->outputType = IMAGETYPE_WEBP; DI::logger()->debug('Unhandled image mime type, use WebP instead', ['type' => $type, 'filename' => $filename, 'size' => strlen($data)]); } else { DI::logger()->debug('Unhandled mime type', ['type' => $type, 'filename' => $filename, 'size' => strlen($data)]); @@ -99,12 +101,16 @@ class Image return false; } - if ($this->imageType == IMAGETYPE_GIF) { + if ($this->outputType == IMAGETYPE_PNG) { + return true; + } + + if ($this->originType == IMAGETYPE_GIF) { $count = preg_match_all("#\\x00\\x21\\xF9\\x04.{4}\\x00[\\x2C\\x21]#s", $data); return ($count > 0); } - return (($this->imageType == IMAGETYPE_WEBP) && $this->isAnimatedWebP(substr($data, 0, 90))); + return (($this->originType == IMAGETYPE_WEBP) && $this->isAnimatedWebP(substr($data, 0, 90))); } /** @@ -180,7 +186,7 @@ class Image /* * Setup the image to the format it will be saved to */ - $this->image->setFormat(Images::getImagickFormatByImageType($this->imageType)); + $this->image->setFormat(Images::getImagickFormatByImageType($this->outputType)); // Always coalesce, if it is not a multi-frame image it won't hurt anyway try { @@ -310,7 +316,7 @@ class Image return false; } - return image_type_to_mime_type($this->imageType); + return image_type_to_mime_type($this->outputType); } /** @@ -322,7 +328,7 @@ class Image return false; } - return $this->imageType; + return $this->outputType; } /** @@ -334,7 +340,7 @@ class Image return false; } - return Images::getExtensionByImageType($this->imageType); + return Images::getExtensionByImageType($this->outputType); } /** @@ -611,7 +617,7 @@ class Image imagealphablending($dest, false); imagesavealpha($dest, true); - if ($this->imageType == IMAGETYPE_PNG) { + if ($this->outputType == IMAGETYPE_PNG) { imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha } @@ -636,13 +642,13 @@ class Image */ public function toStatic() { - if ($this->imageType != IMAGETYPE_GIF) { + if ($this->outputType != IMAGETYPE_GIF) { return; } if ($this->isImagick()) { - $this->imageType = IMAGETYPE_PNG; - $this->image->setFormat(Images::getImagickFormatByImageType($this->imageType)); + $this->outputType = IMAGETYPE_PNG; + $this->image->setFormat(Images::getImagickFormatByImageType($this->outputType)); } } @@ -680,7 +686,7 @@ class Image imagealphablending($dest, false); imagesavealpha($dest, true); - if ($this->imageType == IMAGETYPE_PNG) { + if ($this->outputType == IMAGETYPE_PNG) { imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha } imagecopyresampled($dest, $this->image, 0, 0, $x, $y, $max, $max, $w, $h); @@ -750,7 +756,7 @@ class Image break; case IMAGETYPE_WEBP: - imagewebp($this->image, $stream, DI::config()->get('system', 'jpeg_quality')); + @imagewebp($this->image, $stream, DI::config()->get('system', 'jpeg_quality')); break; case IMAGETYPE_BMP: From d37699bc08f0b57af42f21e40481141cdd490be1 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 24 Feb 2024 23:51:27 -0500 Subject: [PATCH 215/281] Throw Not Found exception when $uid doesn't exist in Factory\Api\Twitter\User->createFromUserId - Contact::getPublicIdByUserId() wrongly returns 0 when $uid doesn't exist, which is an existing albeit invalid record. --- src/Factory/Api/Twitter/User.php | 13 ++++++++++--- tests/src/Factory/Api/Twitter/UserTest.php | 9 +++------ 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/src/Factory/Api/Twitter/User.php b/src/Factory/Api/Twitter/User.php index 8fb3193606..8391dcc85f 100644 --- a/src/Factory/Api/Twitter/User.php +++ b/src/Factory/Api/Twitter/User.php @@ -24,10 +24,9 @@ namespace Friendica\Factory\Api\Twitter; use Friendica\BaseFactory; use Friendica\Model\APContact; use Friendica\Model\Contact; -use Friendica\Network\HTTPException; -use Friendica\Factory\Api\Twitter\Status; use Friendica\Model\Item; use Friendica\Model\Post; +use Friendica\Network\HTTPException; use Psr\Log\LoggerInterface; class User extends BaseFactory @@ -85,9 +84,17 @@ class User extends BaseFactory * @param bool $include_user_entities * * @return \Friendica\Object\Api\Twitter\User + * @throws HTTPException\InternalServerErrorException + * @throws HTTPException\NotFoundException If the $uid doesn't exist + * @throws \ImagickException */ public function createFromUserId(int $uid, bool $skip_status = true, bool $include_user_entities = true): \Friendica\Object\Api\Twitter\User { - return $this->createFromContactId(Contact::getPublicIdByUserId($uid), $uid, $skip_status, $include_user_entities); + $cid = Contact::getPublicIdByUserId($uid); + if (!$cid) { + throw new HTTPException\NotFoundException(); + } + + return $this->createFromContactId($cid, $uid, $skip_status, $include_user_entities); } } diff --git a/tests/src/Factory/Api/Twitter/UserTest.php b/tests/src/Factory/Api/Twitter/UserTest.php index 975aea3efe..5ef30d8112 100644 --- a/tests/src/Factory/Api/Twitter/UserTest.php +++ b/tests/src/Factory/Api/Twitter/UserTest.php @@ -23,6 +23,7 @@ namespace Friendica\Test\src\Factory\Api\Twitter; use Friendica\DI; use Friendica\Factory\Api\Twitter\User; +use Friendica\Network\HTTPException\NotFoundException; use Friendica\Test\FixtureTest; use Friendica\Test\src\Module\Api\ApiTest; @@ -133,15 +134,11 @@ class UserTest extends FixtureTest */ public function testApiGetUserWithWrongGetId() { + $this->expectException(NotFoundException::class); + $user = (new User(DI::logger(), DI::twitterStatus())) ->createFromUserId(-1) ->toArray(); - - self::assertEquals(0, $user['id']); - self::assertEquals(0, $user['uid']); - self::assertEquals(0, $user['cid']); - self::assertEquals(0, $user['pid']); - self::assertEmpty($user['name']); } /** From ba0a8069c4e834e16d88d81fbd7c27b2fe4e83a3 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sat, 24 Feb 2024 23:46:54 -0500 Subject: [PATCH 216/281] Normalize local node hostname across API fixtures - This was causing the fixture data to be wrongly "repaired" in Model\User::getOwnerDataById because of a mismatch between the local base URL and the fixture-provided self contact URL --- tests/DatabaseTestTrait.php | 2 +- tests/Util/Database/StaticDatabase.php | 2 +- tests/datasets/api.fixture.php | 95 +++++++++---------- .../Module/Api/Friendica/NotificationTest.php | 2 +- 4 files changed, 46 insertions(+), 55 deletions(-) diff --git a/tests/DatabaseTestTrait.php b/tests/DatabaseTestTrait.php index 79ff5ae162..6e4c073d5f 100644 --- a/tests/DatabaseTestTrait.php +++ b/tests/DatabaseTestTrait.php @@ -35,7 +35,7 @@ trait DatabaseTestTrait // Rollbacks every DB usage (in case the test couldn't call tearDown) StaticDatabase::statRollback(); // Rollback the first, outer transaction just 2 be sure - StaticDatabase::getGlobConnection()->rollBack(); + StaticDatabase::getGlobConnection()->rollback(); // Start the first, outer transaction StaticDatabase::getGlobConnection()->beginTransaction(); } diff --git a/tests/Util/Database/StaticDatabase.php b/tests/Util/Database/StaticDatabase.php index 9713861f56..92d241f9cd 100644 --- a/tests/Util/Database/StaticDatabase.php +++ b/tests/Util/Database/StaticDatabase.php @@ -211,7 +211,7 @@ class StaticDatabase extends Database { if (isset(self::$staticConnection)) { while (self::$staticConnection->getTransactionDepth() > 0) { - self::$staticConnection->rollBack(); + self::$staticConnection->rollback(); } } } diff --git a/tests/datasets/api.fixture.php b/tests/datasets/api.fixture.php index 6c90ffded2..783b3fc920 100644 --- a/tests/datasets/api.fixture.php +++ b/tests/datasets/api.fixture.php @@ -25,16 +25,6 @@ use Friendica\Model\Item; use Friendica\Model\Notification; return [ - // Empty these tables - 'profile_field', - 'permissionset', - 'cache', - 'conversation', - 'pconfig', - 'photo', - 'workerqueue', - 'mail', - 'post-delivery-data', 'gserver' => [ [ 'url' => 'https://friendica.local', @@ -94,22 +84,22 @@ return [ ], [ 'id' => 42, - 'uri' => 'http://localhost/profile/selfcontact', + 'uri' => 'https://friendica.local/profile/selfcontact', 'guid' => '42', ], [ 'id' => 43, - 'uri' => 'http://localhost/profile/othercontact', + 'uri' => 'https://friendica.local/profile/othercontact', 'guid' => '43', ], [ 'id' => 44, - 'uri' => 'http://localhost/profile/friendcontact', + 'uri' => 'https://friendica.local/profile/friendcontact', 'guid' => '44', ], [ 'id' => 46, - 'uri' => 'http://localhost/profile/mutualcontact', + 'uri' => 'https://friendica.local/profile/mutualcontact', 'guid' => '46', ], [ @@ -126,9 +116,9 @@ return [ 'name' => 'Self contact', 'nick' => 'selfcontact', 'self' => 1, - 'nurl' => 'http://localhost/profile/selfcontact', - 'url' => 'http://localhost/profile/selfcontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/selfcontact', + 'url' => 'https://friendica.local/profile/selfcontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'about' => 'User used in tests', 'prvkey' => "-----BEGIN RSA PRIVATE KEY-----\nMIICXgIBAAKBgQDVqxF9kIgtgRL0+q+jTi578FA1r1+crEmlYc0pdxcbmmrhjuRc\nrK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/KHVks7eQ4yr4MxTRlsxo5qf2o\nnbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjsQPX240vGNXIkfLiAWwIDAQAB\nAoGBAIwuiPIdggqAtWQ+mD8HCx5LQwSFw6/xpPu5F7ZNqL52aAsGCbL3o2QoIG4c\na1qf9Ot16BNgNBqxQF3hzRTkBMrKYlmNTUkwJXun/zjQJq2JvOlcrSuXlIucUjs4\nXekVN25aYPHrX9m2FEIUwZTb4UYXbR80KbIDI53BkQ6EwSbpAkEA7aO49CR2Hf1Y\n1d2GaUI/Z0wvbj//+t0Kg0bPt16ca8KVjEQQA5ylsDaiw510jDz9NBQxSOk6If23\nUeRixc1RDQJBAOYtN4YnPM1Zfp6IxXlqMCc+xUWRTPEPFt+WpG+v79koNamAeA6o\nZzTl92hl58IqSdbgojeE2zXWQRvlimFMLQcCQQCV6jND0byyLqFcSeQBg0l8YROK\n+dUC7W80YfeoNod3c8nkMwvnO2tLPyxvO2XLEq6prBNra7bAus5rWyj0oBIBAkEA\n1EvUMFm0TLpEfLgtWuTD8Q6GKLnxO0ztjd+FXrXpBGN/ywyArxRHzJRmctW6wmz6\nmcOqGobhIHCysKYv0bnOtQJAc2M5RwlASHH4jGJzXgt3nboyiJfufM0RV9iry3ho\nCXQRWAONKoLqnsfC6qNP8OzY8FMJcwmPWj7Q/6z6yLBFTA==\n-----END RSA PRIVATE KEY-----", 'pubkey' => "-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVqxF9kIgtgRL0+q+jTi578FA1\nr1+crEmlYc0pdxcbmmrhjuRcrK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/K\nHVks7eQ4yr4MxTRlsxo5qf2onbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjs\nQPX240vGNXIkfLiAWwIDAQAB\n-----END PUBLIC KEY-----", @@ -137,6 +127,7 @@ return [ 'rel' => Contact::FOLLOWER, 'network' => Protocol::DFRN, 'location' => 'DFRN', + 'baseurl' => 'https://friendica.local', ], // Having the same name and nick allows us to test // the fallback to api_get_nick() in api_get_user() @@ -147,9 +138,9 @@ return [ 'name' => 'othercontact', 'nick' => 'othercontact', 'self' => 0, - 'nurl' => 'http://localhost/profile/othercontact', - 'url' => 'http://localhost/profile/othercontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/othercontact', + 'url' => 'https://friendica.local/profile/othercontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'pending' => 0, 'blocked' => 0, 'rel' => Contact::NOTHING, @@ -163,9 +154,9 @@ return [ 'name' => 'Friend contact', 'nick' => 'friendcontact', 'self' => 0, - 'nurl' => 'http://localhost/profile/friendcontact', - 'url' => 'http://localhost/profile/friendcontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/friendcontact', + 'url' => 'https://friendica.local/profile/friendcontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'pending' => 0, 'blocked' => 0, 'rel' => Contact::SHARING, @@ -179,9 +170,9 @@ return [ 'name' => 'Friend contact', 'nick' => 'friendcontact', 'self' => 0, - 'nurl' => 'http://localhost/profile/friendcontact', - 'url' => 'http://localhost/profile/friendcontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/friendcontact', + 'url' => 'https://friendica.local/profile/friendcontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'pending' => 0, 'blocked' => 0, 'rel' => Contact::SHARING, @@ -195,9 +186,9 @@ return [ 'name' => 'Mutual contact', 'nick' => 'mutualcontact', 'self' => 0, - 'nurl' => 'http://localhost/profile/mutualcontact', - 'url' => 'http://localhost/profile/mutualcontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/mutualcontact', + 'url' => 'https://friendica.local/profile/mutualcontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'pending' => 0, 'blocked' => 0, 'rel' => Contact::FRIEND, @@ -211,9 +202,9 @@ return [ 'name' => 'Mutual contact', 'nick' => 'mutualcontact', 'self' => 0, - 'nurl' => 'http://localhost/profile/mutualcontact', - 'url' => 'http://localhost/profile/mutualcontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/mutualcontact', + 'url' => 'https://friendica.local/profile/mutualcontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'pending' => 0, 'blocked' => 0, 'rel' => Contact::SHARING, @@ -227,9 +218,9 @@ return [ 'name' => 'Self contact', 'nick' => 'selfcontact', 'self' => 0, - 'nurl' => 'http://localhost/profile/selfcontact', - 'url' => 'http://localhost/profile/selfcontact', - 'notify' => 'http://localhost/friendica/inbox', + 'nurl' => 'http://friendica.local/profile/selfcontact', + 'url' => 'https://friendica.local/profile/selfcontact', + 'notify' => 'https://friendica.local/friendica/inbox', 'about' => 'User used in tests', 'pending' => 0, 'blocked' => 0, @@ -240,15 +231,15 @@ return [ ], 'apcontact' => [ [ - "url" => "http://localhost/profile/selfcontact", + "url" => "https://friendica.local/profile/selfcontact", "uri-id" => 1, "uuid" => "42", "type" => "Person", - "following" => "http://localhost/following/selfcontact", - "followers" => "http://localhost/followers/selfcontact", - "inbox" => "http://localhost/inbox/selfcontact", - "outbox" => "http://localhost/outbox/selfcontact", - "sharedinbox" => "http://localhost/inbox", + "following" => "https://friendica.local/following/selfcontact", + "followers" => "https://friendica.local/followers/selfcontact", + "inbox" => "https://friendica.local/inbox/selfcontact", + "outbox" => "https://friendica.local/outbox/selfcontact", + "sharedinbox" => "https://friendica.local/inbox", "manually-approve" => 1, "discoverable" => 0, "nick" => "selfcontact", @@ -256,7 +247,7 @@ return [ "about" => "User used in tests", "xmpp" => null, "matrix" => null, - "photo" => "http://localhost/photo/profile/admin.jpeg", + "photo" => "https://friendica.local/photo/profile/admin.jpeg", "header" => null, "addr" => "selfcontact@localhost", "alias" => null, @@ -313,32 +304,32 @@ return [ [ 'uri-id' => 1, 'body' => 'Parent status', - 'plink' => 'http://localhost/display/1', + 'plink' => 'https://friendica.local/display/1', ], [ 'uri-id' => 2, 'body' => 'Reply', - 'plink' => 'http://localhost/display/2', + 'plink' => 'https://friendica.local/display/2', ], [ 'uri-id' => 3, 'body' => 'Other user status', - 'plink' => 'http://localhost/display/3', + 'plink' => 'https://friendica.local/display/3', ], [ 'uri-id' => 4, 'body' => 'Friend user reply', - 'plink' => 'http://localhost/display/4', + 'plink' => 'https://friendica.local/display/4', ], [ 'uri-id' => 5, 'body' => '[share]Shared status[/share]', - 'plink' => 'http://localhost/display/5', + 'plink' => 'https://friendica.local/display/5', ], [ 'uri-id' => 6, 'body' => 'Friend user status', - 'plink' => 'http://localhost/display/6', + 'plink' => 'https://friendica.local/display/6', ], [ 'uri-id' => 7, @@ -366,7 +357,7 @@ return [ 'suscipit aut facilis ut inventore omnis exercitationem quo magnam ' . 'consequatur maxime aut illum soluta quaerat natus unde aspernatur ' . 'et sed beatae nihil ullam temporibus corporis ratione blanditiis', - 'plink' => 'http://localhost/display/6', + 'plink' => 'https://friendica.local/display/6', ], [ 'uri-id' => 100, @@ -919,12 +910,12 @@ return [ 'id' => 1, 'type' => 8, 'name' => 'Friend contact', - 'url' => 'http://localhost/profile/friendcontact', - 'photo' => 'http://localhost/', + 'url' => 'https://friendica.local/profile/friendcontact', + 'photo' => 'https://friendica.local/', 'date' => '2020-01-01 12:12:02', 'msg' => 'A test reply from an item', 'uid' => 42, - 'link' => 'http://localhost/display/1', + 'link' => 'https://friendica.local/display/1', 'iid' => 4, 'seen' => 0, 'verb' => \Friendica\Protocol\Activity::POST, diff --git a/tests/src/Module/Api/Friendica/NotificationTest.php b/tests/src/Module/Api/Friendica/NotificationTest.php index 73e0bca6f9..21c1c3629b 100644 --- a/tests/src/Module/Api/Friendica/NotificationTest.php +++ b/tests/src/Module/Api/Friendica/NotificationTest.php @@ -62,7 +62,7 @@ class NotificationTest extends ApiTest $assertXml = << - + XML; From 0d922b75af6353067c09bf1f0ec305c4110e84fd Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 25 Feb 2024 01:30:23 -0500 Subject: [PATCH 217/281] Use public contact ids where they should be used in API fixture data --- tests/datasets/api.fixture.php | 208 +++++++++--------- .../Api/Twitter/Statuses/UserTimelineTest.php | 4 +- 2 files changed, 106 insertions(+), 106 deletions(-) diff --git a/tests/datasets/api.fixture.php b/tests/datasets/api.fixture.php index 783b3fc920..907d4545f9 100644 --- a/tests/datasets/api.fixture.php +++ b/tests/datasets/api.fixture.php @@ -373,9 +373,9 @@ return [ 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -388,9 +388,9 @@ return [ 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -403,7 +403,7 @@ return [ 'thr-parent-id' => 3, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, + 'owner-id' => 43, 'author-id' => 43, 'causer-id' => 43, 'vid' => 8, @@ -418,9 +418,9 @@ return [ 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 44, - 'causer-id' => 44, + 'owner-id' => 43, + 'author-id' => 45, + 'causer-id' => 45, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -433,9 +433,9 @@ return [ 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -448,9 +448,9 @@ return [ 'thr-parent-id' => 6, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 44, - 'causer-id' => 44, + 'owner-id' => 43, + 'author-id' => 45, + 'causer-id' => 45, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -463,9 +463,9 @@ return [ 'thr-parent-id' => 7, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 44, - 'causer-id' => 44, + 'owner-id' => 43, + 'author-id' => 45, + 'causer-id' => 45, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -478,10 +478,10 @@ return [ 'id' => 1, 'uri-id' => 1, 'visible' => 1, - 'contact-id' => 42, - 'author-id' => 42, - 'owner-id' => 42, - 'causer-id' => 42, + 'contact-id' => 43, + 'author-id' => 43, + 'owner-id' => 43, + 'causer-id' => 43, 'uid' => 42, 'vid' => 8, 'unseen' => 1, @@ -498,16 +498,16 @@ return [ 'id' => 2, 'uri-id' => 2, 'uid' => 42, - 'contact-id' => 42, + 'contact-id' => 43, 'unseen' => 0, 'origin' => 1, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -526,7 +526,7 @@ return [ 'thr-parent-id' => 3, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, + 'owner-id' => 43, 'author-id' => 43, 'causer-id' => 43, 'vid' => 8, @@ -540,16 +540,16 @@ return [ 'id' => 4, 'uri-id' => 4, 'uid' => 42, - 'contact-id' => 44, + 'contact-id' => 45, 'unseen' => 0, 'origin' => 1, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 44, - 'causer-id' => 44, + 'owner-id' => 43, + 'author-id' => 45, + 'causer-id' => 45, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -561,16 +561,16 @@ return [ 'id' => 5, 'uri-id' => 5, 'uid' => 42, - 'contact-id' => 42, + 'contact-id' => 43, 'unseen' => 0, 'origin' => 1, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -582,16 +582,16 @@ return [ 'id' => 6, 'uri-id' => 6, 'uid' => 42, - 'contact-id' => 44, + 'contact-id' => 45, 'unseen' => 0, 'origin' => 1, 'parent-uri-id' => 6, 'thr-parent-id' => 6, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 44, - 'causer-id' => 44, + 'owner-id' => 43, + 'author-id' => 45, + 'causer-id' => 45, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -603,16 +603,16 @@ return [ 'id' => 7, 'uri-id' => 1, 'uid' => 0, - 'contact-id' => 42, + 'contact-id' => 43, 'unseen' => 1, 'origin' => 0, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -624,16 +624,16 @@ return [ 'id' => 8, 'uri-id' => 2, 'uid' => 0, - 'contact-id' => 42, + 'contact-id' => 43, 'unseen' => 0, 'origin' => 0, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -652,7 +652,7 @@ return [ 'thr-parent-id' => 3, 'gravity' => Item::GRAVITY_PARENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, + 'owner-id' => 43, 'author-id' => 43, 'causer-id' => 43, 'vid' => 8, @@ -666,16 +666,16 @@ return [ 'id' => 10, 'uri-id' => 4, 'uid' => 0, - 'contact-id' => 44, + 'contact-id' => 45, 'unseen' => 0, 'origin' => 0, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 44, - 'causer-id' => 44, + 'owner-id' => 43, + 'author-id' => 45, + 'causer-id' => 45, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -687,16 +687,16 @@ return [ 'id' => 11, 'uri-id' => 5, 'uid' => 0, - 'contact-id' => 42, + 'contact-id' => 43, 'unseen' => 0, 'origin' => 0, 'parent-uri-id' => 1, 'thr-parent-id' => 1, 'gravity' => Item::GRAVITY_COMMENT, 'network' => Protocol::DFRN, - 'owner-id' => 42, - 'author-id' => 42, - 'causer-id' => 42, + 'owner-id' => 43, + 'author-id' => 43, + 'causer-id' => 43, 'vid' => 8, 'private' => Item::PUBLIC, 'global' => true, @@ -708,10 +708,10 @@ return [ 'id' => 12, 'uri-id' => 6, 'visible' => 1, - 'contact-id' => 44, - 'author-id' => 44, - 'owner-id' => 42, - 'causer-id' => 44, + 'contact-id' => 45, + 'author-id' => 45, + 'owner-id' => 43, + 'causer-id' => 45, 'uid' => 0, 'vid' => 8, 'unseen' => 0, @@ -729,10 +729,10 @@ return [ 'id' => 13, 'uri-id' => 7, 'visible' => 1, - 'contact-id' => 44, - 'author-id' => 44, - 'owner-id' => 42, - 'causer-id' => 44, + 'contact-id' => 45, + 'author-id' => 45, + 'owner-id' => 43, + 'causer-id' => 45, 'uid' => 0, 'vid' => 8, 'unseen' => 0, @@ -751,10 +751,10 @@ return [ 'id' => 14, 'uri-id' => 100, 'visible' => 1, - 'contact-id' => 44, - 'author-id' => 44, - 'owner-id' => 42, - 'causer-id' => 44, + 'contact-id' => 45, + 'author-id' => 45, + 'owner-id' => 43, + 'causer-id' => 45, 'uid' => 0, 'vid' => 8, 'unseen' => 0, @@ -772,9 +772,9 @@ return [ 'post-thread' => [ [ 'uri-id' => 1, - 'author-id' => 42, - 'owner-id' => 42, - 'causer-id' => 42, + 'author-id' => 43, + 'owner-id' => 43, + 'causer-id' => 43, 'network' => Protocol::DFRN, ], [ @@ -786,16 +786,16 @@ return [ ], [ 'uri-id' => 6, - 'author-id' => 44, - 'owner-id' => 44, - 'causer-id' => 44, + 'author-id' => 45, + 'owner-id' => 45, + 'causer-id' => 45, 'network' => Protocol::DFRN, ], [ 'uri-id' => 7, - 'author-id' => 44, - 'owner-id' => 44, - 'causer-id' => 44, + 'author-id' => 45, + 'owner-id' => 45, + 'causer-id' => 45, 'network' => Protocol::DFRN, ], ], @@ -805,10 +805,10 @@ return [ 'uid' => 42, 'wall' => 1, 'post-user-id' => 1, - 'author-id' => 42, - 'owner-id' => 42, - 'causer-id' => 42, - 'contact-id' => 42, + 'author-id' => 43, + 'owner-id' => 43, + 'causer-id' => 43, + 'contact-id' => 43, 'network' => Protocol::DFRN, 'starred' => 1, 'origin' => 1, @@ -831,10 +831,10 @@ return [ 'uid' => 42, 'wall' => 1, 'post-user-id' => 6, - 'author-id' => 44, - 'owner-id' => 44, - 'causer-id' => 44, - 'contact-id' => 44, + 'author-id' => 45, + 'owner-id' => 45, + 'causer-id' => 45, + 'contact-id' => 45, 'network' => Protocol::DFRN, 'starred' => 0, 'origin' => 1, @@ -844,10 +844,10 @@ return [ 'uid' => 0, 'wall' => 0, 'post-user-id' => 7, - 'author-id' => 42, - 'owner-id' => 42, - 'causer-id' => 42, - 'contact-id' => 42, + 'author-id' => 43, + 'owner-id' => 43, + 'causer-id' => 43, + 'contact-id' => 43, 'network' => Protocol::DFRN, 'starred' => 0, 'origin' => 0, @@ -870,10 +870,10 @@ return [ 'uid' => 0, 'wall' => 0, 'post-user-id' => 12, - 'author-id' => 44, - 'owner-id' => 44, - 'causer-id' => 44, - 'contact-id' => 44, + 'author-id' => 45, + 'owner-id' => 45, + 'causer-id' => 45, + 'contact-id' => 45, 'network' => Protocol::DFRN, 'starred' => 0, 'origin' => 0, @@ -883,10 +883,10 @@ return [ 'uid' => 42, 'wall' => 1, 'post-user-id' => 7, - 'author-id' => 44, - 'owner-id' => 44, - 'causer-id' => 44, - 'contact-id' => 44, + 'author-id' => 45, + 'owner-id' => 45, + 'causer-id' => 45, + 'contact-id' => 45, 'network' => Protocol::DFRN, 'starred' => 0, 'origin' => 1, @@ -896,10 +896,10 @@ return [ 'uid' => 0, 'wall' => 0, 'post-user-id' => 12, - 'author-id' => 44, - 'owner-id' => 44, - 'causer-id' => 44, - 'contact-id' => 44, + 'author-id' => 45, + 'owner-id' => 45, + 'causer-id' => 45, + 'contact-id' => 45, 'network' => Protocol::DFRN, 'starred' => 0, 'origin' => 0, @@ -948,12 +948,12 @@ return [ [ 'id' => 1, 'gid' => 1, - 'contact-id' => 42, + 'contact-id' => 43, ], [ 'id' => 2, 'gid' => 1, - 'contact-id' => 42, + 'contact-id' => 43, ], [ 'id' => 3, diff --git a/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php b/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php index 71cf0b35f8..1b6f0151fa 100644 --- a/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php +++ b/tests/src/Module/Api/Twitter/Statuses/UserTimelineTest.php @@ -38,7 +38,7 @@ class UserTimelineTest extends ApiTest { $response = (new UserTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) ->run($this->httpExceptionMock, [ - 'user_id' => 42, + 'user_id' => 43, // Public contact id 'max_id' => 10, 'exclude_replies' => true, 'conversation_id' => 1, @@ -63,7 +63,7 @@ class UserTimelineTest extends ApiTest { $response = (new UserTimeline(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [])) ->run($this->httpExceptionMock, [ - 'user_id' => 42, + 'user_id' => 43, // Public contact id 'page' => -2, ]); From 8cf82a844993a6c12f20a462c5ba7d8a79fe803b Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 29 Feb 2024 04:40:04 +0000 Subject: [PATCH 218/281] Exceptions and warnings fixed --- src/Protocol/Email.php | 2 +- src/Util/ParseUrl.php | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Protocol/Email.php b/src/Protocol/Email.php index 68d56da8bc..836235105c 100644 --- a/src/Protocol/Email.php +++ b/src/Protocol/Email.php @@ -259,7 +259,7 @@ class Email if ((isset($params['filename']) && $params['filename']) || (isset($params['name']) && $params['name'])) { // filename may be given as 'Filename' or 'Name' or both - $filename = ($params['filename'])? $params['filename'] : $params['name']; + $filename = $params['filename'] ?? $params['name']; // filename may be encoded, so see imap_mime_header_decode() $attachments[$filename] = $data; // this is a problem if two files have same name } diff --git a/src/Util/ParseUrl.php b/src/Util/ParseUrl.php index 7c9a058b43..d12d84278b 100644 --- a/src/Util/ParseUrl.php +++ b/src/Util/ParseUrl.php @@ -235,7 +235,12 @@ class ParseUrl return $siteinfo; } - $curlResult = DI::httpClient()->get($url, HttpClientAccept::HTML, [HttpClientOptions::CONTENT_LENGTH => 1000000]); + try { + $curlResult = DI::httpClient()->get($url, HttpClientAccept::HTML, [HttpClientOptions::CONTENT_LENGTH => 1000000]); + } catch (\Throwable $th) { + Logger::info('Exception when fetching', ['url' => $url, 'code' => $th->getCode(), 'message' => $th->getMessage()]); + return $siteinfo; + } if (!$curlResult->isSuccess() || empty($curlResult->getBodyString())) { Logger::info('Empty body or error when fetching', ['url' => $url, 'success' => $curlResult->isSuccess(), 'code' => $curlResult->getReturnCode()]); return $siteinfo; From e394a6b0fac76ef46c4e755f0df8b4bb9cb6b81d Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 29 Feb 2024 07:37:58 +0000 Subject: [PATCH 219/281] Issue 13819: Ensure to not use OEmbed if not wanted --- src/Content/Text/BBCode.php | 9 +++------ static/defaults.config.php | 4 ---- tests/src/Content/Text/BBCodeTest.php | 1 - 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 877e3e2e55..c75634a605 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1788,7 +1788,7 @@ class BBCode $text = self::normalizeVideoLinks($text); // Youtube extensions - if ($try_oembed) { + if ($try_oembed && OEmbed::isAllowedURL('https://www.youtube.com')) { $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '', $text); } else { $text = preg_replace( @@ -1799,7 +1799,7 @@ class BBCode } // Vimeo extensions - if ($try_oembed) { + if ($try_oembed && OEmbed::isAllowedURL('https://vimeo.com')) { $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '', $text); } else { $text = preg_replace( @@ -2057,10 +2057,7 @@ class BBCode ); // Default iframe allowed domains/path - $allowedIframeDomains = [ - 'www.youtube.com/embed/', - 'player.vimeo.com/video/', - ]; + $allowedIframeDomains = DI::config()->get('system', 'no_oembed_rich_content') ? [] : ['www.youtube.com/embed/', 'player.vimeo.com/video/']; $allowedIframeDomains = array_merge( $allowedIframeDomains, diff --git a/static/defaults.config.php b/static/defaults.config.php index 7439c7fdf6..8a13c61a39 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -429,10 +429,6 @@ return [ // Don't do count calculations (currently only when showing photo albums). 'no_count' => false, - // no_oembed (Boolean) - // Don't use OEmbed to fetch more information about a link. - 'no_oembed' => false, - // no_redirect_list (Array) // List of domains where HTTP redirects should be ignored. 'no_redirect_list' => [], diff --git a/tests/src/Content/Text/BBCodeTest.php b/tests/src/Content/Text/BBCodeTest.php index 9078293b4d..d3b05fb590 100644 --- a/tests/src/Content/Text/BBCodeTest.php +++ b/tests/src/Content/Text/BBCodeTest.php @@ -35,7 +35,6 @@ class BBCodeTest extends FixtureTest { parent::setUp(); DI::config()->set('system', 'remove_multiplicated_lines', false); - DI::config()->set('system', 'no_oembed', false); DI::config()->set('system', 'allowed_link_protocols', []); DI::config()->set('system', 'url', 'https://friendica.local'); DI::config()->set('system', 'no_smilies', false); From 40e882004eacb3cd6d682a397b47a6c55beae8c0 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 29 Feb 2024 07:40:36 +0000 Subject: [PATCH 220/281] Use the exact embed URLs --- src/Content/Text/BBCode.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index c75634a605..574b9987fc 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1788,7 +1788,7 @@ class BBCode $text = self::normalizeVideoLinks($text); // Youtube extensions - if ($try_oembed && OEmbed::isAllowedURL('https://www.youtube.com')) { + if ($try_oembed && OEmbed::isAllowedURL('https://www.youtube.com/embed/')) { $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '', $text); } else { $text = preg_replace( @@ -1799,7 +1799,7 @@ class BBCode } // Vimeo extensions - if ($try_oembed && OEmbed::isAllowedURL('https://vimeo.com')) { + if ($try_oembed && OEmbed::isAllowedURL('https://player.vimeo.com/video')) { $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '', $text); } else { $text = preg_replace( From dd55ba2d77f4c66acb292f787d98d4ad4c92cbc2 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 29 Feb 2024 22:03:57 +0000 Subject: [PATCH 221/281] Issue 13949: Block access via OAuth --- database.sql | 5 +++-- src/Module/OAuth/Revoke.php | 3 --- src/Module/OAuth/Token.php | 3 --- src/Security/OAuth.php | 1 - static/dbstructure.config.php | 2 +- static/dbview.config.php | 3 ++- 6 files changed, 6 insertions(+), 11 deletions(-) diff --git a/database.sql b/database.sql index 3ffb6ad07c..6889563472 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2024.03-rc (Yellow Archangel) --- DB_UPDATE_VERSION 1554 +-- DB_UPDATE_VERSION 1555 -- ------------------------------------------ @@ -2017,7 +2017,8 @@ CREATE VIEW `application-view` AS SELECT `application-token`.`follow` AS `follow`, `application-token`.`push` AS `push` FROM `application-token` - INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id`; + INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id` + INNER JOIN `user` ON `user`.`uid` = `application-token`.`uid` AND `user`.`verified` AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND NOT `user`.`account_expired`; -- -- VIEW circle-member-view diff --git a/src/Module/OAuth/Revoke.php b/src/Module/OAuth/Revoke.php index b98f943daf..a3532fb2ef 100644 --- a/src/Module/OAuth/Revoke.php +++ b/src/Module/OAuth/Revoke.php @@ -21,10 +21,7 @@ namespace Friendica\Module\OAuth; -use Friendica\Core\Logger; -use Friendica\Core\System; use Friendica\Database\DBA; -use Friendica\DI; use Friendica\Module\BaseApi; use Friendica\Module\Special\HTTPException; use Psr\Http\Message\ResponseInterface; diff --git a/src/Module/OAuth/Token.php b/src/Module/OAuth/Token.php index bc53b401d7..ec12150f83 100644 --- a/src/Module/OAuth/Token.php +++ b/src/Module/OAuth/Token.php @@ -22,15 +22,12 @@ namespace Friendica\Module\OAuth; use Friendica\Core\Logger; -use Friendica\Core\System; use Friendica\Database\DBA; -use Friendica\DI; use Friendica\Model\User; use Friendica\Module\BaseApi; use Friendica\Module\Special\HTTPException; use Friendica\Security\OAuth; use Friendica\Util\DateTimeFormat; -use GuzzleHttp\Psr7\Uri; use Psr\Http\Message\ResponseInterface; /** diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php index 6d1aba276c..eb4b3eba4d 100644 --- a/src/Security/OAuth.php +++ b/src/Security/OAuth.php @@ -29,7 +29,6 @@ use Friendica\Model\Contact; use Friendica\Model\User; use Friendica\Module\BaseApi; use Friendica\Util\DateTimeFormat; -use GuzzleHttp\Psr7\Uri; /** * OAuth Server diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 98567bbbce..70b78f4c77 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -56,7 +56,7 @@ use Friendica\Database\DBA; // This file is required several times during the test in DbaDefinition which justifies this condition if (!defined('DB_UPDATE_VERSION')) { - define('DB_UPDATE_VERSION', 1554); + define('DB_UPDATE_VERSION', 1555); } return [ diff --git a/static/dbview.config.php b/static/dbview.config.php index 7ce0fca393..be88ee24fb 100644 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -56,7 +56,8 @@ "push" => ["application-token", "push"], ], "query" => "FROM `application-token` - INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id`" + INNER JOIN `application` ON `application-token`.`application-id` = `application`.`id` + INNER JOIN `user` ON `user`.`uid` = `application-token`.`uid` AND `user`.`verified` AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND NOT `user`.`account_expired`" ], "circle-member-view" => [ "fields" => [ From 5df1ead0012ab3226b5c9340ce41483d326a9d1e Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 1 Mar 2024 08:41:12 +0000 Subject: [PATCH 222/281] Issue 13953: Fix warning during postupdate --- src/Content/Item.php | 2 +- src/Model/Post/SearchIndex.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Content/Item.php b/src/Content/Item.php index c7438d2593..e9f4ef8738 100644 --- a/src/Content/Item.php +++ b/src/Content/Item.php @@ -695,7 +695,7 @@ class Item $item['body'] = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']); } - $shared_content = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid'], $item['uri']); + $shared_content = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'] ?? $item['uri'], $item['created'], $item['guid'], $item['uri']); if (!empty($item['title'])) { $shared_content .= '[h3]' . $item['title'] . "[/h3]\n"; diff --git a/src/Model/Post/SearchIndex.php b/src/Model/Post/SearchIndex.php index 554a1b90a7..7d215658df 100644 --- a/src/Model/Post/SearchIndex.php +++ b/src/Model/Post/SearchIndex.php @@ -48,6 +48,9 @@ class SearchIndex } $item = Post::selectFirstPost(['created', 'owner-id', 'private', 'language', 'network', 'title', 'content-warning', 'body', 'quote-uri-id'], ['uri-id' => $uri_id]); + if (empty($item)) { + return; + } $search = [ 'uri-id' => $uri_id, From 2c259c5c6f07f58c40e6d998378cc847d8442d5b Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 29 Feb 2024 09:17:09 -0500 Subject: [PATCH 223/281] [frio] Remove legacy schemes - [frio] Replace default scheme file by default scheme value - [frio] Simplify frio theme settings - [frio] Remove query string scheme setting --- view/theme/frio/config.php | 38 +++---------- view/theme/frio/php/default.php | 5 +- view/theme/frio/php/scheme.php | 59 ++++++++++++++++++-- view/theme/frio/style.php | 35 ++---------- view/theme/frio/templates/theme_settings.tpl | 10 +--- view/theme/frio/theme.php | 3 + 6 files changed, 74 insertions(+), 76 deletions(-) diff --git a/view/theme/frio/config.php b/view/theme/frio/config.php index 3703912d3f..62969badeb 100644 --- a/view/theme/frio/config.php +++ b/view/theme/frio/config.php @@ -24,6 +24,7 @@ use Friendica\Core\Renderer; use Friendica\DI; require_once 'view/theme/frio/php/Image.php'; +require_once 'view/theme/frio/php/scheme.php'; function theme_post(App $a) { @@ -93,14 +94,7 @@ function theme_content(): string } $arr = [ - 'scheme' => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'scheme', - DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'schema', - DI::config()->get('frio', 'scheme', - DI::config()->get('frio', 'schema') - ) - ) - ), - + 'scheme' => frio_scheme_get_current_for_user(DI::userSession()->getLocalUserId()), 'share_string' => '', 'scheme_accent' => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'scheme_accent' , DI::config()->get('frio', 'scheme_accent')), 'nav_bg' => DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'nav_bg' , DI::config()->get('frio', 'nav_bg')), @@ -123,8 +117,8 @@ function theme_admin(): string } $arr = [ - 'scheme' => DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')), - 'scheme_accent' => DI::config()->get('frio', 'scheme_accent'), + 'scheme' => frio_scheme_get_current(), + 'scheme_accent' => DI::config()->get('frio', 'scheme_accent') ?: FRIO_SCHEME_ACCENT_BLUE, 'share_string' => '', 'nav_bg' => DI::config()->get('frio', 'nav_bg'), 'nav_icon_color' => DI::config()->get('frio', 'nav_icon_color'), @@ -149,33 +143,15 @@ function frio_form($arr) $scheme_info = get_scheme_info($arr['scheme']); $disable = $scheme_info['overwrites']; - $schemes = [ - 'light' => DI::l10n()->t('Light (Accented)'), - 'dark' => DI::l10n()->t('Dark (Accented)'), - 'black' => DI::l10n()->t('Black (Accented)'), - ]; - - $legacy_schemes = []; - foreach (glob('view/theme/frio/scheme/*.php') ?: [] as $file) { - $scheme = basename($file, '.php'); - if (!in_array($scheme, ['default', 'light', 'dark', 'black'])) { - $scheme_name = ucfirst($scheme); - $legacy_schemes[$scheme] = $scheme_name; - } - } - $background_image_help = '' . DI::l10n()->t('Note') . ': ' . DI::l10n()->t('Check image permissions if all users are allowed to see the image'); $t = Renderer::getMarkupTemplate('theme_settings.tpl'); $ctx = [ '$submit' => DI::l10n()->t('Submit'), '$title' => DI::l10n()->t('Theme settings'), - '$custom' => DI::l10n()->t('Custom'), - '$legacy' => DI::l10n()->t('Legacy'), - '$accented' => DI::l10n()->t('Accented'), - '$scheme' => ['frio_scheme', DI::l10n()->t('Select color scheme'), $arr['scheme'], $schemes, $legacy_schemes], - '$scheme_accent' => !$scheme_info['accented'] ? '' : ['frio_scheme_accent', DI::l10n()->t('Select scheme accent'), $arr['scheme_accent'], ['blue' => DI::l10n()->t('Blue'), 'red' => DI::l10n()->t('Red'), 'purple' => DI::l10n()->t('Purple'), 'green' => DI::l10n()->t('Green'), 'pink' => DI::l10n()->t('Pink')]], - '$share_string' => $arr['scheme'] != '---' ? '' : ['frio_share_string', DI::l10n()->t('Copy or paste schemestring'), $arr['share_string'], DI::l10n()->t('You can copy this string to share your theme with others. Pasting here applies the schemestring'), false, false], + '$scheme' => ['frio_scheme', DI::l10n()->t('Appearance'), $arr['scheme'], frio_scheme_get_list()], + '$scheme_accent' => !$scheme_info['accented'] ? '' : ['frio_scheme_accent', DI::l10n()->t('Accent color'), $arr['scheme_accent'], ['blue' => DI::l10n()->t('Blue'), 'red' => DI::l10n()->t('Red'), 'purple' => DI::l10n()->t('Purple'), 'green' => DI::l10n()->t('Green'), 'pink' => DI::l10n()->t('Pink')]], + '$share_string' => $arr['scheme'] != FRIO_CUSTOM_SCHEME ? '' : ['frio_share_string', DI::l10n()->t('Copy or paste schemestring'), $arr['share_string'], DI::l10n()->t('You can copy this string to share your theme with others. Pasting here applies the schemestring'), false, false], '$nav_bg' => array_key_exists('nav_bg', $disable) ? '' : ['frio_nav_bg', DI::l10n()->t('Navigation bar background color'), $arr['nav_bg'], '', false], '$nav_icon_color' => array_key_exists('nav_icon_color', $disable) ? '' : ['frio_nav_icon_color', DI::l10n()->t('Navigation bar icon color '), $arr['nav_icon_color'], '', false], '$link_color' => array_key_exists('link_color', $disable) ? '' : ['frio_link_color', DI::l10n()->t('Link color'), $arr['link_color'], '', false], diff --git a/view/theme/frio/php/default.php b/view/theme/frio/php/default.php index 14914288aa..02e073a364 100644 --- a/view/theme/frio/php/default.php +++ b/view/theme/frio/php/default.php @@ -29,6 +29,7 @@ use Friendica\Model\Profile; require_once 'view/theme/frio/theme.php'; require_once 'view/theme/frio/php/frio_boot.php'; +require_once 'view/theme/frio/php/scheme.php'; // $minimal = is_modal(); if (!isset($minimal)) { @@ -59,8 +60,8 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; // Add the theme color meta // It makes mobile Chrome UI match Frio's top bar color. $uid = Profile::getThemeUid($a); - $scheme = DI::pConfig()->get($uid, 'frio', 'scheme', DI::pConfig()->get($uid, 'frio', 'schema')); - if ($scheme && is_string($scheme) && $scheme != '---') { + $scheme = frio_scheme_get_current_for_user($uid); + if ($scheme != FRIO_CUSTOM_SCHEME) { if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; $scheme_accent = diff --git a/view/theme/frio/php/scheme.php b/view/theme/frio/php/scheme.php index aa6571a4d1..7304d83cd0 100644 --- a/view/theme/frio/php/scheme.php +++ b/view/theme/frio/php/scheme.php @@ -37,15 +37,13 @@ use Friendica\DI; use Friendica\Util\Strings; +require_once 'view/theme/frio/theme.php'; + function get_scheme_info($scheme) { $theme = DI::app()->getCurrentTheme(); $themepath = 'view/theme/' . $theme . '/'; - if (empty($scheme)) { - $scheme = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'scheme', DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'frio', 'schema', '---')); - } - - $scheme = Strings::sanitizeFilePathItem($scheme); + $scheme = Strings::sanitizeFilePathItem($scheme) ?: FRIO_DEFAULT_SCHEME; $info = [ 'name' => $scheme, @@ -100,3 +98,54 @@ function get_scheme_info($scheme) return $info; } + +function frio_scheme_get_list(): array +{ + $schemes = [ + 'light' => DI::l10n()->t('Light'), + 'dark' => DI::l10n()->t('Dark'), + 'black' => DI::l10n()->t('Black'), + ]; + + foreach (glob('view/theme/frio/scheme/*.php') ?: [] as $file) { + $scheme = basename($file, '.php'); + if (!in_array($scheme, ['default', 'light', 'dark', 'black'])) { + $scheme_info = get_scheme_info($scheme); + $schemes[$scheme] = $scheme_info['name'] ?? ucfirst($scheme); + } + } + + $schemes[FRIO_CUSTOM_SCHEME] = DI::l10n()->t('Custom'); + + return $schemes; +} + +function frio_scheme_get_current() +{ + $available = array_keys(frio_scheme_get_list()); + + $scheme = DI::config()->get('frio', 'scheme') ?: DI::config()->get('frio', 'schema'); + + if (!in_array($scheme, $available)) { + return FRIO_DEFAULT_SCHEME; + } + + return $scheme; +} + +function frio_scheme_get_current_for_user(int $uid) +{ + $available = array_keys(frio_scheme_get_list()); + + $scheme = + DI::pConfig()->get($uid, 'frio', 'scheme') ?: + DI::pConfig()->get($uid, 'frio', 'schema') ?: + DI::config()->get('frio', 'scheme') ?: + DI::config()->get('frio', 'schema'); + + if (!in_array($scheme, $available)) { + return FRIO_DEFAULT_SCHEME; + } + + return $scheme; +} diff --git a/view/theme/frio/style.php b/view/theme/frio/style.php index a0cf77932a..d0de2d8262 100644 --- a/view/theme/frio/style.php +++ b/view/theme/frio/style.php @@ -24,10 +24,9 @@ use Friendica\Network\HTTPException\NotModifiedException; use Friendica\Util\Strings; require_once 'view/theme/frio/theme.php'; +require_once 'view/theme/frio/php/scheme.php'; require_once 'view/theme/frio/php/PHPColors/Color.php'; -$scheme = ''; -$schemecss = ''; $schemecssfile = false; $scheme_modified = 0; @@ -35,7 +34,7 @@ $scheme_modified = 0; * This script can be included when the maintenance mode is on, which requires us to avoid any config call and * use the following hardcoded defaults */ -$scheme = null; +$scheme = FRIO_DEFAULT_SCHEME; $scheme_accent = FRIO_SCHEME_ACCENT_BLUE; $nav_bg = '#708fa0'; $nav_icon_color = '#ffffff'; @@ -52,7 +51,7 @@ if (DI::mode()->has(\Friendica\App\Mode::MAINTENANCEDISABLED)) { DI::config()->reload(); // Default to hard-coded values for empty settings - $scheme = DI::config()->get('frio', 'scheme', DI::config()->get('frio', 'schema')); + $scheme = frio_scheme_get_current(); $scheme_accent = DI::config()->get('frio', 'scheme_accent') ?: $scheme_accent; $nav_bg = DI::config()->get('frio', 'nav_bg') ?: $nav_bg; $nav_icon_color = DI::config()->get('frio', 'nav_icon_color') ?: $nav_icon_color; @@ -71,7 +70,7 @@ if (DI::mode()->has(\Friendica\App\Mode::MAINTENANCEDISABLED)) { DI::pConfig()->load($uid, 'frio'); // Only override display settings that have actually been set - $scheme = DI::pConfig()->get($uid, 'frio', 'scheme', DI::pConfig()->get($uid, 'frio', 'schema')) ?: $scheme; + $scheme = frio_scheme_get_current_for_user($uid); $scheme_accent = DI::pConfig()->get($uid, 'frio', 'scheme_accent') ?: $scheme_accent; $nav_bg = DI::pConfig()->get($uid, 'frio', 'nav_bg') ?: $nav_bg; $nav_icon_color = DI::pConfig()->get($uid, 'frio', 'nav_icon_color') ?: $nav_icon_color; @@ -89,18 +88,9 @@ if (!$login_bg_image && !$login_bg_color) { } $login_bg_color = $login_bg_color ?: '#ededed'; -// Now load the scheme. If a value is changed above, we'll keep the settings -// If not, we'll keep those defined by the scheme -// Setting $scheme to '' wasn't working for some reason, so we'll check it's -// not --- like the mobile theme does instead. -// Allow layouts to over-ride the scheme. -if (!empty($_REQUEST['scheme'])) { - $scheme = $_REQUEST['scheme']; -} +$scheme = Strings::sanitizeFilePathItem($scheme); -$scheme = Strings::sanitizeFilePathItem($scheme ?? ''); - -if ($scheme && ($scheme != '---')) { +if ($scheme != FRIO_CUSTOM_SCHEME) { if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; require_once $schemefile; @@ -110,19 +100,6 @@ if ($scheme && ($scheme != '---')) { } } -// If we haven't got a scheme, load the default. We shouldn't touch this - we -// should leave it for admins to define for themselves. -// default.php and default.css MUST be symlinks to existing scheme files. -if (!$scheme) { - if (file_exists('view/theme/frio/scheme/default.php')) { - $schemefile = 'view/theme/frio/scheme/default.php'; - require_once $schemefile; - } - if (file_exists('view/theme/frio/scheme/default.css')) { - $schemecssfile = 'view/theme/frio/scheme/default.css'; - } -} - $contentbg_transp = $contentbg_transp != '' ? $contentbg_transp : 100; // Calculate some colors in dependance of existing colors. diff --git a/view/theme/frio/templates/theme_settings.tpl b/view/theme/frio/templates/theme_settings.tpl index 7e53429e3b..0e10070684 100644 --- a/view/theme/frio/templates/theme_settings.tpl +++ b/view/theme/frio/templates/theme_settings.tpl @@ -4,17 +4,9 @@
diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index 58eb8268c3..c316f8dbf5 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -41,6 +41,9 @@ const FRIO_SCHEME_ACCENT_PURPLE = '#a54bad'; const FRIO_SCHEME_ACCENT_GREEN = '#218f39'; const FRIO_SCHEME_ACCENT_PINK = '#d900a9'; +const FRIO_DEFAULT_SCHEME = 'light'; +const FRIO_CUSTOM_SCHEME = '---'; + /* * This script can be included even when the app is in maintenance mode which requires us to avoid any config call */ From 4fcc92e532fb1de930b3eab66d8632fe33a7211f Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 29 Feb 2024 09:57:07 -0500 Subject: [PATCH 224/281] [frio] Delete legacy scheme files --- view/theme/frio/scheme/blue.php | 16 --- view/theme/frio/scheme/koyu-dark.css | 52 -------- view/theme/frio/scheme/koyu-dark.php | 10 -- view/theme/frio/scheme/love-music.css | 74 ------------ view/theme/frio/scheme/love-music.php | 15 --- view/theme/frio/scheme/plusminus.css | 168 -------------------------- view/theme/frio/scheme/plusminus.jpg | Bin 22856 -> 0 bytes view/theme/frio/scheme/plusminus.php | 17 --- view/theme/frio/scheme/red.php | 15 --- 9 files changed, 367 deletions(-) delete mode 100644 view/theme/frio/scheme/blue.php delete mode 100644 view/theme/frio/scheme/koyu-dark.css delete mode 100644 view/theme/frio/scheme/koyu-dark.php delete mode 100644 view/theme/frio/scheme/love-music.css delete mode 100644 view/theme/frio/scheme/love-music.php delete mode 100644 view/theme/frio/scheme/plusminus.css delete mode 100644 view/theme/frio/scheme/plusminus.jpg delete mode 100644 view/theme/frio/scheme/plusminus.php delete mode 100644 view/theme/frio/scheme/red.php diff --git a/view/theme/frio/scheme/blue.php b/view/theme/frio/scheme/blue.php deleted file mode 100644 index bd98ad6a5a..0000000000 --- a/view/theme/frio/scheme/blue.php +++ /dev/null @@ -1,16 +0,0 @@ - a, -#topbar-first .dropdown.account.open > a, -#topbar-first .dropdown.account > button, -#topbar-first .dropdown.account.open > button, -#topbar-first .dropdown.account > :hover, -#topbar-first .dropdown.account.open > :hover { - background: #111; - border: 0; -} - -.nav-pills .dropdown-menu, -.nav-tabs .dropdown-menu, -.account .dropdown-menu, -.contact-photo-wrapper .dropdown-menu { - background: #111; - -webkit-box-shadow: 0px 0px 69px 4px rgba(0, 0, 0, 0.25); - -moz-box-shadow: 0px 0px 69px 4px rgba(0, 0, 0, 0.25); - box-shadow: 0px 0px 69px 4px rgba(0, 0, 0, 0.25); - border: 0; -} - -.account .dropdown-menu li, -.account .dropdown-menu li:hover { - border: 0; - background: #111; -} - -#topbar-first .topbar-nav .nav-segment > a:hover { - background: #333; -} - -.account .dropdown-menu li:hover { - background: #333 !important; -} - -.account .dropdown-menu li.divider { - background: #111; -} diff --git a/view/theme/frio/scheme/koyu-dark.php b/view/theme/frio/scheme/koyu-dark.php deleted file mode 100644 index a924cff9cb..0000000000 --- a/view/theme/frio/scheme/koyu-dark.php +++ /dev/null @@ -1,10 +0,0 @@ - li > a:hover, -nav.navbar .nav > li > a:hover { - background-color: #000; - color: #15e3ff; -} -#topbar-first .nav > li > a.selected { - background: #e355e0; - color: #000; - padding: 9px; - border-radius: 8px; -} -#topbar-first #nav-notifications-menu li.notif-entry:hover, -#topbar-second .nav > li > ul > li > a:hover, -#topbar-second .nav > li > ul > li > a.active, -#topbar-second .nav > li > a:hover, -#topbar-second .nav .open > a, -#topbar-second .nav > li.active, -.nav-pills .dropdown-menu li:hover, -.nav-tabs .dropdown-menu li:hover, -.account .dropdown-menu li:hover, -.contact-photo-wrapper .dropdown-menu li:hover, -.nav-pills .dropdown-menu li.selected, -.nav-tabs .dropdown-menu li.selected, -.account .dropdown-menu li.selected, -.contact-photo-wrapper .dropdown-menu li.selected, -aside .widget li:hover, -aside .widget li.selected, -.nav-container .widget li:hover { - border-left: 3px solid #15e3ff !important; -} - -.panel, -aside .widget, -.nav-container .widget, -#profile-page, -.photos-content-wrapper, -.settings-content-wrapper { - border-style: solid solid solid solid; - border-width: 1px; - border-color: #dddddd; - box-shadow: none; - border-radius: 15px; - color: #000; -} - -aside .widget li a, -aside .widget li a:hover, -.panel .panel-body .wall-item-content, -.toplevel_item .wall-item-container .btn-link { - color: #000; -} - -.wall-item-content a:hover, -nav.navbar .navbar-brand { - color: #15e3ff !important; -} diff --git a/view/theme/frio/scheme/love-music.php b/view/theme/frio/scheme/love-music.php deleted file mode 100644 index 19228240d7..0000000000 --- a/view/theme/frio/scheme/love-music.php +++ /dev/null @@ -1,15 +0,0 @@ -Ox@Ylbe@BjCn{NhumXI*!D0nqlVRbIVcmZK zFkzk(h~fJm>;HqWuyJsK5Ag5_K!lhEZKMEfEF2tcTpS<}7sEPM80L2XE*X%VMM&uZ zg@G*|t1qQ+L~02>n{x9YmEr6OyNI11oB%}q=rIi~2PYRdm`7AhTtZSx`l*Vln))*h zO(SE7iK!XX+}^>_$=Su#%|9S8=tc0$kjSX$H!-ns@oDK9h|H|)oZQl~@`}o;YGh3d zs3P`kg;q3n#WAOi9oc&M6{uf_s03sYLjPP*C01AK;TClH1{C*QW zUPzS}U>DC_VM88o4mQIr%}hhUxJ%X_A4zetnivR2K$&hN8Qx0iXo9bCUtf|TgHhaM~%%Rbq?x_>wn_(1N zxm8iJ4hFlF&wRkJRyjavfZ^BBaMs8+PL-b$tKIIh@(-lqTd3hqg-=k!Knm9Z7Mk^Lu_e8B6|N%-!lQ<~D)26dp>%Gt?xrZ--3Q?+ZItE{7vL)KNz zrK^IeF6YRMC`E_bh^cePC=o1_b6~UD#L_HE1V1Haeh}gqLGYOUoA!r_;#G6mp2-yf z4<@b+!=0NC1bI=}J5uu=dTyCA67>_9uWTfd2Y>snAD- z1j??IBebV0={n$#p4V1QUoW>ZBGB=0t~I-Rmxi;ZyLn3SrusXfh}_oO^ybI6x^7&F zdT8UXA+-IFjBh?+HLMK;%(<5Dn>A7u2lPg2C8hSwN$TA2-sb8gvL@gdAZin-RA%S+ zT})VWRdo%sP0GtZ`aVxaZZ@xaU>JsvrFyIv+zmPp@^ybZFLdbQ@ik?nuS7Ue^3{Kepn_+|RA$=r%Z3 zx6cptc8fT^t$qEBx@HVCe;Hv<_Vu!wmUcCbs%H9eS^ld^EmZ?iNabmK#Eij|ypdE{ zH5#&PU?3eY1s_&!9pZV9Wgu9(-AqO~uO~XMxx>i|~<}Mr@APDaP-hZ0> zU!DE~?^wdvFdQrlvi&!_Gh%$uKODrI{!e(vJOv&GCgn*17;wj+I}r26#drctdknnb zvH;12lnf|reIp*Q3a6G(D&tYHHH#Py&TdjawL9@+ho_aE4q@)6`w#2?PXFEgKNNj{ z3;fqPJK6sj`M;4E<2}f*F@6JwLdn3E)fZPd;{N|Yv|F4;#qXS$X~=Zp0fhnOfDQw3 z2dLmRHg6B`vOI2KKHtxNd|z3#IV-znHj5G)R|cu^yOOGL?O0CO9(iCXC&bN@TxDW3;_2itHpkt-Tb0A0Ya93^es0V8H`A^e?+ zCzgF+h zD5WHfolVFLUvv#t!M^M^XE^J&QyHykx2b`}bBCWmaEIrxjMyy5T7wLSNo2rBr28!L zv2a~ud?kEx7_7KWjW&>wUL_LGJ%Y)nzA(NnRHZq&`cyYhD}S5VgI4Tbc&gonIjj3Jr%NS>rF#>_{b%P zr4>3ntKIB4t8Ktn83!xo#D+5SedW!dL;+wgp(q=;P;@@(YiugJqw~*FW<)-|9JUR0 zW+9|y;BW{omqP7_(KjqhAm4vjqHNJO0}4_B`DUP~f8wSyE_3=s3)%nt$TUnnzEzeL zC=T0b*pOn+vJ-0cmwb{vtTWsMVOBvpHQEXbl(`(`V9kgSirW>ZSRepz{xZj?tB}GX zX0a5tVW{9ezA+oH(~QX^P#XRb!^r=ngHJe!0~C`KiqXxH6!)=kG4%k@LhzaQOCz8@ zsqXx$pt8+>+VZU|v_f5;ssIH^sl)ExuuaMi=u;jR{crt5lM)*o^U}5NcNde}hvZAQ(mTz$lyci0CCI}?(@WQH!VHL274C*Iz*g~MdPBxcVUa7C}3Gh;c>xdDc!xbR{ zRL0CE#&iuaFMW*i|FZ))EE}Vj&^v5LjF~31YQLE^rmO|(NSZYx19269loq$Y41$o+ zz>7WPAZX@oj6xT}^$jOs*&x3Y%Hn1x?Eis3Fj!=BDBcv`*d9OjWFh<+2&0Mk_++xh zi6z?jWCRhdLE3P7k-1i8}NAbsQ3q!u`H6b65=F#2i-hgD*?*nn;L;Qz4@lH1~Q z>uJt@oe~=(WE+XcNoGh(Uhpp?Vzv2?hNrdFMwEI**dPs9@(0q zEE^?;^em4%gC+{iR)cx0LU@i6H~T*h&6>!ylrTJLf^5JUlmkYz zUw}|*|D|_P{0=&$_#(p1uRAVCVl%L3RB-lkzSjH`LoqlQKAC|*+>eBSf1e}gh{q7e zb+0UlQ!fIwMfv_@j1xfoL$ulJHDN;vejR*b9A)picQY0q47J#LMOQkI7`GgtJs1#& zLgKZp=qZy{e&MXdd7Y}3932>WPDN)ly8-5jFsef}=(%vi-~VX3`^DIHD|g{RId&ya zML|Zdil#n7ouTIn_(1umrf5tl<9ikSr&cMu5v!OJl%mGrbj6|wJv2W8J0=Lk^PlL&3B;CSW4uJBqGcm3=%R^5 zx0Tv2iiAa*)Etxv;)^&_G{O=YFcKu6KA}W|uyZh>&g4Ibl7nSK*2qrAF{tfkML87j z+)uY#&PjeiXlzXV+Yg_Z<3Da4hRTo7hqmm29dY}yCovI$(otqobm-`=W~^Ll5SQz> zs1GaA!eH_o0B)}h7~b;~h4J9I?5&LP8iGnTT&0~o5KqZeUYgofI>y-#zkg})S!M9C z6S!r)MOMd6@TLav|GhLEBQ|dJ2U$yr)mO#LyNx_`BMe7VD7=TPDW+A1n=kBA6tSxs zyF{*P!&(UTI70}OFm^*Zt>Q7w6NtTzw5bb%rmU$$_@F-8Ctp-EcV@A$w9l!43SYtL zSWc4|c`KBFpnHjBEjhTXItq{>SL^JPP6A;@Fc}SbDHZMbiPpQT@PDsw&IRJDUULGu9US?)wrwt$9Z$lZ3(qrujGST<7B-Ma zB^?~Qz)=w(GhFa&`+$5L zXB%>bjnl*rG$P!n)eKo9v8mWhXyrG14>=r4g%$PALwO(5PVmrMM%I8XGCe3DU0>^uhX1j^ML?$4K z8I(C{GI#NpNc<2&#~J2X_VC|2tw^cuE^?>6$>An)#Euf zo@ahlp^b1ab2wAXb~^5DF@D*5I)_I7b>*AGf)K>|JFNG$x)s zX3&*e{Fu3Vnu?nr9sebQA#D&#dyz5)V{VxEQc+KF7X-?5dbKdEG!YT~go(fxlAq9O zIBjC!EaW&#Oop+`Yml`td^h+rb5+MobSgmII7PD*pA5I|Yw1T!EL;K0!T26_ARnw^ z3lxa48AJGceeKHFWjOY9T!7((F`4A#_9@ z1&S785gLlXRh)}BO55wQE9Qzx-zYbAE^?^ZvSz{`)5XC z2JMpCI!Ycy+}+hKB5%vgXd|_fl)pQ;AZVN#c`W_iz);IMs@M< zRc%r;R%(yz9)0MyN)It$`Y%a7M=Rr|bJJrhAQxFGW38lzlI>#_p+GDcJk(Ke{ynGt zhSsB&en$JF0@Ehf6n4HZow^2w%tNBgd^^B=TwE%DjgQbKwPocTMYuHBku)1ud2(x^ zbV^{*X{}UOVMecG2HNWd|Bi9#Z28=DO6Y8!O`K@HK~g(oT%a&^5i>UkJ2Ut{UZ+yg z?45ar5v8^)b$AU&HVAY)rN_-O^pKlQPldDs7pR1{6zuR7_)~;2T$v4&n^@u`P~843 zIRI*8o=#)1u-_?HGV1=`-seZ*{*!pA0?0^(+Mq1h;ksw*m3UzSc&)gJjJy%DsD($$ zA~Kw{NGw4#T3R@~0$UE6cBJHIOUV?tf=dr&yFTC$!p0iZwlei@$rQU0SBf>9(7{oH z1c-im45CP@EHX0)<@ufzyHFkZfz$0s$;*#&cus`Jnz>3p&hYd^Tq9~SuEZsY^02l) zPr`<8vlBMbQEJ;wjV+#uOvzegQcYzkW1tRcld^Jhjr^7=AqBD07}OF9RiWS3rjqLWY-$rWL@qXnJP9 zB31230ACc=nEul)!&p5f?Q`-yKKLkj54^|BjZY{_Z4MV0q%_*YL@p7VKy%x7t6Zf7 zzmzaSk)L-UdDP!y?G6cJ4&E!eb%R)`oRHUj3sx;FYDp)CEUbUd{?VYiXseA-mQFsZ z*e+pU(MG!wswj8%C{LkZi2-9uRgV%Q)6%yNO0(&KPpEqsDYOwqajQ?YVSv2`lS`I` zxR3fP!2n5v9sNfFv?y>QZV+zw8>T9hJ}+~QT zm&6b>G!jl1f9x%o-??p}jK|FP1uiZw2|XlB)YM(qoD9sb1mm@cHS@0tYfdio=x<@n zf@jQNFVn%0K%f30@L|mx#tJ7*U>_WM2dcB-R9)ly%*)-3@zZ-bQhdiQ=U-!V{v23-PqF{@Nqk?K}zTVtMMdRM@tU8 zTuBjISD)zgqY|!C6jOlfHsLi6`jVJ}oN}b?Ibk^`L&`x|6er&|_#i!J_?xo#Nt73% zEDPqkv{@#8kOeGB)%=tLxp!cZ>y~QQ9zp5a9V>BZ3FRq)GW*yR!2;K2I(7XVQv*`w z7f{r#)xrS%!$N?m!71``1isjt_G~YEIv|*jQ&9`NHsV$Oy{H!SJaL>y zXh8#!H%bK%CrCz5ZvVhvBebKgLw6?@`$<>3DFI0FR<*+4Ur&Ce$2zEVe`UO4;!*Ei zYtq))?&CQ8$cUrf=OJlOD)Tj|(r=9sGgQXTso}a`v*Wssaa6BYYi)IF!TW4zulcb* zO?SjK%t#11`5ZX8Q!5TRt`61mC*$F3a><{*seVqXrdMNE3@0MZE^)|5PleimE z^Y8%jLB~u*B(%U*tMxBBLv5L7oh{WqOXb_p+teU4H6AhRx-aAJXj@ic-*^j! zUd}Gn?@^AOa!HRZ&1Y+$&iOkUM&;L;?MpQwl^>F3njK2HOSIxCG6m+Hmb6IG*O`&H zNXf52zu;owMSB-tCMm;v>>T^!?*XRjDcXUiSE|(BkJrSbo$0T8bV^28oU@pSKU~>t zyM6P7ENns$d3jPvk7OjaHKnsi;EKCPk?N8id3`p(I%H8};?O`zz1i!bA z-cb-Ud7&NUR8WFB+9h;(qdaEe(C*AxUYbO=auOv2eT>{3mnx_|+5!x@o5zzv2=bM* zj%Wq6>o(gi85+t^_l=w*lYjM%q-I2on^BgTii2htH- zZ)+2Eeff*AeuCp(UcG}=Y#Vhqw)=eLb%ahbRR!2q9W^gC2KUJc)IXzphM2!Fd9u6B zz;_k&b&PW21@H69uIHFpPNXY-mrNovMP0Rdk#`R`XcOZ@&i=9S$?w$V(;FK{_{&Fz zNI#Mpwc3@Qm|bxwQhh@2-k%2(qQKPt?g7TDov-RZV@=0N=0`-Y$QJ!~guW!MjFg$H zfu>KF+zZZgdXfW0Mxp4IKuok!P(S_^yukYMx6wU7VY8Xe&8O%OBv0pq?|kVr_*To| zX=JwlP+(@TR^7*=OtCHTWRAR_i)-*D7=eOAZp#AAWAo=oS0OCFn{+wS?ZUen-|f3M ztCI9p0+MdBk`sJe2gFjslF(@rh}J8_Fv3(^xa(}I=ED}XiU&?2kW@=Q@FbNXEupVWpz-4 z3qm+YW!49k8z@)|MvE~ElZPS*SlJAL>3sLXvGbe1oaRBb?F-Z7ZIT=I-S>bBS5lw) zn?SB7#$m;Wvreb=LCpr9cea-V!7Gb9b`#A=(;a&*$)SbKy1Owt{TXk@69yGPXvX%{ zaeu{4fAEnsxOgnMs#9S8Z4v#G?|B!Rx+g_vv2s4G=8Mar79@V|Qr@Hd!>4%HPZ=ET zv*a7{!-e9z9_uG82?)z*R(6+h~i zW4xA9*4m7}W3<#){l1*8X(WX-_-~|C1a1q9u;CF>Aur;_GEfW4B)b%6T7{``OcIDJzTPzqXBEh~0WO9S-)7K~K$|CVvH^|GY_ZWs9DsHgQlEjqy$0OOUVmJ}!cu zylS~FahgFTx>abw={LrOcib#hbQPoCnT8p|h{!8>2x--na~`=B(&K{*#ky-@->Kbd zior_G2jgEWwptQoQMBaG1*wJ6gyMVL_&leGgmV-8Ztu$_6Tn+E&~#Gz=RW8p5ZVb$UnA=+M3Jg<4w z5xGrY#l5%|rX~^!mD>!+DU|wTOdUv1K)k8<+HO2yey&!QqUkShT0yVgSwa_?#}>gi zBF?96firUg)p1_42f>i()_3ytVy-goZ&RYPGSFEPuPvp_3p@R{m%4s<@W|>&JN!Wi zk6P33KA{gp(%QSDlTh}VwfF%^kK|u@NuT!fa8nH2@ac_)*RIy{8gBkFx)Df^dTVWT zmDyzUDy?oCAz?4`X0GPX%A+S^OB>#aJM@9o03Q~=9gZ-1silX-%bSxI(dbdvY09wv zrR*K&#`-Dq?_qfK4^FZVrE0htSxp>jSACVGi&SZT)_r;QBjOfuCm}^#x}Df(Q#V$z zLvih_UHT#sNNUlV+%gq1>d_tP#&j0(gKAR2G2u1htp_Ow$>kE&W2dJ+mFgM}PUg%5 zX3c#L-<{|%g;6VxQ>>(~6{(@T22Cp*P!@jYjuOjz0DC|t&m|UN(FkH%RYg+EP96=d z*Q*-`jhG}x3qH;3sDU@&r36C}NW19UyMqfa728Rp&9jPK5)}Vq zkSBCxn88g=D~xJEsqMpu%0YE~k<2>^^kj#=XZWceP1Sxb9_UYP+Y{&WXwFZqq#B<& zwMR(oggznl9&UlxI%C&5&Loz(l5(X3pI%7JgT~qvxbm$lqT@QMx+XW+kXE}4$(g^# zQ^j13T-gm=if)uMZAY`5WNv8FK6hzsD`fdrcZ$(meC4gvmF*IEZfEh!IFbR;ZeK;h zV2P++otUeBSZ!u)RcX(5&BG+;_7}D{Q`b3sWAep4vi?OyH_er(= z-yO?hye2iri#$ud{`sM4FHIY`T-osE3{TJVb486r$BMGaV)xQCV}Z>SdubXE&6a@W z$BYR@{B85e@67rd{C!pmjmIo9HPK}_zQQP{ZmpVl3sgsR&giZ6N=%cel3P~d9bb=G zilvj3!IFdQBd<+wafV9n?~+a?-uUY^Qtz&YcEcH8xj|lud{7?R1B2hxxDI|Cab*D9G9cYU><+~+{Awt1T8KvZi97w!PGlN zDZcXkfaesW7ARAw4qm-hl1}L4$K$=mLu@;<%g>B#;RZ!zXC4rj+k4-zZ@W!8UMr=k zZ(5#o#Rir|*E^A>ZG`;8eO_9sdx>)w3MW-^G$^xngs8al_%tKwzaRp{WwAEBZ2Q< zsu%`PpKkc?hCRQNiu=4L*mdN-)y6GV7OH}@w|wbV+^&GsH40DoaaGnUGOM|;BnEC? zC!x0DXjamh#MH`!`sd&d_c+ncysVlf1V2OXcBGh_J)7yn|wwJ zoyH)?VH)j%`Ygq-FU)$aLRDW$ z1R46CuXOAkUrw5irkgY?c*}jH_(%~Z_E;?HNVIAY@;L~y*JhKSu!GYz7yj{{jf`*w&BLbL5QfR_+&G8$Srx4 z6541ZU%{zGX3T+k0aSmn9H?E`)3IDgsh`Z~zt+6VAWJPg{JcHl2yLHu8)sg~cXlm3 znH2CQLq6O%?5$5Y$exZeEG}+MFvsp5K$D;rDWgCjCi845I`(Dcl@-U*)!CO?(-u!Y zG4xJz;WFam;NY*!zkFWopJg-n@xHGjYSB+*oB7>evYk{h8cMD5dGQasImEz116iZWIr|1MWaqe9{+%R9Ns~PUpTKGrnJ4_;;!e9PJ6<;wJhy);N?l^O?nU5;@}(d zd$%Nh&2M4ffA+aTik|vI6uKkhZKFJGE%Y-7?DPDb-y?ZT{@T$q-#e-B{d)jD)1s08 zt3gAb&i2DMhuSA^TgsCKyUtd_++O(=aMn)YGak705pyo}7kEAJq;BaVebBvqOdh$C{wg+R5a9o<$ZiLbSDmw|)jrHNiUktF>ej_mcD%;MR~mmslrA*9C;$tVr>H}AI4(>D)fEEj zz3Uif7+7X!hIZ`z)^T3MB~cI$TWM3I$*?1k9&gH*aJL=_@_v zdB$^KJ4E$~HoqmhQrNg%0FCrkMBmmZ?%eLzztU3yfvgxxfz+Z4|Ao*uQ2Vwv*! zHMN(+2p@HPvrl>%Idm-0wH(MG@xkM&#~JqnCam#m*Lm9d*Ie&Y*H53HSOJIf!gB=) zNe2k`;DBv*gv_(R+3N&;7h3731?H%jMZ;|75PU84qsXZfvD$=WItaj7CiZU7-n2p8 zJ+McPzt~{58fU2%Z~7>NU)N9Svuu|sC$i=qAm%Y+6ZG?!Al^em^0TGRlU{4BJ*zdy zhG8D;4ElxkkbyX?;Oj{PZ|fr>sX2Td>D62RaPAhW0?m32y!}w3Iw=3BPTj!`>t7_& z9U5J~|4tq`pG3RcdF9oX_q51bU9fyR?&5uzyHZB8nV#cxMp_%^XpVVG5Y7Wrg?et$ zrr+K#aUL5uv|puG377oAECeo!*KKg-*-qEZ<3&3-E#z^wdX;IpoH0P0!#~goA1!do zM17&2WYT*kdLuXeP`1-ihl?gjYdqA6xc$?5Xs5Da@OMh0n=NW{-udzY=F;)NaRb;% zQp+bZYN_diXO@SpEh?TqA9#r~!XzT(C^CvP&?40LYxdt8t`sgI$c3;9qc4AqROB%<()g~%4;}gCe@hDD|>c&x?~pNV(B1yy9^#_ zJW2^8j&ybFNZi(#hMeThgw%jYPzE<%8I3SG$J^ebC8PCQCm9FY6+yc^v0=fA%{w;y-@wUFU%j2Tphywl$ z+8#NLy=5+xRGHTIc>fmgOfN3Je~KYRxn*5MA1uKH)@fpJpr5-f{xjsd&1KQnJAcD_ z7E!*@1dR?dyhhh2@O;BJ^5xB0GYFj!ozCrQ8aJ&f>m*5EeU9w)4G9T!>Lf0*soVBG zEu7sq-^&Wzk1=wPs6(u2Ck4=Y?>j8kGShc;VG)YU+yjbM=pN3@&wFa+B{NLKAdpix z_Vq~?RycpQ?*TPdMksDL{yjitTeP=%_C?w3oa>bd)~B-X6d5~01;=8)t_xoD<~oq8 zzc!Jwyjap>)Olg@MCQ|I?oNAf!|_9d_Ex%}#BVpBvhkS$`(^I|3(b2b)YrA)TDtY( zUF%x5-hu4RTW-1h?x0GQb0zDry@%eW0lYVQ9cAvcKtRX)*7+rwZ`!o;n2vcBtK{B<%uo1zvX$-hImrpuIdXtqG1AR3!R7MKCw}GTey=-?t`3| z*b5Ezs@D?-^Pl}fs$@Le6GvrM=)QG@Gwjp|cyeEMq$Q5mjWMSv7j_`hyA0Rn8c4n& zlAwvflcP1`hCC{pimHnYqw|0C=+sLm3uBoj!KaQR-Yy%YVHs|(jGN!Hb5|Qvw$SpO zO^j5{`ng~#xNv-+^PVVxg=^3hCTX_A94&|0e1ln+%f!yv;|4vP{JsAzaxru{@wf5q zgITP1Q37AwipEF(D5^k~?0?5yJl%RTn4-I)BVT*dhdMjSOIWHt#CHA;I?{9JGLyA| zDL)b=^nn(D}^7Qj0z5Rz$rv%uGDr87bJ~yVJRC|5<#^I?u&* zp<#Y@X3LV`%*q)|f7IR?p3;9%#yyL?l^y}Ai{Qy+xPJ@dNIrQpgih&O%HC~lH#>B> ziHx4}O~TYB`M)p*m8s^+6g*Wg|4DRCJiRIKapbce$yQ<63;jjUN0RAj>V$Oed)tzy zg`!^Rm6n1G(DN4&=VK&)qe(35uD1GS}74@uF=5&p5xXBIz(M&&q2yxnT}nPiHBGH|gbbc&`OPHOqY_kTJW|C=FJZ1~YJ6h;GuNi+ZKX*Sm}>qGwA5x1 z>0RZz$kR*U<8rN@i%P6|Ewu6_;)$o*@q+m5hm@1eyM*Tr&Ef0~w`@xDHKw<`F70K> z@+@S@j{UNZ_Lgg3-b*a%nCQ=c26F!JvHeUdvt3n0SR^m!Zt2~aDK55ZIma(dr2M|U zTVWsLlyEE!Sb7}19)P->k)IMWlkz3fwsHNVX;4f`8i;})jhE@+N=>h=-9ZUWq7GViNHCk zKSA8V1qxJ%Abd<(TsyeqoEcwDh*>IyW5bFu+YF(RzxFTLZHVpxjz8pH62^z~lcj>& zoJ4~1^;DhNd+oVaUcRPio=rc(7a}isi>__`^)@Wsblu@EIRmb9>GIo9Dsh!;pQl1k zZT2#wiw<8EOEwtsOFE_fLRNPj3`aX*#xBV1#d(v~delfLu)K760f0x*CwqY0jVouW2vnSHI zgs|@0pLbj&9iuhV(dYG=NXJP|S;@_Fl4Q#yqJvmFNO+D zdd&XR8(q;L4<2$x%czHM9h8$+YNF1bH{xJc9&fa&V6HRkbW_V;L$jfWMGT#H*5V;& zZZ}M!DxUov%pI3)lkB60@JYP!pCD3jp&AJOp{O(S5{Tn@grgn9fEY%(MsIxi7 z3*$rmt5yWO@eJ7vvs4!%^YJ7;vCqs-va`J7*Up|O?VcwcP@4ob2x&hm`mEr+8Q|Z%=vlGSwH3|dmB#T+ zGQ)4>sH%9?ylLUj*q*gX)!XNm7e9XR*XWc@Ny<1{Or>cViXFQoCUp)fd?OewSlD@= zm>j-YlxSrSsaxRNr*7RGQu-Y|f9alh6Zm^UA@<$-Q#+<`>$A0LCcTKRs+n)EjekOm z;=eRfm|cDP>YkbP>42ZyA^6fk_Ag9*$L;mAqMBZwwT1}D6jBS)?F}s*!rQzD>~(y$ z^SuciG%}tg_E9*H{_*&IeFqbIVwbM>rFh`<(D&2=L2Er3BsIk!^Hq&ciNWT13NgzM zS*wN=sshg3yQ+?!W-6TR%WTtzJUrRj{U&xW#}%ntYZFQ>X0?4PrCgk-@|L7dW_ z@(kVn1Jzp4&s4fECf;7SYnn`)JYIhE@N;-eX1=67TGY}irTL|m+u;j^fr{3C8InW4 zBa=YF4Q&~pU!Y1Uo~FeB(XlgV`*WiB4y`W!C!sb0X^p4WK_%{{L7(6AW4!LyPJF|oym2Lxw?k_$al zfx<5tJ5Ab}mEQ{ya@Ks$9-6W^t=AW1RPSyHOmtCP0SHAysUzo0OUEuZU%~r*)5%` z;Jm99>^%dzl)DEkCpjJSe_%rBqRU$QE6QW{$~(0Yk*$O2o9AEatpqo0>KNixqf{YlYen(~@ia zNmyJ6p!K77@s#P{n_+gK?m}V`xAq*8_&kKdDL1%piaNg3`0z#vX`rIe`OVkRU8V-Jn*#5qwJ3gAU zj8kK&Yr*gV{L)nGYEJBMoSYb^`(Y`nKBoAE;V=^v@v+xWfXYr;)NzrcP#l**6|qmG%6kOyO*mfKf?q` z&U{X%h`z`8jv+un_(7P9{9uOzBlr55w} zl5SqI{?0i>*Osiyoq%bMd~#@W439zepwQ1Vvui5l(~(vbdMy=Z(pzO}{#^q=j%``z ztn|^I1{YeY+v4t~C7qu4ej|wkx0yemH~4*?PVJp5(iw^Tsj5gqkH?$XFt_@OKR`xW zK&;{ObDW5%?Yx5@w}CTP;hTq;y%SPjW%GlRm=*WBuXfRAU+AT$a!O`HtMw~sEt2>1 zL;3tswA)^?PHW8w!U!34+_NqTF|Co9{>Q&Pzq44cWm@@~mVRXOpvrsYoqX$SX`%1S z-mYy2n(o|B9X8M2lfE!zb@X4TkWB8LPIL+xK7VmWg_2Vf;}3Fn{cYC1tV<5XY{(G5 z4F?79zO=G8jJT~**pRpl+(xAD%la8{c&RyM3Wq5>LOtp>RHM{ZlE(R`UO>AOVrY!$ z@+Aus%hFe2jx3C~sm&8s4s)|Kj*udx4w(~A(#&B!XaI!N ztt_Yrgh6m|(381r`$N;yK+Q=Q3iH1X@vqFxw=D|K*syY}8?Dtm9d5bUJ=hjF8~hw@ zIk~XJFh>1&ac&xj+RL4c59d+%mcG}pnB91mE>$U~s3SZ7hwe~!4euV%%9+K3kY{Yv zdt%Z)Bl(o;>!PX4&Ae{cQ6yN1d-tX{Kh%?f52Ek8fk7^ms=w2lT9 zGM|F6rDK2%7lmzm2FRvi>9?f{6SNA8Tr$XD(>CR`zC}UaFNW0whtG(@=I%77&33y= z4A+pQhvvH82Af}#PTHhC92&U0p1iNUE7PByXxBX;#{HXAWBroorTIPJ{X4t^oxt0~ z!|c-{;4xnjx3K)!U)l4C#pwhU`-tP8tnXIuQ58kzvzF(s`VP$6K z#-i1hv^is|G`fqS7L1<9iSEuZ23%-RP^Bq@(d$*#X73X8bV%RhmcCJS9Q3)D3OOkpX1;aSX3$p2{*8qE*FuXOX7#*q(`uJM3Kcy3 zqs=Wy=Tk2kJr;WT$hoqYSkJuPy7EAKO}5EY2ED8+EA(;0WHTn<;|2JOY*K+cVV~ha zt$0kz!`y;e#v9+f_~Snx(!ZnD4*g@Uht4)HM%EGme>m5cHR$V0+LeMH=1wgfQU&rP z+ImXoDSZPvvz{ht)p&ng*EmGH7}=$PVp&ao+R8rW3DR30j>BcD{!8`Z!#)}Dw~1+p z=ph@=P%=FwqKp28fT!Ry24Ap171TYcwR3dCX=(S7oVmb83UhS9>D-+R{i0`Nlj1Z` zhCfGy{(^5@C9?<;)c9N|+QN|N%^$S8NX+%*LP?I%->n~hV~_ijB#kJFNG6I@KWx^} zd-IReKuT?5hft$xBpnA?nOq~@rJEl$Lc^l;n{<`^ineZ?4HKTdw_o-9Y=A@$%TizN z|2F)EXgHvC2pB5J%`cM>7Q#amu7Ao;6{GoO#7-6mbh=t-LHR3r1NCZ3YzvhW-3ak{ zLV76uMMhf?NQl2Z*N>Kk?y^!J)GCA@XceIL@u1=o)Rlw>)M$qA3s=;;RgF2fVD@5* zLlAT}d;&G!yQO}c4X@UXAtsHoV=@0NQB{Cd029IopzoBlnL0=J4bCw82n?h=Uh3V7 zNE_h{BDFKMJ0)XnTrJ-B(8F~ zpuQ4BTgO0gYsa5R=gCyIY4B>^_-(+$&7OmY`-|@PfGg4TE2Ea9J1O@YVqcGNq}S;h zt)rVi;)xTNYQ5q>8e2>&ykW$d$~utOpgVEieC675H{3--WAxSsvUm_YlKyy&tM>QA z9o1TTa-EmkV$FR2abZ$9J>}B3)SZpj(F@^qYmT?(XbX$m#Z~hnMvk5SwdjdTfE+y6 z!Eb>I-0s@$8)q8m&z5#pe-U)$<@;%cO3azzV&E@Vnx*+`^rf4x-CwRwUvPKVTZYo5 z1|I<6!stV9Gt*d}t{He2X*#MbkO_H>xyV>w%Qb9vy5d~YpWfd!h_FG=)BO*BE z;?>}#9%eV$YhIoV9?@5mLK|9`^7O~=NH3K z72owQ8yLRX;207Xev(d1on}bL=eoYPIC#RopSUZf;T*59i7v{Oxh#w-*^>r3sh+N} zeVLC=;a{US+Yy*k!G(KcQ#eoJUtHB~Ncx2ODQWSAYi_ZHFDt~XA4)jkW54>7k|@|# zyspb@dL{KLIvB=@B=%Rl#g|<77H^|j^lCO7#}MH?K~B)t51=M{DS1ocY-3h{1en6T zth!c4j2|UAbJ}Y%!4cQVVy?wqPstUVnFE5OQu@u*+&KKK<#e2)j$tPyPmM~Wspo|o zl}9jyRb0?kb*QOf8Chvk#*q-1x}lYqF4Mgx2(oO3mbURn49jZ@#R$p>IOf zoK;IRgln>-bXc{eUL-_Hm(`v!3?*YLX=_a9rwUOIiCLl)pr9;S=qYIZ-cG}=44;~$l0xEN8<}Wv%>M_;;rz@>A1^gJeIqr)(+6l=oG*m;a}NV^)&t& ztml|+JIG7kHM zU3wX480^?qQt_Y0f6i_gNDL$%a;D8^_0|^}!LDKLfVDYti#R#zKTW75;m5d??@7bg z4c3vS+sK3AA(8)5j&M4r;o5WH3*V zPS&n?!li*Aou6Qdm4oaykDwz{jbQs0k%0-aeQU4su&HN=BPw1=XYtQc%r;;I?Go|E zFSo?PUQ_*ampra|wxFKSq~(95p6zqiwuucB>X)50g-dqC7JA`7Wd8sc_~xxcXoj&b zL*{Ln|)OLBU% z->jx@C;tL{37M#;0a)rMLYQ^0zfdH;_Wj#jR=dN11W63*u z6zra}tz!6%lB}rYt)%WUY4WdXyIk(ki{@GQSG6{>siIQl%KplZYWiI;A&lwOU)jla zIO}OHI00YSc;%_2Oos%&ll(_DT_BK7&vftq09x_QS4qTePT%zL%~MCHCm2?9)t>xe zQ%P{f+3ua{Tys>?zGy5VHl8_a=>@qBR&vFcT+Y&-0g;bId)-^V*EL-!z>n$Yv?p?M zljEAMlTu(dRPS{+T-9{P40vhX(~e`Fu9@;}@bla(_x}K?W!E)bD3KzVf~RKkxh^!) z)BYc#vcb<=P24iVr(w@qOqRyjQ@5-9a@Esb56s+o6uh-O{<+_$mY=2!soJIEE1I^N z;^^6rAg^V{57Rcuc6^h)UzN{Vz)Wo_cBRVatzj%bDVW45-`2e9=5>ezBia?W)RBwr z36bIc7HzHdtSVW7Ac8w4nK6Z1DZy{yHJLW}=c#7UOgHeZ)tqYw+Xz1|x|?eCyl%PQ zZg@tnRy8eJ=_Q`HLy!Jr7ugs)OqA`5a=Gf;xP46ZR#t3bQrMG-@=fr{!SozSmT`zt zbCqQKPN2Y3vdOHSZb12z*0Gc5c}i_EGw=xgsccqnqMy$a&1F)6A21&4Hmfs9pi0f< z;GD5|FW zhiNvEfay;3>cDBmj-L-6t6kX6OMacZVeN3nB~JAjn>LvaZt>WXuX8Jc_er;WmebmM z1!v^2vF6v(Dhc^P9Tw;1sgcV46`)9@Jk|ZS9Vht7+B;9xO<&pmvv^GQFsq|756Smh z{k&P}Bbv6A11#gZPst9GT(z`zWcX_S$d`{7C0!Aum&_~Wgkyt+UJ7P~R}>z(>5!ID1;cevLc7FRWW9q#Eq$vMyCT)5lgmad5ds&}mZ zw>51Yp}1~Bz3N}bm2p0u`X;W+C`jy*DYN#iPl#wYh3ItNy~qu3YMZHs(1eYtz~o9vWDTf2{~$G zo%W7z9hJ3b{b5quJS^T=+ZWqMASv0L))g&5GYQ$JHEUzf;X4??^b1J<4`7#_89Lr( z8=p0q&2rXHwmiq8cQUYj0y+GrboGr|5^_D(yMKcx(%K~DX7ayQV>3$vPpiN6Zvoe~OVJLRiwL92K96tEO^trN74Fjte&`s;9aO zJ4f_h?KXG?aQ%6ZTccZqrQ0)cuKKudsVZ(fC)n)r<7m<+)GTWnld)KSX;g`x7fSX=jbFuk8N- zsn?hIqx7dn;=-@(GXDUIJ59z06ZV~d;|iKz%{x_}l(ZfdH3~|IO`xB=ZHEkY#R<}QOx%n8pGvk^1Gr{jZO8&^5Yo4x(Tx7Hv z@>jZLa@NtE!KQtJc1&ScMsYvk!q;`{f5$a#5}==wQ@*EK=dGeTa?+jY)y-Q+%n!=F z>PY0RqmlbM^hwU9M>Sm)*@2a3I|(MaYUsomJjZ2!XC-pg(duNzJrnkFG0R&?01<#v zb1&C5T`Lj+$8~>aBQeQeOd}g7$gBH#AJ-jiF#iCP@TL5kvmDj5vzTukllEA?S1o-l z#AUx_J3=_B=^{HT*?;ontEC9wdZ%>qc;v69473G%H8Ou(mGsfZ-*r0{$0c1ZFmeiZ zGC8X0C9w1Xp$B|9cfaz9RN86WVcW!!UA)5s(qJHox1 z*ELHJCK^B8I~yFg77U3k`zEBC?fOYxC=xt(1ZQ^a^ZEn&zu!LwJ}f>rQ%> zk|wz=zC7?8sriuYXQ^~+Mzpb07K3bs;YkGhtwRxhz8aHnRc8p5rt@+a9l9bDBd z3rU8n*z3uQ?VTA4Y-(&`>O>u-p7NU)efBY}Y~9jAc8k+}VOrWmr)1?d%~FBmYIcr& zd4G)ELBY8Ru9Jj>% zSv*1EPSvcoVuTI|Dr(~wHZlej?Hbf8s-;0Vk9C`7HN~5o3oR<KRLHOCDb`27;eJ1Q`MUoA#a&`gLH1YnCF4KE4xZ^GG%NcV z=@fRH0G)w9Vswf-Po5Y8e#)I}Wcv>#KV?hBN9p68s{Y!Y8C28EeJcLjPKtjmBPO5O zS@~*osyj^)mgPTj*0X+_0s~ThQ>A8f@fm8rwK~>M)3Jt_^je>lGP8D?4srHZ_L#=5 zoPWv__L%0Yrnf)SSN532`aGE;J(c~;bhqmYx;Z%73bXRYZwnmtbaRoi7N_MpIqK-& z_$&Ki(#B8G4E-nUto+dHYZ}@p=-l;J_Lqi7HGLij(0x_?sW>@m=)IUgR(@Dm=BuFx z88pT`m7kf8oBVTC(DVKf`z!lu^p1MEDCDy~iThdUE0(s298=|A+i^PGan{jVbFleI zSN2>^u3FkKIV=awKW;_IeXbjg4S@duhZ$CWRI$ZdLK~(Djsz?FQ!AFXioj#TD*nt~ zvB_IS+Sm>A!hYRqagsQy=|&8e#muk*3!($VDg1$Hm417*V90evm>g#;$A+vE;RY&nNIM$Tvc@8 z#@|T__F2N$CB=aP2#;i((($p!TE+%P*9+_={Py-Si#_b%6DpTk!^MtzgCtn`tETSpPVQgUnm0IqtrrK9G;c3k(zJzF;sfg9J!@Rxda1Rk7}d0R>B4ravCmT7(sF0AZ8k7{xj#@%rp7fW z4a7%8+Ix;S}} zWn}7RWRFxjv#7?549X;xi^LKR70(+~k2MxcRUq=3ZHhUd0%OrjWNk--$SXajti=x; z@Koi0#?)~W{;N9Fnx_0S(N!27R1-8031Ksto)PO3V?uIL~9RQ;AD z;}mt1reqQ5uk2o&RW<|(+!XH5MsKh@i2Emcbd2g)5IzqZPBiaNv*hNtbR`thIW zh~=Z~pR%uBJM2{0G;#vJvZdj{Q((tQBd28jsXreUPt(B3Vt(3_@qet}Wf_HkYG21# zKFCf7;a}R%PE4I(Gc5cm`%aaUtXeV~_*eF``q@6grxBkue`uD|{>Gn_Dm+{M7 zm9(MQ`C(c4+5K4NtE3kh+x80n>b*bLEo~bR7#02JNnDlmV-vF;VPD+O>Tz6X&FIYe z1!w2~015c-`s29Kw-fU8&KAFVU&mZE^kCj8%AdOG{=1Gk`Y<^Z{{RZl&Y!Q7ioT2_ z{HgnwrE*o#+Bl{@+$;OzeH=F$O*lW(D*o+ftly3+oh_nTDdAt-y(5C-Nd|sX3ct2$$l|Bm&wuAx;6ZTW9maUt} z%GVwnT<@}Y$j_R++x>OTUYmr73ioF4L*KZRX&tTiedKEjJ zD;KblI~4A{af_PFz=eAmSUswCS;Bv;DmA0_epb6x=~%tE<)@W97D~v-IZIC&yvgH^6qg%{5CoV@%Og|Y6eBAgt7^DG zg*#CRYUF=SuL5{pUu$UcO{O65rrKfv6USsCAQt3xO&Pon$@Ik>(YJtuHvv3!K}V03 z1t4}!v}Qn)gxj&7>odt$Ybw31iP}ENv~#=wFcWB_h7)SWWukZr?ZwHgD*@R#Tdd?_ z{{W>;tY4}*t=quiHlr7TJS#2Ax8s_q0$?rh_%L`IxLZ%G%UWhyKFG39SX2XV9a4Nh zu4;`Kz)GCI{#ZN+;Ysn%{b5s)=&eZ{)j%YII;8knHOp14>^M!V+3N~`XB|puWR6OW zZo`4XBZlRm7eEVg_|GqnN`P%R>aNp|$0cA4k`rojaa3z$;B`$|95(<-$L&{qWx;cY z}R(=ncaQTvzzuss{c#Ej5wLZ~$z8wYL){xT}G+#xsR4)RH+aS|VU_ zthZPA;JE|Cc0cx3na3SqB;)@8aE(bZ$5;tC=$myvu17QyWCP0SEynnI*A;L#3@a-fez`6h-O&U80A*{7rEymP0|8x6;hCa|mk0s=c@5(FG{O|029&08FKt;Tstj2*#G>!0z9 z`BY&35xMc5K#X6mdZ14TGIt+zzZU#e{{Tu)g!;;-MK8xm^_#{OV~^DvnV#s Date: Thu, 29 Feb 2024 10:06:09 -0500 Subject: [PATCH 225/281] Updated main translation file after changing some strings --- view/lang/C/messages.po | 150 +++++++++++++++++++--------------------- 1 file changed, 71 insertions(+), 79 deletions(-) diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index aeaa39fc86..2857c9cd44 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.03-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-24 15:29+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -244,7 +244,7 @@ msgstr "" msgid "Discard" msgstr "" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "" @@ -315,7 +315,7 @@ msgstr "" #: src/Module/Profile/Profile.php:274 src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "" @@ -1807,7 +1807,7 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "" @@ -1925,42 +1925,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2030,7 +2030,7 @@ msgstr "" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "" @@ -2069,15 +2069,15 @@ msgstr "" msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "" @@ -2106,7 +2106,7 @@ msgstr "" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "" @@ -2128,15 +2128,15 @@ msgstr "" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "" @@ -6892,7 +6892,7 @@ msgid "Actions" msgstr "" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "" @@ -8875,7 +8875,7 @@ msgstr "" msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8886,11 +8886,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Content Settings" msgstr "" #: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "" @@ -12696,124 +12696,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12853,19 +12829,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" From bae7644d6f0207234a98d3cc172dae7f46d81efa Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Mar 2024 19:21:14 +0000 Subject: [PATCH 226/281] Issue 13955: Check for publish date upon receival --- src/Content/Item.php | 31 ++++++++++++++++++++++++ src/Model/Item.php | 34 +-------------------------- src/Protocol/ActivityPub/Receiver.php | 11 ++++++++- src/Protocol/Diaspora.php | 10 ++++---- src/Protocol/Feed.php | 2 +- 5 files changed, 48 insertions(+), 40 deletions(-) diff --git a/src/Content/Item.php b/src/Content/Item.php index e9f4ef8738..bfc3979c5a 100644 --- a/src/Content/Item.php +++ b/src/Content/Item.php @@ -1105,4 +1105,35 @@ class Item Tag::store($toUriId, $receiver['type'], $receiver['name'], $receiver['url']); } } + + /** + * Check if the item is too old + * + * @param string $created + * @param integer $uid + * @return boolean item is too old + */ + public function isTooOld(string $created, int $uid = 0): bool + { + // check for create date and expire time + $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0); + + if ($uid) { + $user = DBA::selectFirst('user', ['expire'], ['uid' => $uid]); + if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) { + $expire_interval = $user['expire']; + } + } + + if (($expire_interval > 0) && !empty($created)) { + $expire_date = time() - ($expire_interval * 86400); + $created_date = strtotime($created); + if ($created_date < $expire_date) { + Logger::notice('Item created before expiration interval.', ['created' => date('c', $created_date), 'expired' => date('c', $expire_date)]); + return true; + } + } + + return false; + } } diff --git a/src/Model/Item.php b/src/Model/Item.php index 3d748abfba..6fba99853b 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -689,38 +689,6 @@ class Item return true; } - /** - * Check if the item array is too old - * - * @param array $item Item record - * @return boolean item is too old - */ - public static function isTooOld(array $item): bool - { - // check for create date and expire time - $expire_interval = DI::config()->get('system', 'dbclean-expire-days', 0); - - $user = DBA::selectFirst('user', ['expire'], ['uid' => $item['uid']]); - if (DBA::isResult($user) && ($user['expire'] > 0) && (($user['expire'] < $expire_interval) || ($expire_interval == 0))) { - $expire_interval = $user['expire']; - } - - if (($expire_interval > 0) && !empty($item['created'])) { - $expire_date = time() - ($expire_interval * 86400); - $created_date = strtotime($item['created']); - if ($created_date < $expire_date) { - Logger::notice('Item created before expiration interval.', [ - 'created' => date('c', $created_date), - 'expired' => date('c', $expire_date), - '$item' => $item - ]); - return true; - } - } - - return false; - } - /** * Return the id of the given item array if it has been stored before * @@ -1032,7 +1000,7 @@ class Item if ( !empty($item['direction']) && in_array($item['direction'], [Conversation::PUSH, Conversation::RELAY]) && - empty($item['origin']) && self::isTooOld($item) + empty($item['origin']) && DI::contentItem()->isTooOld($item['created'], $item['uid']) ) { Logger::info('Item is too old', ['item' => $item]); return 0; diff --git a/src/Protocol/ActivityPub/Receiver.php b/src/Protocol/ActivityPub/Receiver.php index 07eca4a3e7..fd5e05fb62 100644 --- a/src/Protocol/ActivityPub/Receiver.php +++ b/src/Protocol/ActivityPub/Receiver.php @@ -634,6 +634,16 @@ class Receiver if (is_array($activity['as:object'])) { $attributed_to = JsonLD::fetchElement($activity['as:object'], 'as:attributedTo', '@id'); + $published = JsonLD::fetchElement($activity['as:object'], 'as:published', '@value'); + $object_type = JsonLD::fetchElement($activity['as:object'], '@type'); + $id = JsonLD::fetchElement($activity, '@id'); + $object_id = JsonLD::fetchElement($activity, 'as:object', '@id'); + + if (!empty($published) && !empty($object_id) && in_array($type, ['as:Create', 'as:Update']) && in_array($object_type, self::CONTENT_TYPES) + && ($push || ($completion != self::COMPLETION_MANUAL)) && DI::contentItem()->isTooOld($published) && !Post::exists(['uri' => $object_id])) { + Logger::debug('Activity is too old. It will not be processed', ['push' => $push, 'completion' => $completion, 'type' => $type, 'object-type' => $object_type, 'published' => $published, 'id' => $id, 'object-id' => $object_id]); + return true; + } } else { $attributed_to = ''; } @@ -652,7 +662,6 @@ class Receiver // For announced "create" activities we remove the middle layer. // For the rest (like, dislike, update, ...) we just process the activity directly. $original_actor = ''; - $object_type = JsonLD::fetchElement($activity['as:object'] ?? [], '@type'); if (($type == 'as:Announce') && !empty($object_type) && !in_array($object_type, self::CONTENT_TYPES) && self::isGroup($actor)) { $object_object_type = JsonLD::fetchElement($activity['as:object']['as:object'] ?? [], '@type'); if (in_array($object_type, ['as:Create']) && in_array($object_object_type, self::CONTENT_TYPES)) { diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 5df05736cc..15068fd8ad 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -1602,7 +1602,7 @@ class Diaspora $datarray['diaspora_signed_text'] = json_encode($data); } - if (Item::isTooOld($datarray)) { + if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) { Logger::info('Comment is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]); return false; } @@ -1860,7 +1860,7 @@ class Diaspora $datarray['diaspora_signed_text'] = json_encode($data); } - if (Item::isTooOld($datarray)) { + if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) { Logger::info('Like is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]); return false; } @@ -2023,7 +2023,7 @@ class Diaspora // Diaspora doesn't provide a date for a participation $datarray['changed'] = $datarray['created'] = $datarray['edited'] = DateTimeFormat::utcNow(); - if (Item::isTooOld($datarray)) { + if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) { Logger::info('Participation is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]); return false; } @@ -2393,7 +2393,7 @@ class Diaspora self::fetchGuid($datarray); - if (Item::isTooOld($datarray)) { + if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) { Logger::info('Reshare is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]); return false; } @@ -2738,7 +2738,7 @@ class Diaspora self::fetchGuid($datarray); - if (Item::isTooOld($datarray)) { + if (DI::contentItem()->isTooOld($datarray['created'], $datarray['uid'])) { Logger::info('Status is too old', ['created' => $datarray['created'], 'uid' => $datarray['uid'], 'guid' => $datarray['guid']]); return false; } diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index e0ab3dd49a..127b3342e9 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -563,7 +563,7 @@ class Feed } elseif (!Item::isValid($item)) { Logger::info('Feed item is invalid', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]); continue; - } elseif (Item::isTooOld($item)) { + } elseif (DI::contentItem()->isTooOld($item['created'], $item['uid'])) { Logger::info('Feed is too old', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]); continue; } From ae37c44cc0feee277b9225565ca909ca739b6a9a Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 3 Mar 2024 17:58:20 +0000 Subject: [PATCH 227/281] Oembed: Some more cleanup --- src/Content/OEmbed.php | 2 +- src/Model/Post/Media.php | 2 +- src/Util/ParseUrl.php | 3 --- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Content/OEmbed.php b/src/Content/OEmbed.php index 9af01b76da..5e6b166234 100644 --- a/src/Content/OEmbed.php +++ b/src/Content/OEmbed.php @@ -225,7 +225,7 @@ class OEmbed '$turl' => BBCode::proxyUrl($oembed->thumbnail_url, BBCode::INTERNAL, $uriid, Proxy::SIZE_SMALL), ]); } else { - $ret = $oembed->html; + $ret .= Proxy::proxifyHtml($oembed->html, $uriid); } break; diff --git a/src/Model/Post/Media.php b/src/Model/Post/Media.php index 346a6a1d00..a22b9fba6b 100644 --- a/src/Model/Post/Media.php +++ b/src/Model/Post/Media.php @@ -365,7 +365,7 @@ class Media */ private static function addPage(array $media): array { - $data = ParseUrl::getSiteinfoCached($media['url'], false); + $data = ParseUrl::getSiteinfoCached($media['url']); $media['preview'] = $data['images'][0]['src'] ?? null; $media['preview-height'] = $data['images'][0]['height'] ?? null; $media['preview-width'] = $data['images'][0]['width'] ?? null; diff --git a/src/Util/ParseUrl.php b/src/Util/ParseUrl.php index d12d84278b..093a8233d0 100644 --- a/src/Util/ParseUrl.php +++ b/src/Util/ParseUrl.php @@ -23,7 +23,6 @@ namespace Friendica\Util; use DOMDocument; use DOMXPath; -use Friendica\Content\OEmbed; use Friendica\Content\Text\HTML; use Friendica\Protocol\HTTP\MediaType; use Friendica\Core\Hook; @@ -165,8 +164,6 @@ class ParseUrl * \ * * @param string $url The url of the page which should be scraped - * @param bool $do_oembed The false option is used by the function fetch_oembed() - * to avoid endless loops * @param int $count Internal counter to avoid endless loops * * @return array which contains needed data for embedding From 7471513269ff5c696ae0fd926f3d65d5fc41f718 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Mar 2024 20:58:40 +0000 Subject: [PATCH 228/281] Issue 13940: handle posts that can't be found in contexts --- src/Module/Api/Mastodon/Statuses/Context.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/Module/Api/Mastodon/Statuses/Context.php b/src/Module/Api/Mastodon/Statuses/Context.php index 58a3f085b1..3a9ad27088 100644 --- a/src/Module/Api/Mastodon/Statuses/Context.php +++ b/src/Module/Api/Mastodon/Statuses/Context.php @@ -129,7 +129,11 @@ class Context extends BaseApi $display_quotes = self::appSupportsQuotes(); foreach (array_slice($ancestors, 0, $request['limit']) as $ancestor) { - $statuses['ancestors'][] = DI::mstdnStatus()->createFromUriId($ancestor, $uid, $display_quotes); + try { + $statuses['ancestors'][] = DI::mstdnStatus()->createFromUriId($ancestor, $uid, $display_quotes); + } catch (\Throwable $th) { + $this->logger->info('Post not fetchable', ['uri-id' => $ancestor, 'uid' => $uid, 'error' => $th]); + } } $descendants = array_diff(self::getChildren($id, $children), $deleted); @@ -137,7 +141,11 @@ class Context extends BaseApi asort($descendants); foreach (array_slice($descendants, 0, $request['limit']) as $descendant) { - $statuses['descendants'][] = DI::mstdnStatus()->createFromUriId($descendant, $uid, $display_quotes); + try { + $statuses['descendants'][] = DI::mstdnStatus()->createFromUriId($descendant, $uid, $display_quotes); + } catch (\Throwable $th) { + $this->logger->info('Post not fetchable', ['uri-id' => $descendant, 'uid' => $uid, 'error' => $th]); + } } $this->jsonExit($statuses); From 52cc8ab73b867b2d920a2ab40a237f9fa166b13f Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 4 Mar 2024 07:30:04 +0000 Subject: [PATCH 229/281] Issue 13765: Fixed creation of self user contact for approval --- src/Model/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index e673822ef2..bc235a3e35 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -755,7 +755,7 @@ class Contact $user = DBA::selectFirst( 'user', ['uid', 'username', 'nickname', 'pubkey', 'prvkey'], - ['uid' => $uid, 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false] + ['uid' => $uid, 'account_removed' => false, 'account_expired' => false] ); if (!DBA::isResult($user)) { return false; From 38141edbea2dbbdde591eb23baf0442d56fe8ea1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 4 Mar 2024 16:40:13 +0100 Subject: [PATCH 230/281] translation updates --- view/lang/ar/messages.po | 1340 ++++++++++++++++---------------- view/lang/ar/strings.php | 12 +- view/lang/bg/messages.po | 1336 +++++++++++++++---------------- view/lang/bg/strings.php | 2 - view/lang/ca/messages.po | 1336 +++++++++++++++---------------- view/lang/ca/strings.php | 2 - view/lang/cs/messages.po | 1336 +++++++++++++++---------------- view/lang/cs/strings.php | 3 - view/lang/de/messages.po | 1373 ++++++++++++++++---------------- view/lang/de/strings.php | 91 ++- view/lang/eo/messages.po | 1336 +++++++++++++++---------------- view/lang/eo/strings.php | 2 - view/lang/es/messages.po | 1340 ++++++++++++++++---------------- view/lang/es/strings.php | 12 +- view/lang/fr/messages.po | 1459 +++++++++++++++++----------------- view/lang/fr/strings.php | 132 ++-- view/lang/gd/messages.po | 1340 ++++++++++++++++---------------- view/lang/gd/strings.php | 12 +- view/lang/hu/messages.po | 1596 +++++++++++++++++++------------------- view/lang/hu/strings.php | 259 ++++++- view/lang/is/messages.po | 1336 +++++++++++++++---------------- view/lang/is/strings.php | 2 - view/lang/it/messages.po | 1340 ++++++++++++++++---------------- view/lang/it/strings.php | 12 +- view/lang/ja/messages.po | 1336 +++++++++++++++---------------- view/lang/ja/strings.php | 3 - view/lang/nl/messages.po | 1336 +++++++++++++++---------------- view/lang/nl/strings.php | 3 - view/lang/pl/messages.po | 1340 ++++++++++++++++---------------- view/lang/pl/strings.php | 12 +- view/lang/ro/strings.php | 4 +- view/lang/ru/messages.po | 1340 ++++++++++++++++---------------- view/lang/ru/strings.php | 12 +- view/lang/sv/messages.po | 1336 +++++++++++++++---------------- view/lang/sv/strings.php | 3 - 35 files changed, 12067 insertions(+), 11667 deletions(-) diff --git a/view/lang/ar/messages.po b/view/lang/ar/messages.po index ad78d2e229..ce965e725f 100644 --- a/view/lang/ar/messages.po +++ b/view/lang/ar/messages.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: abidin toumi , 2020-2021,2023\n" "Language-Team: Arabic (http://app.transifex.com/Friendica/friendica/language/ar/)\n" @@ -46,14 +46,14 @@ msgstr "تعذر جلب العنصر." msgid "Empty post discarded." msgstr "رُفضت المشاركة الفارغة." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "لم يُعثر على العنصر." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -76,14 +76,14 @@ msgstr "لم يُعثر على العنصر." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "رُفض الإذن." @@ -248,7 +248,7 @@ msgstr "فشل استرجاع الرسائل." msgid "Discard" msgstr "ارفض" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "الرسائل" @@ -293,20 +293,20 @@ msgstr "ارفع صورة" msgid "Insert web link" msgstr "أدرج رابط ويب" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "يرجى الانتظار" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -320,7 +320,7 @@ msgstr "يرجى الانتظار" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "أرسل" @@ -395,7 +395,7 @@ msgstr "الملاحظات الشخصية مرئية لك فقط." msgid "Save" msgstr "احفظ" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -408,99 +408,99 @@ msgid "User not found." msgstr "لم يُعثر على المستخدم." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "ألبومات الصور" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "الصور الأخيرة" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "ارفع صور جديدة" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "الجميع" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "معلومات المتراسل غير متوفرة" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "لم يُعثر على الألبوم." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "حُذف الألبوم بنجاح" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "ألبوم فارغ." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "فشل حذف الصفحة." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "صورة" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "ذكر %3$s %1$s في %2$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "رُفض الوصول العلني." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "لم تختر صورًا" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "الحد الأقصى لحجم الصورة المسموح به هو %s" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "ارفع صورًا" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "اسم الألبوم الجديد: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "أو اختر ألبومًا موجودًا:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "لا تظهر مشاركة حالة لهذا الملف المرفوع" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "الأُذونات" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "أتريد حذف هذا الألبوم وكافة محتوياته؟" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "احذف الألبوم" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -510,133 +510,133 @@ msgstr "احذف الألبوم" msgid "Cancel" msgstr "ألغ" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "عدّل الألبوم" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "احذف الألبوم" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "اعرض الأحدث أولًا" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "اعرض الأقدم أولًا" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "اعرض الصور" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "رُفض الإذن. قد يكون الوصول إلى هذا العنصر مقيدا." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "الصورة غير متوفرة" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "أتريد حذف هذه الصورة؟" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "احذف الصورة" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "اعرض الصورة" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "عدّل الصورة" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "احذف الصورة" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "استخدامها كصورة الملف الشخصي" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "صور خاصة" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "اعرض بالحجم الكامل" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "الوسوم: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[اختر وسومًا لإزالتها]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "اسم الألبوم الجديد" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "وصف الصورة" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "أضف وسمًا" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "مثال: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "لا تُدر" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "أدر باتجاه عقارب الساعة" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "أدر عكس اتجاه عقارب الساعة" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "هذا أنت" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "علِّق" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "معاينة" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "يحمل..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "اختر" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -645,23 +645,23 @@ msgstr "اختر" msgid "Delete" msgstr "احذف" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "أعجبني" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "أعجبني (بدِّل)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "لم يعجبني" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "لم يعجبني (بدِّل)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "خريطة" @@ -802,18 +802,18 @@ msgid "All contacts" msgstr "كل المتراسلين" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "متابِعون" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "متابَعون" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1091,7 +1091,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "البريد الإلكتروني" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "دياسبورا" @@ -1617,29 +1617,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1817,7 +1825,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1826,12 +1834,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "اعرض أقلّ" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "اعرض المزيد" @@ -1839,7 +1847,7 @@ msgstr "اعرض المزيد" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "حدث" @@ -1847,7 +1855,7 @@ msgstr "حدث" msgid "status" msgstr "حالة" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "صورة" @@ -1857,36 +1865,36 @@ msgstr "صورة" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s وسم %3$s %2$s بـ %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "تابع المناقشة" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "اعرض الحالة" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "اعرض الملف الشخصي" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "اعرض الصور" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "مشاركات الشبكة" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "اعرض المتراسل" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "أرسل رسالة خاصة" @@ -1922,7 +1930,7 @@ msgid "Languages" msgstr "اللغات" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "اقترن\\تابع" @@ -1976,42 +1984,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "الملف شخصي" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "صفحة ملفك الشخصي" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "الصور" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "صورك" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "الوسائط" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "مشاركاتك التي تحوي وسائط" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "التقويم" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2081,7 +2089,7 @@ msgstr "الوسوم" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "المتراسلون" @@ -2120,15 +2128,15 @@ msgstr "شروط الخدمة" msgid "Terms of Service of this Friendica instance" msgstr "شروط الخدمة لهذا المثيل" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "الشبكة" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "محادثات أصدقائك" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "مشاركاتك ومحادثاتك" @@ -2157,7 +2165,7 @@ msgstr "علّمه كمُشاهَد" msgid "Mark all system notifications as seen" msgstr "علّم كل تنبيهات النظام كمقروءة" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "بريد خاص" @@ -2179,15 +2187,15 @@ msgstr "إدارة الصفحات الأخرى" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "الإعدادات" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "إعدادات الحساب" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "أدر/عدّل الأصدقاء والمتراسلين" @@ -2225,14 +2233,6 @@ msgstr "تصفح" msgid "Site map" msgstr "خريطة الموقع" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "التضمين معطل" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "محتوى مضمن" - #: src/Content/Pager.php:216 msgid "first" msgstr "الأول" @@ -2249,38 +2249,38 @@ msgstr "التالي" msgid "last" msgstr "الأخير" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "صورة" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "رابط المصدر" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "أنقر للفتح/للإغلاق" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "كتب $1:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "محتوى مشفر" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "ميفاق المصدر غير صالح" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "ميفاق الرابط غير صالح" @@ -2367,49 +2367,49 @@ msgstr "الدليل العالمي" msgid "Local Directory" msgstr "الدليل المحلي" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "الجميع" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "العلاقات" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "كل المتراسلين" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "الموافيق" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "كل الموافيق" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "المجلدات المحفوظة" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "كلّ شيء" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "الفئات" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2420,41 +2420,41 @@ msgstr[3] "%d متراسلين مشتركين" msgstr[4] "%d متراسلًا مشتركًا" msgstr[5] "%d متراسل مشترك" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "الأرشيفات" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "الأشخاص" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "المنظّمات" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "الأخبار" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "أنواع الحسابات" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "الكل" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2512,12 +2512,12 @@ msgstr[5] "الوسوم الشائعة (آخر %d ساعة)" msgid "More Trending Tags" msgstr "المزيد من الوسوم الشائعة" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "ذكر" @@ -2533,7 +2533,7 @@ msgid "Matrix:" msgstr "مايتركس:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2545,13 +2545,13 @@ msgstr "الموقع:" msgid "Network:" msgstr "الشبكة:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "ألغِ المتابعة" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2924,27 +2924,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick يدعم GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "قاعدة البيانات قيد الاستخدام." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "يتعذر الاتصال بقاعدة البيانات." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2954,37 +2950,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "الإثنين" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "الثلاثاء" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "الأربعاء" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "الخميس" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "الجمعة" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "السبت" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "الأحد" @@ -3322,47 +3318,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "موافق" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "منظّمة" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "مُرحِل" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "رابط الملف الشخصي غير المسموح." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "نطاق محجوب" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "رابط الاتصال مفقود." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "تعذر إضافة المتراسل. تحقق من بيانات اعتماد الشبكة المستهدفة في الإعدادات -> صفحة الشبكات الاجتماعية." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "عنوان الملف الشخصي لا يوفر معلومات كافية." @@ -3410,12 +3410,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "يبدأ:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "ينتهي:" @@ -3433,17 +3433,17 @@ msgid "today" msgstr "اليوم" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "شهر" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "أسبوع" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "يوم" @@ -3488,76 +3488,76 @@ msgstr "" msgid "g:i A" msgstr "" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "أظهر الخريطة" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "اخف الخريطة" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "عيد ميلاد %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "%s عيد ميلاد سعيد" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "اللغات المكتشفة في هذه المشاركة:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "النشاط" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "تعليق" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "مشاركة" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "تحذير من المحتوى: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "بايت" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3568,7 +3568,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3579,7 +3579,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3590,7 +3590,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3601,12 +3601,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "اعرضه في صفحة منفصلة" @@ -3614,7 +3614,7 @@ msgstr "اعرضه في صفحة منفصلة" msgid "[no subject]" msgstr "[بدون موضوع]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "صور الحائط" @@ -3906,11 +3906,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "صور الملف الشخصي" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3918,7 +3918,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tعزيزي %1$s،\n\t\t\tأنشأ مدير %2$s حساب لك." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3949,12 +3949,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "تفاصيل التسجيل لـ %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3969,12 +3969,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tعزيزي %1$s،\n\t\t\t\tشكرا لك على التسجيل في %2$s. حسابك معلق حتى يوافق عليه المدير.\n\n\t\t\tتفاصيل الولوج هي كالتالي:\n\n\t\t\tالموقع:\t%3$s\n\t\t\tاسم المستخدم:\t\t%4$s\n\t\t\tكلمة المرور:\t\t%5$s\n\t\t\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "التسجيل في %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3983,7 +3983,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\t عزيزي %1$s،\n\t\t\t\tشكرا لك على التسجيل في %2$s. نجح إنشاء حسابك.\n\t\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -4014,7 +4014,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -4039,14 +4039,14 @@ msgid "Disable" msgstr "عطّل" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "فعّل" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4086,12 +4086,12 @@ msgid "Addon %s failed to install." msgstr "فشل تثبيت إضافة %s." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "احفظ الإعدادات" @@ -4318,8 +4318,8 @@ msgid "Enable Debugging" msgstr "فعّل التنقيح" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4480,269 +4480,269 @@ msgstr "أُنشئ" msgid "Priority" msgstr "الأولوية" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "لا توجد سمة مخصصة للهاتف" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (اختباري)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "لا توجد صفحة مجتمع" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "المشاركات العلنية لمستخدمي هذا الموقع" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "المشاركات العلنية من الشبكة الموحدة" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "المشركات العلنية من الشبكة الموحدة والشبكة المحلية" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "مثيل متعدد المستخدمين" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "مغلق" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "تتطلب الحصول على موافقة" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "افتح" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "لا تتحقق" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "تحقق من الإصدار المستقر" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "تحقق من الإصدار التطويري" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "لا شيﺀ" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "المُتراسِلون المحليون" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "المتفاعلون" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "موقع" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "معلومات عامة" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "أعد نشر المستخدمين في الدليل" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "التسجيل" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "رفع الملف" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "السياسات" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "متقدم" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "دليل المتراسلين المكتشفين تلقائيًا" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "الأداء" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "مهمة" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "ترحيل الرسالة" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "هذا الخادم ليس مشترك في أي مرحلات حاليًا." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "هذا الخادم مشترك حاليًا في المرحلات التالية:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "اسم الموقع" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "بريد المرسل" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "عنوان البريد الإلكتروني الذي سيستخدمه الخادم لإرسال رسائل التنبيه." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "اسم حساب النظام" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "اسم حساب النظام الداخلي المستخدم لتنفيذ طلبات ActivityPub. يجب أن لا يكون هذا الاسم محجوز. إذا عُين لا يمكن تغييره." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "اللافتة/الشعار" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "شعار\\لافتة البريد الإلكتروني" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "أيقونة الاختصار" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "رابط إلى أيقونة سيتم استخدامها للمتصفحات." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "أيقونة الأجهزة اللمسية" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "رابط إلى أيقونة سيتم استخدامها للأجهزة اللوحية والهواتف." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "معلومات إضافية" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "للخوادم العامة: يمكنك إضافة معلومات إضافية لتدرج في %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "لغة النظام" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "سمة النظام" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "سمة الهاتف" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "سمة للأجهزة المحمولة" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "فرض SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "أعد توجيه جميع الطلبات غير المشفرة إلى طلبات SSL. تحذير: في بعض الأنظمة يمكن أن يؤدي هذا إلى حلقات إعادة توجيه لا نهائية." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "أظهر المساعدة في قائمة التصفح" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "إظهار المساعدة في قائمة التصفح. تظل المساعدة قابلة للوصول من خلال الانتقال إلى /help مباشرة." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "مثيل لمستخدم وحيد" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "اجعل هذا المثيل إما لمستخدم واحد أولعدّة مستخدمين" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "الحجم الأقصى للصورة" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4750,35 +4750,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "الطول الأقصى للصورة" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "حد حجم الصورة المرفوعة بالبيكسل. الافتراضي هو 1- والذي يعني حجمًا غير محدود." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "جودة صور JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "سيتم حفظ ملفات JPEG المرفوعة بنسبة جودة [0-100]. القيمة الافتراضية هي 100 وهي جودة الأصلية للملف." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "سياسات التسجيل" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4786,157 +4786,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "الحد اليومي للتسجيل" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "إذا كان التسجيل مسموحا، فإن هذا يحدُّ عدد التسجيلات الجديدة لليوم الواحد. إذا أُغلق التسجيل هذا الإعداد ليس له أي تأثير." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "نص صفحة التسجيل" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "ستعرض في صفحة التسجيل. يمكنك استخدام BBCode." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "الألقاب المحظورة" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "الحسابات المهجورة بعد x يوم" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "من أجل صونِ موارد النظام سنوقف الاستطلاع عن الحسابات المهجورة من المواقع البعيدة. ضع 0 لإيقاف هذه الوظيفة." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "النطاقات المسموحة" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "قائمة مفصولة بفواصل للنطاقات المصرح لها بالتفاعل مع مستخدمي هذا الموقع. علامة \"*\" مقبولة. اتركه فارغا للسماح لجميع النطاقات" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "نطاقات البريد الإلكتروني المسموحة" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "قائمة مفصولة بفواصل للنطاقات البريد الإلكتروني المسموح بالتسجيل بها في هذا الموقع. علامة \"*\" مقبولة. اتركه فارغا للسماح لجميع النطاقات" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "نطاقات الخارجية الموثوق بها" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "قائمة مفصولة بفواصل من النطاقات التي يُسمح بتضمين محتواها في المشاركات مثل OEmbed. يُسمح أيضًا بجميع النطاقات الفرعية التابعة لها." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "احجب المشاركات العلنية" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "أشر لمنع الزوار من الوصول إلى كل الصفحات باستثناء الصفحات الشخصية العلنية." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "افرض النشر" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "أشر لفرض إدراج جميع الملفات الشخصية في دليل الموقع." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "تفعيله قد ينتهك قوانين حماية الخصوصية مثل GDPR" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "رابط الدليل العالمي" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "رابط الدليل العالمي. إذا لم يتم تعريف هذا الحقل ، فلن يكون الدليل العام متاحًا." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "جعل المشاركات خاصة للمستخدمين الجدد افتراضيًا" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "لا تضمن محتويات المشاركات في تنبيهات البريد الإلكتروني" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "لا تضمن محتوى المشركات/التعليقات/الرسائل الخاصة/إلخ في تنبيهات البريد الإلكتروني المرسلة من هذا الموقع، كتدبير لحماية الخصوصية." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "لا تسمح بالوصول العلني للإضافات المدرجة في قائمة التطبيقات." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "تأشير هذا الخِيار سيجعل الوصول إلى الإضافات في قائمة التطبيقات للأعضاء فقط." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "لا تضمن الصور الخاصة في المشاركات" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4944,11 +4954,11 @@ msgid "" "while." msgstr "لا تستبدل الصور الخاصة المستضافة محليًا في المشاركات بنسخة مضمنة ، لأن هذا يعني أن المتراسلين الذين يتلقون المشاركات التي تحوي تلك الصور ستحتاج إلى مصادقة لرؤية كل صورة ، ما قد يستغرق بعض الوقت." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "محتوى حساس" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4957,339 +4967,339 @@ msgid "" "will be shown at the user registration page." msgstr "عيّن هذا الخيار للإعلان عن أن عقدتك تحتوي محتوى حساس قد لا يكون مناسباً للقصر. وسوف تنشر هذه المعلومات في معلومات العقدة وصفحة التسجيل، ويستخدم هذا الخيار في الدليل العالمي، فأثناء استعراض هذه العقدة في الدليل ستظهر لهم هذه المعلومة." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "توجيه المحتوى الخارجي عبر الوكيل" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "توجيه المحتوى الخارجي عن طريق وميل. يستخدم هذا على سبيل المثال وصول OEmbed وفي بعض الحالات النادرة الأخرى." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "اسمح للمستخدمين بتعيين remote_self" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "يتيح تأشير هذا المربع للميتخدمين تعريف مل المتراسلين علئ أنهم remote_self في مربع حوار اصلاح المتراسلين. سيؤدي تنشيط هذه الميزة على متراسل إلى نسخ جميع منشوراته في دفق المستخدم." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "فعّل تعدد التسجيل" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "يمكن المستخدمين من تسجيل حسابات إضافية لتستخدم كصفحات." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "فعّل OpenID" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "فعّل دعم OpenID للتسجيل والولوج." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "عرض صفحة المجتمع للزوار" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "صفحات المجتمع المتاحة للزوار. المستخدمون المحليون يمكنهم مشاهدة كلا النوعين." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "حد المشاركات لكل مستخدم في صفحة المجتمع" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "فعّل دعم البريد الإلكتروني" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "مستخدم الوكيل" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "رابط الوكيل" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "انتهت مهلة الاتصال بالشبكة" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "القيمة بالثواني. تعيينها لـ 0 يعني مهلة غير محدودة (غير مستحسن)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "الحد الأدنى للذاكرة" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "الحد الأدنى لذاكرة الحرة للمهمة بالميغابايت. تحتاج إذن الوصول إلى /proc/meminfo - الافتراضي 0 (معطل)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "تحسين الجداول بصفة دورية" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "حسن بانتظام بعض جداول قاعدة البيانات المستخدمة على نطاق واسع مثل ذاكرة التخزين المؤقت أو الأقفال أو الجلسة أو طابور المهام" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "اكتشف قائمة متابِعي/متابَعي متراسليك" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "اذا فُعل سيقوم هذا الخادم بتجميع قائمة متابِعي ومتابَعي متراسليك." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "لا شيء - معطل" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "المتراسلون المحليون - متراسلوا مستخدمي هذا الخادم." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "المتفاعلون: متراسلو مستخدمي هذا الخادم والمتراسلون الذين تفاعلوا مع المشاركات المحلية لهذا الخادم." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "زامن المتراسلين مع خادم الدليل" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "إذا فُعل سيقوم النظام بالتحقق دوريا للبحث عن متراسلين جدد على خادم الدليل المحدد." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "اكتشف متراسلين من خوادم أخرى" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "المهلة بالأيام بين الطلبات" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "ابحث في الدليل المحلي" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "يبحث في الدليل المحلي بدلاً من الدليل العالمي. عند إجراء بحث محلي ، يجرى نفس البحث في الدليل العالمي في الخلفية. هذا يحسن نتائج البحث إذا تكررت." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "انشر معلومات الخادم" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5297,50 +5307,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "إذا فعل ستنشر البيانات العامة للخادم وبيانات استخدامه. تحتوي هذه البيانات على اسم وإصدار الخادم ، وعدد المستخدمين الذين لهم ملف شخصي علني، وعدد المنشورات وقائمة الموصّلات والموافيق النشطة. راجع federation.info للحصول على التفاصيل." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "تحقق من الاصدار المنبعي" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "اخف الوسوم" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "اخف قائمة الوسوم من أسفل المشاركة." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "امسح قاعدة البيانات" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "يزيل العناصر البعيدة القديمة والسجلات اليتيمة والمحتوى القديم من بعض الجداول المساعدة." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "عمر العناصر البعيدة" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "إذا كان تنظيف قاعدة البيانات مفعلًا ، فإن هذه القيمة تمثل المهلة بالأيام لحذف العناصر البعيدة. يتم دائمًا الاحتفاظ بالعناصر المحلية والمفضلة والمؤرشفة. أدخل 0 لتعطيله." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5348,175 +5358,175 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "حد عدد التعليقات لكل مشاركة" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "عدد التعليقات التي تعرض لكل مشاركة؟ القيمة الافتراضية هي 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "الحد الأقصى لعدد التعليقات لكل محادثة في صفحة العرض (/display)" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "عدد التعليقات المعروضة في سياق المشاركة، القيمة الافتراضية هي 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "مسار التخزين المؤقت" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "إذا كان نظامك مقيد حيث لا يستطيع خادم الويب الوصول إلى مسار مجلد التخزين المؤقت (temp)، أدخل مسار آخر هنا." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "ابحث في الوسوم فقط" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "في النّظم الكبيرة، يمكن أن يؤدي البحث عن النصوص إلى إبطاء النظام." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "الحد الأقصى لعدد المهام" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5524,153 +5534,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "إما أن يكون \"الكل\" أو \"الوسوم\". يعني \"الكل\" وُجوب تلقي كل المشاركات العلنية. تعني \"الوسوم\" وجوب تلقي المشاركات ذات الوسوم المحددة فقط." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "معطّل" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "الكل" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "الوسوم" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "وسوم الخادم" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "الوسوم المرفوضة" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "قائمة بالوسوم المرفوضة مفصول بفاصلة." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "اسمح بوسوم المستخدمين" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "ابدأ النقل" @@ -6274,11 +6284,11 @@ msgstr "" msgid "Failed to remove event" msgstr "فشلت إزالة الحدث" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "لا يمكن أن ينتهي الحدث قبل أن يبدأ." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "عنوان الحدث و وقت بدئه إلزاميان." @@ -6370,7 +6380,7 @@ msgstr "اعرض" msgid "Create New Event" msgstr "أنشئ حدثاً جديدًا" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "قائمة" @@ -7042,7 +7052,7 @@ msgid "Actions" msgstr "الإجراءات" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "الحالة" @@ -7214,33 +7224,33 @@ msgstr "" msgid "Not available." msgstr "غير متاح." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "مشاركات متراسليك" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "تضمين" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "اخف" @@ -7272,7 +7282,7 @@ msgid "Result Item" msgstr "النتيجة" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7287,179 +7297,179 @@ msgstr[5] "خطأٍ" msgid "Source activity" msgstr "نشاط المصدر" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "الدخل المصدري" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "جسد العنصر" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "وسوم العنصر" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "دخل HTML الخام" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "دخْل HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compact)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "مشاركة مفكوكة الترميز" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "حُولت المشاركة" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "إضافة تويتر غير موجودة في مجلد addon." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "النص المصدري" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "ماركداون" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7972,7 +7982,7 @@ msgstr "الملفات" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "ارفع" @@ -7993,14 +8003,14 @@ msgstr "تجاوز الملف الحد الأقصى للحجم وهو %s" msgid "File upload failed." msgstr "فشل رفع الملف." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "تعذرت معالجة الصورة." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "فشل رفع الصورة." @@ -9085,7 +9095,7 @@ msgstr "هل تخول لهذا التطبيق الوصول إلى مشاركات msgid "Unsupported or missing response type" msgstr "نوع الاستجابة غير مدعومة أو مفقودة" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "بيانات الطلب غير كاملة" @@ -9096,11 +9106,11 @@ msgid "" "close this window: %s" msgstr "الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -9225,21 +9235,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "الصورة غير متوفرة." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "الصورة ذات المعرف %s غير متوفّرة." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "الصورة ذات المعرف %s غير صالحة." @@ -9291,27 +9301,27 @@ msgstr "لا متراسلين." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "الخط الزمني لـ %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "مشاركات %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "تعليقات %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "تجاوزت الصورة الحد الأقصى للحجم وهو %s" @@ -9330,11 +9340,11 @@ msgid "" "administrator" msgstr "الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "ملف الصورة فارغ." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "اعرض الألبوم" @@ -10401,12 +10411,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "الوصف" @@ -10804,181 +10814,189 @@ msgstr "المندوبون المحتملون" msgid "No entries." msgstr "لا مدخلات." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "السمة التي اخترتها غير متوفرة." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (غير مدعوم)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "إعدادات العرض" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "الإعدادات العامة للسمة" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "الإعدادات المخصصة للسمة" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "إعدادات المحتوى" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "إعدادات السمة" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "سمة العرض:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "سمة الهاتف:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "الحد الأقصى هو 100 عنصر" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "حدّث المتصفح كل xx ثانية" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "التمرير اللانهائي" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "اعرض ميزة \"لم يعجبني\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "يعرض زر لم يعجبني والتفاعلات السلبية في المشاركات والتعليقات." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "اعرض صاحب إعادة النشر" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "اعرض صورة صاحب المشاركة الأصلية كأيقونة بالإضافة إلى نص على المشاركة." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "ابقى في الخادم المحلي" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "لا يذهب إلى نظام بعيد عند اتباع رابط متراسل." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "بداية الأسبوع:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -11143,7 +11161,7 @@ msgstr "(يستخدم للبحث عن ملفات الشخصية، لا يظهر #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "فشل تقليص حجم الصورة [%s]." @@ -11183,31 +11201,31 @@ msgstr "استخدم الصورة كما هي" msgid "Missing uploaded image." msgstr "الصورة المرفوعة مفقودة." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "إعدادات الصورة الشخصية" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "الصورة الشخصية الحالية" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "ارفع صورة للملف الشخصي" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "ارفع صورة:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "أو" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "تخطى هذه الخطوة" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "اختر صورة من ألبومك" @@ -12915,124 +12933,100 @@ msgstr "slackr" msgid "Variations" msgstr "تغيرات" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "فاتح (ذو طابع لوني)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "داكن (ذو طابع لوني)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "أسود (ذو طابع لوني)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "ملاحظة" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "تحقق أن أذونات الصورة تسمح للجميع مشاهدتها" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "مخصص" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "أثري" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "ذو طابع لوني" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "اختر مخططات اللون" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "اختر مخططات الطابع اللوني" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "أزرق" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "أحمر" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "بنفسجي" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "أخضر" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "وردي" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "انسخ أو ألصق سلسلة المخططات" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "يمكنك نسخ سلسلة المخططات لمشاركة سمتك مع الآخرين. بلصقها ستطبق سلسلة المخططات" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "لون خلفية شريط التصفح" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "لون أيقونة شريط التصفح " -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "لون الروابط" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "لون الخلفية" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "شفافية خلفية المحتوى" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "صورة للخلفية" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "نمط صورة الخلفية" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "صورة لخلفية صفحة الولوج" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "لون خلفية صفحة الولوج" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "اترك صورة الخلفية ولونها فارغين لتطبيق الإعدادات الافتراضية للسمة" @@ -13072,19 +13066,35 @@ msgstr "فسيفساء" msgid "Repeat image to fill the screen." msgstr "كرر صورة لملأ الشاشة." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "تخطى للمحتوى الرئيسي" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "عُد لأعلى" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "مخصص" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "ضيف" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "زائر" diff --git a/view/lang/ar/strings.php b/view/lang/ar/strings.php index 2136016497..3c3cdf58ca 100644 --- a/view/lang/ar/strings.php +++ b/view/lang/ar/strings.php @@ -425,8 +425,6 @@ $a->strings['Admin'] = 'مدير'; $a->strings['Site setup and configuration'] = 'إعداد الموقع وتكوينه'; $a->strings['Navigation'] = 'تصفح'; $a->strings['Site map'] = 'خريطة الموقع'; -$a->strings['Embedding disabled'] = 'التضمين معطل'; -$a->strings['Embedded content'] = 'محتوى مضمن'; $a->strings['first'] = 'الأول'; $a->strings['prev'] = 'السابق'; $a->strings['next'] = 'التالي'; @@ -565,7 +563,6 @@ $a->strings['Error message from Curl when fetching'] = 'رسالة خطأ من C $a->strings['Url rewrite is working'] = 'إعادة كتابة الرابط تعمل'; $a->strings['It is highly encouraged to use Friendica only over a secure connection as sensitive information like passwords will be transmitted.'] = 'نوصي بشدة باستخدام فرنديكا عبر اتصال آمن فقط حيث سيتم تبادل معلومات حساسة مثل كلمات المرور.'; $a->strings['Please ensure that the connection to the server is secure.'] = 'يرجى التأكد من أن الاتصال بالخادم آمن.'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick يدعم GIF'; $a->strings['Database already in use.'] = 'قاعدة البيانات قيد الاستخدام.'; $a->strings['Could not connect to database.'] = 'يتعذر الاتصال بقاعدة البيانات.'; $a->strings['Monday'] = 'الإثنين'; @@ -2299,16 +2296,8 @@ $a->strings['darkzero'] = 'darkzero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'تغيرات'; -$a->strings['Light (Accented)'] = 'فاتح (ذو طابع لوني)'; -$a->strings['Dark (Accented)'] = 'داكن (ذو طابع لوني)'; -$a->strings['Black (Accented)'] = 'أسود (ذو طابع لوني)'; $a->strings['Note'] = 'ملاحظة'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'تحقق أن أذونات الصورة تسمح للجميع مشاهدتها'; -$a->strings['Custom'] = 'مخصص'; -$a->strings['Legacy'] = 'أثري'; -$a->strings['Accented'] = 'ذو طابع لوني'; -$a->strings['Select color scheme'] = 'اختر مخططات اللون'; -$a->strings['Select scheme accent'] = 'اختر مخططات الطابع اللوني'; $a->strings['Blue'] = 'أزرق'; $a->strings['Red'] = 'أحمر'; $a->strings['Purple'] = 'بنفسجي'; @@ -2336,6 +2325,7 @@ $a->strings['Mosaic'] = 'فسيفساء'; $a->strings['Repeat image to fill the screen.'] = 'كرر صورة لملأ الشاشة.'; $a->strings['Skip to main content'] = 'تخطى للمحتوى الرئيسي'; $a->strings['Back to top'] = 'عُد لأعلى'; +$a->strings['Custom'] = 'مخصص'; $a->strings['Guest'] = 'ضيف'; $a->strings['Visitor'] = 'زائر'; $a->strings['Alignment'] = 'محاذاة'; diff --git a/view/lang/bg/messages.po b/view/lang/bg/messages.po index c6f269dea4..fc33035c5e 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Rafael Kalachev , 2021\n" "Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n" @@ -40,14 +40,14 @@ msgstr "" msgid "Empty post discarded." msgstr "Empty мнение изхвърли." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Елемент не е намерен." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -70,14 +70,14 @@ msgstr "Елемент не е намерен." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Разрешението е отказано." @@ -242,7 +242,7 @@ msgstr "Съобщение за събиране на неуспех." msgid "Discard" msgstr "Отхвърляне" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Съобщения" @@ -287,20 +287,20 @@ msgstr "Качване на снимка" msgid "Insert web link" msgstr "Вмъкване на връзка в Мрежата" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Моля, изчакайте" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -314,7 +314,7 @@ msgstr "Моля, изчакайте" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Изпращане" @@ -385,7 +385,7 @@ msgstr "" msgid "Save" msgstr "Запази" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -398,99 +398,99 @@ msgid "User not found." msgstr "" #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Фотоалбуми" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Последни снимки" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Качване на нови снимки" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "всички" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Свържете се с информация недостъпна" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Албумът не е намерен." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Публичен достъп отказан." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Няма избрани снимки" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Качване на снимки" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Нов албум име: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Да не се показва след статут за това качване" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "права" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Изтриване на албума" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -500,133 +500,133 @@ msgstr "Изтриване на албума" msgid "Cancel" msgstr "Отмени" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Редактиране на албум" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Преглед на снимка" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Снимката не е" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Изтриване на снимка" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Преглед на снимка" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Редактиране на снимка" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Използва се като снимката на профила" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Изглед в пълен размер" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Маркери: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Ново име на албум" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Надпис" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Добавите етикет" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Rotate CW (вдясно)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Завъртане ККО (вляво)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Това сте вие" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Коментар" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Преглед" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Зареждане..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "избор" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -635,23 +635,23 @@ msgstr "избор" msgid "Delete" msgstr "Изтриване" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Харесва ми това (смяна)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Не ми харесва това (смяна)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "" @@ -792,18 +792,18 @@ msgid "All contacts" msgstr "" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1081,7 +1081,7 @@ msgstr "" msgid "Email" msgstr "Е-поща" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Диаспора" @@ -1559,29 +1559,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1759,7 +1767,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1768,12 +1776,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "покажи още" @@ -1781,7 +1789,7 @@ msgstr "покажи още" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "събитието." @@ -1789,7 +1797,7 @@ msgstr "събитието." msgid "status" msgstr "статус" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "снимка" @@ -1799,36 +1807,36 @@ msgstr "снимка" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s сложи етикет с %2$s - %3$s %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Показване на състоянието" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Преглед на профил" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Вижте снимки" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Мрежови Мнения" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Преглед на Контакта" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Изпратете PM" @@ -1864,7 +1872,7 @@ msgid "Languages" msgstr "Езици" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Свържете се / последваща" @@ -1918,42 +1926,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Височина на профила" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Вашият профил страница" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Снимки" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Вашите снимки" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2023,7 +2031,7 @@ msgstr "" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Контакти " @@ -2062,15 +2070,15 @@ msgstr "" msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Мрежа" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Разговори от вашите приятели" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Вашите мнения и разговори" @@ -2099,7 +2107,7 @@ msgstr "Марк, както се вижда" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Частна поща" @@ -2121,15 +2129,15 @@ msgstr "Управление на други страници" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Настройки" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Настройки на профила" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Управление / редактиране на приятели и контакти" @@ -2167,14 +2175,6 @@ msgstr "Навигация" msgid "Site map" msgstr "Карта на сайта" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Вграждане на инвалиди" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Вградени съдържание" - #: src/Content/Pager.php:216 msgid "first" msgstr "Първа" @@ -2191,38 +2191,38 @@ msgstr "следващ" msgid "last" msgstr "Дата на последния одит. " -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Изображение / снимка" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Кликнете за отваряне / затваряне" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$ 1 пише:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Шифрирано съдържание" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "" @@ -2305,90 +2305,90 @@ msgstr "Глобален справочник" msgid "Local Directory" msgstr "Локалната директория" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Всички Контакти" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Записани папки" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Всичко" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Категории" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Архиви" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2438,12 +2438,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2459,7 +2459,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2471,13 +2471,13 @@ msgstr "Място:" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2850,27 +2850,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Не може да се свърже с базата данни." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2880,37 +2876,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Понеделник" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Вторник" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Сряда" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Четвъртък" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Петък" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Събота" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Неделя" @@ -3248,47 +3244,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Одобряване" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Отхвърлен профила URL." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Свързване URL липсва." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Профилът на посочения адрес не предоставя достатъчна информация." @@ -3336,12 +3336,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Започва:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Играчи:" @@ -3359,17 +3359,17 @@ msgid "today" msgstr "" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "месец." #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "седмица" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "Ден:" @@ -3414,109 +3414,109 @@ msgstr "" msgid "g:i A" msgstr "" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Честит рожден ден, %s!" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "дейност" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "след" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "байта" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "" @@ -3524,7 +3524,7 @@ msgstr "" msgid "[no subject]" msgstr "[Без тема]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Стена снимки" @@ -3808,11 +3808,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Снимка на профила" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3820,7 +3820,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3851,12 +3851,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Регистрационни данни за %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3871,12 +3871,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3885,7 +3885,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3916,7 +3916,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3941,14 +3941,14 @@ msgid "Disable" msgstr "забрани" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Да се активира ли?" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3988,12 +3988,12 @@ msgid "Addon %s failed to install." msgstr "" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "" @@ -4188,8 +4188,8 @@ msgid "Enable Debugging" msgstr "" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4350,269 +4350,269 @@ msgstr "" msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Затворен" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Изисква одобрение" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Отворена." -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Сайт" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Регистрация" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Прикачване на файлове" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Политики" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Напреднал" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Производителност" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Име на сайта" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Банер / лого" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Системен език" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Системна тема" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Максимален размер на изображението" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4620,35 +4620,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Регистрирайте политика" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4656,157 +4656,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Регистрирайте се текст" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Сметките изоставени след дни х" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Няма да губи системните ресурси избирателните външни сайтове за abandonded сметки. Въведете 0 за без ограничение във времето." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Позволи на домейни приятел" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Разделени със запетая списък на домейни, на които е разрешено да се създадат приятелства с този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Позволи на домейни имейл" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Разделени със запетая списък на домейни, които са разрешени в имейл адреси за регистрации в този сайт. Заместващи символи са приети. На Empty да се даде възможност на всички домейни" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Блокиране на обществения" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Тръгване за блокиране на публичен достъп до всички по друг начин публичните лични страници на този сайт, освен ако в момента сте влезли в системата." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Принудително публикува" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4814,11 +4824,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4827,339 +4837,339 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Активирайте диаспора подкрепа" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Провери SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Ако желаете, можете да се обърнете на стриктна проверка на сертификат. Това ще означава, че не можете да свържете (на всички), за да самоподписани SSL обекти." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy потребител" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Мрежа изчакване" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Максимално натоварване" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5167,50 +5177,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5218,175 +5228,175 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5394,153 +5404,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "" @@ -6128,11 +6138,11 @@ msgstr "" msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "" @@ -6224,7 +6234,7 @@ msgstr "" msgid "Create New Event" msgstr "Създаване на нов събитие" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "" @@ -6872,7 +6882,7 @@ msgid "Actions" msgstr "" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Състояние:" @@ -7044,33 +7054,33 @@ msgstr "" msgid "Not available." msgstr "Няма налични" -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7102,7 +7112,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7113,179 +7123,179 @@ msgstr[1] "" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7794,7 +7804,7 @@ msgstr "Файлове" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Качете в Мрежата " @@ -7815,14 +7825,14 @@ msgstr "" msgid "File upload failed." msgstr "Файл за качване не успя." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Не може да се обработи." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Image Upload неуспешно." @@ -8855,7 +8865,7 @@ msgstr "Искате ли да се разреши това приложение msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8866,11 +8876,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -8995,21 +9005,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9061,27 +9071,27 @@ msgstr "Няма контакти." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "" @@ -9100,11 +9110,11 @@ msgid "" "administrator" msgstr "" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Image файл е празен." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Вижте албуми" @@ -10167,12 +10177,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" @@ -10570,181 +10580,189 @@ msgstr "Потенциални Делегатите" msgid "No entries." msgstr "няма регистрирани" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Настройки на дисплея" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Тема Настройки" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Палитрата на дисплея:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Максимум от 100 точки" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Актуализиране на браузъра на всеки ХХ секунди" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10909,7 +10927,7 @@ msgstr "(Използва се за търсене на профилите, ни #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Намаляване на размер [ %s ] не успя." @@ -10949,31 +10967,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "пропуснете тази стъпка" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "изберете снимка от вашите фото албуми" @@ -12673,124 +12691,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12830,19 +12824,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/bg/strings.php b/view/lang/bg/strings.php index b79c985e33..2054f0b166 100644 --- a/view/lang/bg/strings.php +++ b/view/lang/bg/strings.php @@ -193,8 +193,6 @@ $a->strings['Admin'] = 'admin'; $a->strings['Site setup and configuration'] = 'Настройка и конфигуриране на сайта'; $a->strings['Navigation'] = 'Навигация'; $a->strings['Site map'] = 'Карта на сайта'; -$a->strings['Embedding disabled'] = 'Вграждане на инвалиди'; -$a->strings['Embedded content'] = 'Вградени съдържание'; $a->strings['first'] = 'Първа'; $a->strings['prev'] = 'Пред.'; $a->strings['next'] = 'следващ'; diff --git a/view/lang/ca/messages.po b/view/lang/ca/messages.po index 55f5a12cc2..d2104db42a 100644 --- a/view/lang/ca/messages.po +++ b/view/lang/ca/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Joan Bar , 2019\n" "Language-Team: Catalan (http://app.transifex.com/Friendica/friendica/language/ca/)\n" @@ -41,14 +41,14 @@ msgstr "" msgid "Empty post discarded." msgstr "Buidat després de rebutjar." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Article no trobat." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -71,14 +71,14 @@ msgstr "Article no trobat." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Permís denegat." @@ -243,7 +243,7 @@ msgstr "Ha fallat la recollida del missatge." msgid "Discard" msgstr "Descartar" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Missatges" @@ -288,20 +288,20 @@ msgstr "Carregar foto" msgid "Insert web link" msgstr "Inserir enllaç web" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Si us plau esperi" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -315,7 +315,7 @@ msgstr "Si us plau esperi" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Enviar" @@ -386,7 +386,7 @@ msgstr "" msgid "Save" msgstr "Guardar" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -399,99 +399,99 @@ msgid "User not found." msgstr "" #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Àlbum de Fotos" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Fotos Recents" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Actualitzar Noves Fotos" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "tothom" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Informació del Contacte no disponible" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Àlbum no trobat." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "una foto" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s fou etiquetat a %2$s per %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Accés públic denegat." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "No s'han seleccionat fotos" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Carregar Fotos" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nou nom d'àlbum:" -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Permisos" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Eliminar Àlbum" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -501,133 +501,133 @@ msgstr "Eliminar Àlbum" msgid "Cancel" msgstr "Cancel·lar" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Editar Àlbum" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Mostrar el més Nou Primer" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Mostrar el més Antic Primer" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Veure Foto" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Permís denegat. L'accés a aquest element pot estar restringit." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Foto no disponible" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Realment vols esborrar aquesta foto?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Eliminar Foto" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Veure foto" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Editar foto" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Emprar com a foto del perfil" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Veure'l a Mida Completa" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Etiquetes:" -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nou nom d'àlbum" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Títol" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Afegir una etiqueta" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Rotar CW (dreta)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Rotar CCW (esquerra)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Aquest ets tu" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Comentari" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Vista prèvia" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Selecionar" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -636,23 +636,23 @@ msgstr "Selecionar" msgid "Delete" msgstr "Esborrar" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "M'agrada això (canviar)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "No m'agrada això (canviar)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "" @@ -793,18 +793,18 @@ msgid "All contacts" msgstr "Tots contactes" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Seguidors" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1082,7 +1082,7 @@ msgstr "" msgid "Email" msgstr "Correu" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1560,29 +1560,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1760,7 +1768,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1769,12 +1777,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "Mostrar més" @@ -1782,7 +1790,7 @@ msgstr "Mostrar més" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "esdeveniment" @@ -1790,7 +1798,7 @@ msgstr "esdeveniment" msgid "status" msgstr "estatus" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "foto" @@ -1800,36 +1808,36 @@ msgstr "foto" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetats %2$s %3$s amb %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Seguir el Fil" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Veure Estatus" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Veure Perfil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Veure Fotos" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Enviaments a la Xarxa" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Veure contacte" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Enviar Missatge Privat" @@ -1865,7 +1873,7 @@ msgid "Languages" msgstr "" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Connectar/Seguir" @@ -1919,42 +1927,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Perfil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "La seva pàgina de perfil" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Fotos" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Les seves fotos" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2024,7 +2032,7 @@ msgstr "Etiquetes" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Contactes" @@ -2063,15 +2071,15 @@ msgstr "" msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Xarxa" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Converses dels teus amics" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Els teus anuncis i converses" @@ -2100,7 +2108,7 @@ msgstr "Marcar com a vist" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Correu privat" @@ -2122,15 +2130,15 @@ msgstr "Gestiona altres pàgines" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Ajustos" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Configuració del compte" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Gestiona/edita amics i contactes" @@ -2168,14 +2176,6 @@ msgstr "Navegació" msgid "Site map" msgstr "Mapa del lloc" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Incrustacions deshabilitades" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Contingut incrustat" - #: src/Content/Pager.php:216 msgid "first" msgstr "Primer" @@ -2192,38 +2192,38 @@ msgstr "següent" msgid "last" msgstr "Últim" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Imatge/foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Clicar per a obrir/tancar" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 va escriure:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Encriptar contingut" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "" @@ -2306,90 +2306,90 @@ msgstr "Directori Global" msgid "Local Directory" msgstr "Directori Local" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Tots els Contactes" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Carpetes Guardades" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Tot" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Categories" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contacte en comú" msgstr[1] "%d contactes en comú" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Arxius" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2439,12 +2439,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2460,7 +2460,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2472,13 +2472,13 @@ msgstr "Ubicació:" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2851,27 +2851,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "No puc connectar a la base de dades." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2881,37 +2877,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Dilluns" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Dimarts" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Dimecres" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Dijous" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Divendres" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Dissabte" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Diumenge" @@ -3249,47 +3245,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Aprovar" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Perfil URL no permès." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "URL del connector perduda." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "L'adreça de perfil especificada no proveeix informació adient." @@ -3337,12 +3337,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Inici:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Acaba:" @@ -3360,17 +3360,17 @@ msgid "today" msgstr "avui" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "mes" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "setmana" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "dia" @@ -3415,109 +3415,109 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Mostra el mapa" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Amaga el mapa" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%s aniversari" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Feliç Aniversari %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "activitat" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "missatge" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Veure en un altre pàgina" @@ -3525,7 +3525,7 @@ msgstr "Veure en un altre pàgina" msgid "[no subject]" msgstr "[Sense assumpte]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Fotos del Mur" @@ -3809,11 +3809,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Fotos del Perfil" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3821,7 +3821,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3852,12 +3852,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Detalls del registre per a %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3872,12 +3872,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3886,7 +3886,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3917,7 +3917,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3942,14 +3942,14 @@ msgid "Disable" msgstr "Deshabilitar" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Habilitar" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3989,12 +3989,12 @@ msgid "Addon %s failed to install." msgstr "" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Desa la configuració" @@ -4189,8 +4189,8 @@ msgid "Enable Debugging" msgstr "Habilitar Depuració" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4351,269 +4351,269 @@ msgstr "" msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "No hi ha un tema específic per a mòbil" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Instancia multiusuari" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Tancat" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Requereix aprovació" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Obert" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Lloc" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Procés de Registre" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Fitxer carregat" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Polítiques" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avançat" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Rendiment" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nom del lloc" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Senyera/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Idioma del Sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Tema del sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Tema per a mòbil" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Tema per a aparells mòbils" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Instancia per a un únic usuari" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Fer aquesta instancia multi-usuari o mono-usuari per al usuari anomenat" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Mida màxima de les imatges" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4621,35 +4621,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Maxima longitud d'imatge" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longitud màxima en píxels del costat més llarg de la imatge carregada. Per defecte es -1, que significa sense límits" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Qualitat per a la imatge JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Els JPEGs pujats seran guardats amb la qualitat que ajustis de [0-100]. Per defecte es 100 màxima qualitat." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Política per a registrar" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4657,157 +4657,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Registres Màxims Diaris" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Si es permet el registre, això ajusta el nombre màxim de nous usuaris a acceptar diariament. Si el registre esta tancat, aquest ajust no te efectes." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Text al registrar" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Es mostrarà de manera destacada a la pàgina de registre. Podeu utilitzar BBCode aquí." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Noms prohibits" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Llista de sobrenoms separats per comes que tenen prohibit el registre. Els presets són una llista de noms de rol segonsRFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Comptes abandonats després de x dies" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Dominis amics permesos" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Dominis de correu permesos" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Bloqueig públic" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Forçar publicació" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Els enviaments dels nous usuaris seran privats per defecte." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "No incloure el assumpte a les notificacions per correu electrónic" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "No incloure assumpte d'un enviament/comentari/missatge_privat/etc. Als correus electronics que envii fora d'aquest lloc, com a mesura de privacitat. " -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Deshabilita el accés públic als complements llistats al menu d'aplicacions" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Marcant això restringiras els complements llistats al menú d'aplicacions al membres" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "No incrustar imatges en missatges privats" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4815,11 +4825,11 @@ msgid "" "while." msgstr "No reemplaçar les fotos privades hospedades localment en missatges amb una còpia de l'imatge embeguda. Això vol dir que els contactes que rebin el missatge contenint fotos privades s'ha d'autenticar i carregar cada imatge, amb el que pot suposar bastant temps." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4828,339 +4838,339 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Habilitar suport per Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Verificar SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "proxy d'usuari" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL del proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Temps excedit a la xarxa" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Càrrega Màxima Sostinguda" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5168,50 +5178,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5219,175 +5229,175 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Camí a carpeta temporal" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5395,153 +5405,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "" @@ -6129,11 +6139,11 @@ msgstr "" msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Títol d'esdeveniment i hora d'inici requerits." @@ -6225,7 +6235,7 @@ msgstr "" msgid "Create New Event" msgstr "Crear un nou esdeveniment" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "llista" @@ -6873,7 +6883,7 @@ msgid "Actions" msgstr "" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Estatus" @@ -7045,33 +7055,33 @@ msgstr "" msgid "Not available." msgstr "No disponible." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7103,7 +7113,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7114,179 +7124,179 @@ msgstr[1] "" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7795,7 +7805,7 @@ msgstr "Arxius" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Pujar" @@ -7816,14 +7826,14 @@ msgstr "" msgid "File upload failed." msgstr "La càrrega de fitxers ha fallat." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Incapaç de processar la imatge." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Actualització de la imatge fracassada." @@ -8856,7 +8866,7 @@ msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i con msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8867,11 +8877,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -8996,21 +9006,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9062,27 +9072,27 @@ msgstr "Sense Contactes" #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "" @@ -9101,11 +9111,11 @@ msgid "" "administrator" msgstr "" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "El fitxer de imatge és buit." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Veure Àlbum" @@ -10168,12 +10178,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Descripció" @@ -10571,181 +10581,189 @@ msgstr "Delegats Potencials" msgid "No entries." msgstr "Sense entrades" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (No és compatible)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Ajustos de Pantalla" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Configuració de Temes" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Visualitzar el Tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Tema Mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Número d'elements a mostrar per pàgina" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Màxim de 100 elements" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Actualitzar navegador cada xx segons" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Mínim de 10 segons. Introduïu -1 per desactivar-lo." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10910,7 +10928,7 @@ msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "La reducció de la imatge [%s] va fracassar." @@ -10950,31 +10968,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "saltar aquest pas" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "tria una foto dels teus àlbums" @@ -12674,124 +12692,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12831,19 +12825,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/ca/strings.php b/view/lang/ca/strings.php index 2d7b3eedc4..6cb3101877 100644 --- a/view/lang/ca/strings.php +++ b/view/lang/ca/strings.php @@ -293,8 +293,6 @@ $a->strings['Admin'] = 'Admin'; $a->strings['Site setup and configuration'] = 'Ajustos i configuració del lloc'; $a->strings['Navigation'] = 'Navegació'; $a->strings['Site map'] = 'Mapa del lloc'; -$a->strings['Embedding disabled'] = 'Incrustacions deshabilitades'; -$a->strings['Embedded content'] = 'Contingut incrustat'; $a->strings['first'] = 'Primer'; $a->strings['prev'] = 'Prev'; $a->strings['next'] = 'següent'; diff --git a/view/lang/cs/messages.po b/view/lang/cs/messages.po index e8e6f8ad4e..45c1fe5d5a 100644 --- a/view/lang/cs/messages.po +++ b/view/lang/cs/messages.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Petr Kučera, 2023\n" "Language-Team: Czech (http://app.transifex.com/Friendica/friendica/language/cs/)\n" @@ -43,14 +43,14 @@ msgstr "" msgid "Empty post discarded." msgstr "Prázdný příspěvek odstraněn." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Položka nenalezena." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -73,14 +73,14 @@ msgstr "Položka nenalezena." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Přístup odmítnut." @@ -245,7 +245,7 @@ msgstr "Sběr zpráv selhal." msgid "Discard" msgstr "Odstranit" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Zprávy" @@ -290,20 +290,20 @@ msgstr "Nahrát fotku" msgid "Insert web link" msgstr "Vložit webový odkaz" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Čekejte prosím" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -317,7 +317,7 @@ msgstr "Čekejte prosím" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Odeslat" @@ -390,7 +390,7 @@ msgstr "" msgid "Save" msgstr "Uložit" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -403,99 +403,99 @@ msgid "User not found." msgstr "Uživatel nenalezen." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Fotoalba" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Nedávné fotky" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Nahrát nové fotky" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Kontakt byl zablokován" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Album nenalezeno." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album úspěšně smazáno" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Album bylo prázdné." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "fotce" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s byl označen ve %2$s uživatelem %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Veřejný přístup odepřen." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Není vybrána žádná fotka" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Nahrát fotky" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Název nového alba: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "nebo si vyberte existující album:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Nezobrazovat pro toto nahrání stavovou zprávu" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Oprávnění" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Opravdu chcete smazat toto fotoalbum a všechny jeho fotky?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Smazat album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -505,133 +505,133 @@ msgstr "Smazat album" msgid "Cancel" msgstr "Zrušit" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Upravit album" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Smazat album" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Zobrazit nejprve nejnovější" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Zobrazit nejprve nejstarší" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Zobrazit fotku" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Fotka není k dispozici" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Opravdu chcete smazat tuto fotku?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Smazat fotku" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Zobrazit fotku" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Upravit fotku" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Smazat fotku" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Použít jako profilovou fotku" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Soukromá fotka" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Zobrazit v plné velikosti" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Štítky: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Vyberte štítky pro odstranění]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nové jméno alba" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Titulek" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Přidat štítek" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Příklad: @jan, @Lucie_Nováková, @jakub@priklad.cz, #Morava, #taboreni" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Neotáčet" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Otáčet po směru hodinových ručiček (doprava)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Otáčet proti směru hodinových ručiček (doleva)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Tohle jste vy" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Okomentovat" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Náhled" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Vybrat" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -640,23 +640,23 @@ msgstr "Vybrat" msgid "Delete" msgstr "Odstranit" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "To se mi líbí (přepínat)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "To se mi nelíbí (přepínat)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Mapa" @@ -797,18 +797,18 @@ msgid "All contacts" msgstr "Všechny kontakty" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Sledující" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Sleduji" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1086,7 +1086,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1588,29 +1588,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1788,7 +1796,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1797,12 +1805,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "zobrazit více" @@ -1810,7 +1818,7 @@ msgstr "zobrazit více" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "událost" @@ -1818,7 +1826,7 @@ msgstr "událost" msgid "status" msgstr "stav" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "fotka" @@ -1828,36 +1836,36 @@ msgstr "fotka" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s označil/a %3$s uživatele %2$s štítkem %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Sledovat vlákno" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Zobrazit stav" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Zobrazit profil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Zobrazit fotky" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Síťové příspěvky" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Zobrazit kontakt" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Poslat soukromou zprávu" @@ -1893,7 +1901,7 @@ msgid "Languages" msgstr "" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Spojit se/sledovat" @@ -1947,42 +1955,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Vaše profilová stránka" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Fotky" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Vaše fotky" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Kalendář" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2052,7 +2060,7 @@ msgstr "Štítky" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Kontakty" @@ -2091,15 +2099,15 @@ msgstr "Podmínky používání" msgid "Terms of Service of this Friendica instance" msgstr "Podmínky používání této instance Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Síť" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Konverzace od vašich přátel" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Vaše příspěvky a konverzace" @@ -2128,7 +2136,7 @@ msgstr "Označit jako přečtené" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Soukromá pošta" @@ -2150,15 +2158,15 @@ msgstr "Spravovat jiné stránky" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Nastavení" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Nastavení účtu" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Spravovat/upravit přátelé a kontakty" @@ -2196,14 +2204,6 @@ msgstr "Navigace" msgid "Site map" msgstr "Mapa webu" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Vkládání zakázáno" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Vložený obsah" - #: src/Content/Pager.php:216 msgid "first" msgstr "první" @@ -2220,38 +2220,38 @@ msgstr "další" msgid "last" msgstr "poslední" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Obrázek/fotka" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Kliknutím otevřete/zavřete" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 napsal/a:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Šifrovaný obsah" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Neplatný protokol zdroje" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Neplatný protokol odkazu" @@ -2336,49 +2336,49 @@ msgstr "Globální adresář" msgid "Local Directory" msgstr "Místní adresář" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Vztahy" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Všechny kontakty" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protokoly" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Všechny protokoly" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Uložené složky" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Všechno" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Kategorie" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2387,41 +2387,41 @@ msgstr[1] "%d společné kontakty" msgstr[2] "%d společného kontaktu" msgstr[3] "%d společných kontaktů" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archivy" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Zprávy" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Typy účtů" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2475,12 +2475,12 @@ msgstr[3] "Populární štítky (posledních %d hodin)" msgid "More Trending Tags" msgstr "Další populární štítky" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2496,7 +2496,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2508,13 +2508,13 @@ msgstr "Poloha:" msgid "Network:" msgstr "Síť:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Přestat sledovat" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2887,27 +2887,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "PHP rozšíření ImageMagick není nainstalováno" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "PHP rozšíření ImageMagick je nainstalováno" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick podporuje GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Databáze se již používá." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Nelze se připojit k databázi." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2917,37 +2913,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "pondělí" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "úterý" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "středa" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "čtvrtek" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "pátek" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "sobota" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "neděle" @@ -3285,47 +3281,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Schválit" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organizace" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Přeposílací server" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Nepovolené URL profilu." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Zablokovaná doména" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Chybí URL adresa pro připojení." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." @@ -3373,12 +3373,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Začíná:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Končí:" @@ -3396,17 +3396,17 @@ msgid "today" msgstr "dnes" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "měsíc" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "týden" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "den" @@ -3451,76 +3451,76 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Zobrazit mapu" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Skrýt mapu" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny, %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "aktivita" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "příspěvek" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Varování o obsahu: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bytů" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3529,7 +3529,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3538,7 +3538,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3547,7 +3547,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3556,12 +3556,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Zobrazit na separátní stránce" @@ -3569,7 +3569,7 @@ msgstr "Zobrazit na separátní stránce" msgid "[no subject]" msgstr "[bez předmětu]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Fotky na zdi" @@ -3857,11 +3857,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Profilové fotky" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3869,7 +3869,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3900,12 +3900,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Registrační údaje pro uživatele %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3920,12 +3920,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tDěkujeme, že jste se registroval/a na %2$s. Váš účet čeká na schválení administrátora.\n\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%3$s\n\t\t\tPřihlašovací jméno:\t%4$s\n\t\t\tHeslo:\t\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Registrace na %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3934,7 +3934,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3965,7 +3965,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3990,14 +3990,14 @@ msgid "Disable" msgstr "Zakázat" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Povolit" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4037,12 +4037,12 @@ msgid "Addon %s failed to install." msgstr "Instalace doplňku %s selhala." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Uložit nastavení" @@ -4253,8 +4253,8 @@ msgid "Enable Debugging" msgstr "Povolit ladění" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4415,269 +4415,269 @@ msgstr "Vytvořeno" msgid "Priority" msgstr "Priorita" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Žádný speciální motiv pro mobilní zařízení" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentální)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Žádná komunitní stránka" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Veřejné příspěvky od místních uživatelů" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Veřejné příspěvky z federované sítě" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Veřejné příspěvky od místních uživatelů a z federované sítě" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Víceuživatelská instance" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Uzavřeno" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Otevřeno" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Nekontrolovat" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "kontrolovat stabilní verzi" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "kontrolovat vývojovou verzi" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Web" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Znovu publikovat uživatele do adresáře" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registrace" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Nahrání souborů" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Politika" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Pokročilé" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Adresář automaticky objevených kontaktů" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Výkon" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Pracovník (worker)" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Přeposílání zpráv" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Název webu" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "E-mail odesílatele" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "E-mailová adresa, kterou bude Váš server používat pro posílání e-mailů s oznámeními." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Banner/logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Favikona" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Odkaz k ikoně, která bude použita pro prohlížeče." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Dotyková ikona" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Odkaz k ikoně, která bude použita pro tablety a mobilní zařízení." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Dodatečné informace" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Pro veřejné servery: zde můžete přidat dodatečné informace, které budou vypsané na stránce %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Systémový jazyk" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Systémový motiv" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Mobilní systémový motiv" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Motiv pro mobilní zařízení" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Vynutit SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4685,35 +4685,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximální délka delší stránky nahrávaných obrázků v pixelech. Výchozí hodnota je -1, což znamená bez omezení." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Kvalita obrázků JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Nahrávané obrázky JPEG budou uloženy se zadanou kvalitou v rozmezí [0-100]. Výchozí hodnota je 100, což znamená plnou kvalitu." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Politika registrace" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4721,157 +4721,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den. Pokud je registrace zakázána, toto nastavení nemá žádný efekt." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Text při registraci" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Bude zobrazen viditelně na stránce registrace. Zde můžete používat BBCode." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Zakázané přezdívky" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Seznam přezdívek, které nelze registrovat, oddělených čárkami. Přednastaven je seznam častých přezdívek dle RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Účty jsou opuštěny po x dnech" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nebude se plýtvat systémovými zdroji kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Seznam domén, kterým je povoleno navazovat přátelství s tímto webem, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Seznam domén e-mailových adres, kterým je povoleno provádět registraci na tomto webu, oddělených čárkami. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolné domény." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Žádný obohacený obsah oEmbed" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Neukazovat obohacený obsah (např. vložené PDF dokumenty), kromě toho z domén vypsaných níže." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Blokovat veřejný přístup" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Označením zablokujete veřejný přístup ke všem jinak veřejně přístupným osobním stránkám nepřihlášeným uživatelům." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Vynutit publikaci" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Označením budou všechny profily na tomto serveru uvedeny v adresáři stránky." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Povolení této funkce může porušit zákony o ochraně soukromí, jako je Obecné nařízení o ochraně osobních údajů (GDPR)" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "Adresa URL globálního adresáře" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "Adresa URL globálního adresáře. Pokud toto není nastaveno, globální adresář bude aplikaci naprosto nedostupný." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Nezahrnovat v e-mailových oznámeních obsah příspěvků" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr " V e-mailových oznámeních, které jsou odesílány z tohoto webu, nebudou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. " -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Nepovolit přidávání soukromých obrázků do příspěvků" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4879,11 +4889,11 @@ msgid "" "while." msgstr "Nenahrazovat místní soukromé fotky v příspěvcích vloženou kopií obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotky, budou muset autentikovat a načíst každý obrázek, což může zabrat nějaký čas." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Explicitní obsah" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4892,339 +4902,339 @@ msgid "" "will be shown at the user registration page." msgstr "Touto funkcí oznámíte, že je Váš server používán hlavně pro explicitní obsah, který nemusí být vhodný pro mladistvé. Tato informace bude publikována na stránce informací o serveru a může být využita např. globálním adresářem pro odfiltrování Vašeho serveru ze seznamu serverů pro spojení. Poznámka o tom bude navíc zobrazena na stránce registrace." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Umožnit uživatelům nastavit remote_self" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako „remote_self“ v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Komunitní stránky pro návštěvníky" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Které komunitní stránky by měly být viditelné pro návštěvníky. Místní uživatelé vždy vidí obě stránky." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Počet příspěvků na komunitní stránce" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Podpora pro Diasporu nemůže být zapnuta, protože Friendica byla nainstalována do podadresáře." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Zapnout podporu pro Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Ověřit SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy uživatel" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Čas vypršení síťového spojení (timeout)" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximální systémová zátěž, než budou procesy pro doručení a dotazování odloženy - výchozí hodnota %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Minimální paměť" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimální volná paměť v MB pro pracovníka. Potřebuje přístup do /proc/meminfo - výchozí hodnota 0 (deaktivováno)" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Objevit kontakty z ostatních serverů" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Dny mezi dotazy" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Hledat v místním adresáři" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Prohledat místní adresář místo globálního adresáře. Při místním prohledávání bude každé hledání provedeno v globálním adresáři na pozadí. To vylepšuje výsledky při zopakování hledání." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Zveřejnit informace o serveru" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5232,50 +5242,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Pokud je tohle povoleno, budou zveřejněna obecná data o serveru a jeho používání. Data obsahují jméno a verzi serveru, počet uživatelů s veřejnými profily, počet příspěvků a aktivované protokoly a konektory. Pro více informací navštivte the-federation.info." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Zkontrolovat upstreamovou verzi" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Umožní kontrolovat nové verze Friendica na GitHubu. Pokud existuje nová verze, budete informován/a na přehledu administračního panelu." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Potlačit štítky" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Potlačit zobrazení seznamu hastagů na konci příspěvků." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Vyčistit databázi" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Odstranit staré vzdálené položky, osiřelé záznamy v databázi a starý obsah z některých dalších pomocných tabulek." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Životnost vzdálených položek" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány vzdálené položky. Vlastní položky a označené či vyplněné položky jsou vždy ponechány. Hodnota 0 tuto funkci vypíná." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Životnost nevyžádaných položek" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5283,175 +5293,175 @@ msgid "" "items if set to 0." msgstr "Pokud je zapnuto čištění databáze, tato funkce definuje počet dnů, po kterých budou smazány nevyžádané vzdálené položky (většinou obsah z přeposílacího serveru). Výchozí hodnota je 90 dní. Pokud je zadaná hodnota 0, výchozí hodnotou bude obecná hodnota životnosti vzdálených položek." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Životnost hrubých dat konverzací" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Data konverzací jsou použita pro ActivityPub a OStatus a pro účely ladění. Mělo by být bezpečné je odstranit po 14 dnech, výchozí hodnota je 90 dní." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Maximální počet komentářů k příspěvku" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Výchozí hodnotou je 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Pokud máte omezený systém, kde webový server nemá přístup k systémové složce temp, zde zadejte jinou cestu." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Hledat pouze ve štítcích" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Maximální počet paralelních pracovníků" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Na sdílených hostinzích toto nastavte na hodnotu %d. Na větších systémech se hodí hodnoty kolem %d. Výchozí hodnotou je %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Povolit fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Pokud je toto povoleno, mechanismus fastlane spustí dodatečného pracovníka, pokud jsou procesy vyšší priority zablokované procesy nižší priority." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5459,153 +5469,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Přímý přenos na server pro přeposílání" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Umožňuje přímý přenos na ostatní servery bez použití přeposílacích serverů" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Rozsah příspěvků z přeposílacího serveru" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Může být buď „vše“ nebo „štítky“. „vše“ znamená, že budou přijaty všechny veřejné příspěvky. „štítky“ znamená, že budou přijaty pouze příspěvky s vybranými štítky." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Zakázáno" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "vše" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "štítky" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Serverové štítky" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Seznam štítků pro odběr „tags“, oddělených čárkami." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Povolit uživatelské štítky" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Pokud je toto povoleno, budou štítky z uložených hledání vedle odběru „relay_server_tags“ použity i pro odběr „tags“." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Začít přemístění" @@ -6201,11 +6211,11 @@ msgstr "" msgid "Failed to remove event" msgstr "Odstranění události selhalo" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Událost nemůže končit dříve, než začala." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Název události a datum začátku jsou vyžadovány." @@ -6297,7 +6307,7 @@ msgstr "Zobrazit" msgid "Create New Event" msgstr "Vytvořit novou událost" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "seznam" @@ -6957,7 +6967,7 @@ msgid "Actions" msgstr "Akce" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Stav" @@ -7129,33 +7139,33 @@ msgstr "Možnost komunity není dostupná." msgid "Not available." msgstr "Není k dispozici." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7187,7 +7197,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7200,179 +7210,179 @@ msgstr[3] "Chyb" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Zdrojový vstup" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (hrubé HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Tělo položky" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Štítky položky" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Zdrojový vstup (formát Diaspora)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (hrubé HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Hrubý HTML vstup" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "HTML vstup" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (hrubé HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (kompaktní)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Zdrojový text" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7883,7 +7893,7 @@ msgstr "Soubory" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Nahrát" @@ -7904,14 +7914,14 @@ msgstr "Velikost souboru přesáhla limit %s" msgid "File upload failed." msgstr "Nahrání souboru se nezdařilo." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Obrázek není možné zprocesovat" -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Nahrání obrázku selhalo." @@ -8970,7 +8980,7 @@ msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a konta msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8981,11 +8991,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -9110,21 +9120,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Neplatná fotka s ID %s." @@ -9176,27 +9186,27 @@ msgstr "Žádné kontakty." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Časová osa uživatele %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Příspěvky uživatele %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Komentáře uživatele %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Velikost obrázku překročila limit %s" @@ -9215,11 +9225,11 @@ msgid "" "administrator" msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Soubor obrázku je prázdný." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Zobrazit album" @@ -10284,12 +10294,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" @@ -10687,181 +10697,189 @@ msgstr "Potenciální delegáti" msgid "No entries." msgstr "Žádné záznamy." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Motiv, který jste si vybral/a, není dostupný." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nepodporováno)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Nastavení zobrazení" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Obecná nastavení motivu" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Vlastní nastavení motivu" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Nastavení obsahu" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Nastavení motivu" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Motiv zobrazení:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Mobilní motiv:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Počet položek zobrazených na stránce:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Aktualizovat prohlížeč každých xx sekund" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Začátek týdne:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -11026,7 +11044,7 @@ msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatn #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Nepodařilo se snížit velikost obrázku [%s]." @@ -11066,31 +11084,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "nebo" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "tento krok přeskočte" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "si vyberte fotku z vašich fotoalb" @@ -12794,124 +12812,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12951,19 +12945,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/cs/strings.php b/view/lang/cs/strings.php index 0299aa8380..bb32fceee7 100644 --- a/view/lang/cs/strings.php +++ b/view/lang/cs/strings.php @@ -363,8 +363,6 @@ $a->strings['Admin'] = 'Administrátor'; $a->strings['Site setup and configuration'] = 'Nastavení webu a konfigurace'; $a->strings['Navigation'] = 'Navigace'; $a->strings['Site map'] = 'Mapa webu'; -$a->strings['Embedding disabled'] = 'Vkládání zakázáno'; -$a->strings['Embedded content'] = 'Vložený obsah'; $a->strings['first'] = 'první'; $a->strings['prev'] = 'předchozí'; $a->strings['next'] = 'další'; @@ -494,7 +492,6 @@ $a->strings['Error message from Curl when fetching'] = 'Chybová zpráva od Curl $a->strings['Url rewrite is working'] = 'Url rewrite je funkční.'; $a->strings['ImageMagick PHP extension is not installed'] = 'PHP rozšíření ImageMagick není nainstalováno'; $a->strings['ImageMagick PHP extension is installed'] = 'PHP rozšíření ImageMagick je nainstalováno'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick podporuje GIF'; $a->strings['Database already in use.'] = 'Databáze se již používá.'; $a->strings['Could not connect to database.'] = 'Nelze se připojit k databázi.'; $a->strings['Monday'] = 'pondělí'; diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index eeba7b766d..ec232e1aac 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -22,6 +22,7 @@ # Herbert Thielen , 2017 # hoergen , 2018-2019 # hoergen , 2018 +# Hypolite Petovan , 2024 # Hauke , 2011-2012 # joe slam , 2020 # Johannes Schwab , 2015 @@ -56,7 +57,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Raroun, 2023-2024\n" "Language-Team: German (http://app.transifex.com/Friendica/friendica/language/de/)\n" @@ -86,14 +87,14 @@ msgstr "Eintrag konnte nicht geholt werden." msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Beitrag nicht gefunden." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -116,14 +117,14 @@ msgstr "Beitrag nicht gefunden." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -288,7 +289,7 @@ msgstr "Konnte Nachrichten nicht abrufen." msgid "Discard" msgstr "Verwerfen" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Nachrichten" @@ -333,20 +334,20 @@ msgstr "Foto hochladen" msgid "Insert web link" msgstr "Einen Link einfügen" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Bitte warten" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -360,7 +361,7 @@ msgstr "Bitte warten" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Senden" @@ -431,7 +432,7 @@ msgstr "Persönliche Notizen sind nur für dich sichtbar." msgid "Save" msgstr "Speichern" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -444,99 +445,99 @@ msgid "User not found." msgstr "Benutzer nicht gefunden." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "jeder" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album wurde erfolgreich gelöscht." -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Album ist leer." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Das Foto konnte nicht gelöscht werden." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "Die maximale erlaubte Größe von Bildern beträgt %s" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "oder wähle ein bestehendes Album:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Berechtigungen" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Album löschen" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -546,133 +547,133 @@ msgstr "Album löschen" msgid "Cancel" msgstr "Abbrechen" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Album löschen" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Möchtest du wirklich dieses Foto löschen?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Foto löschen" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Zu entfernende Tags auswählen]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Das bist du" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Kommentar" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Vorschau" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "lädt..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Auswählen" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -681,23 +682,23 @@ msgstr "Auswählen" msgid "Delete" msgstr "Löschen" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Mag ich" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Mag ich nicht" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Karte" @@ -838,18 +839,18 @@ msgid "All contacts" msgstr "Alle Kontakte" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Folgende" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Gefolgte" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "Gegenseitige Freundschaft" @@ -1127,7 +1128,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "E-Mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1573,11 +1574,11 @@ msgstr "Beiträge von Kontakten, mit denen du interagierst und die mit dir inter #: src/Content/Conversation/Factory/Channel.php:43 msgid "Discover" -msgstr "" +msgstr "Entdecken" #: src/Content/Conversation/Factory/Channel.php:43 msgid "Posts from accounts that you don't follow, but that you might like." -msgstr "" +msgstr "Beiträge von Konten, denen du nicht folgst, aber die dir gefallen könnten." #: src/Content/Conversation/Factory/Channel.php:44 msgid "What's Hot" @@ -1605,29 +1606,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Beiträge von Accounts, welche von von Accounts gefolgt werden, denen du folgst " #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "Ruhige teilende" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "Beiträge von Konten, denen du folgst, die jedoch nicht sehr oft posten." + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "Bilder" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "Beiträge mit Bildern" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "Audio" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "Beiträge mit Audio" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "Videos" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "Beiträge mit Videos" @@ -1805,7 +1814,7 @@ msgid "" msgstr "Anonyme Besucher können deinen Kalender öffnen und dort deine öffentliche Ereignisse einsehen. Geburtstage deiner Kontakte sind nicht öffentlich." #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "Gruppen" @@ -1814,12 +1823,12 @@ msgstr "Gruppen" msgid "External link to group" msgstr "Externer Link zur Gruppe" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "weniger anzeigen" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "mehr anzeigen" @@ -1827,7 +1836,7 @@ msgstr "mehr anzeigen" msgid "Create new group" msgstr "Neue Gruppe erstellen" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "Veranstaltung" @@ -1835,7 +1844,7 @@ msgstr "Veranstaltung" msgid "status" msgstr "Status" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "Foto" @@ -1845,36 +1854,36 @@ msgstr "Foto" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Status anschauen" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Profil anschauen" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Bilder anschauen" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Kontakt anzeigen" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Private Nachricht senden" @@ -1910,7 +1919,7 @@ msgid "Languages" msgstr "Sprachen" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Verbinden/Folgen" @@ -1964,42 +1973,42 @@ msgstr "Unterhaltungen die du begonnen hast" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Deine Profilseite" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Bilder" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Deine Fotos" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Medien" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "Deine Beiträge die Medien beinhalten" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Kalender" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "Dein Kalender" @@ -2069,7 +2078,7 @@ msgstr "Tags" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Kontakte" @@ -2108,15 +2117,15 @@ msgstr "Nutzungsbedingungen" msgid "Terms of Service of this Friendica instance" msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Netzwerk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Unterhaltungen Deiner Kontakte" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" @@ -2145,7 +2154,7 @@ msgstr "Als gelesen markieren" msgid "Mark all system notifications as seen" msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Private E-Mail" @@ -2167,15 +2176,15 @@ msgstr "Andere Seiten verwalten" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Einstellungen" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Kontoeinstellungen" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Freunde und Kontakte verwalten/bearbeiten" @@ -2213,14 +2222,6 @@ msgstr "Navigation" msgid "Site map" msgstr "Sitemap" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - #: src/Content/Pager.php:216 msgid "first" msgstr "erste" @@ -2237,38 +2238,38 @@ msgstr "nächste" msgid "last" msgstr "letzte" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Bild/Foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Link zum Originalbeitrag" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Zum Öffnen/Schließen klicken" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Ungültiges Quell-Protokoll" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Ungültiges Link-Protokoll" @@ -2351,90 +2352,90 @@ msgstr "Weltweites Verzeichnis" msgid "Local Directory" msgstr "Lokales Verzeichnis" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "Circles" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Jeder" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "Keine Beziehung" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Beziehungen" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Alle Kontakte" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protokolle" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Alle Protokolle" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Gespeicherte Ordner" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Alles" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Kategorien" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archiv" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "An diesem Datum" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Personen" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Nachrichten" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" -msgstr "" +msgstr "Relais" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Kontenarten" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Alle" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "Kanäle" @@ -2484,12 +2485,12 @@ msgstr[1] "Trending Tags (%d Stunden)" msgid "More Trending Tags" msgstr "mehr Trending Tags" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "Beitrag an Gruppe" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Mention" @@ -2505,7 +2506,7 @@ msgid "Matrix:" msgstr "Matrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2517,13 +2518,13 @@ msgstr "Ort:" msgid "Network:" msgstr "Netzwerk:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Entfolgen" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "Gruppe betrachten" @@ -2896,29 +2897,25 @@ msgstr "Kein TLS gefunden" msgid "TLS detected" msgstr "TLS gefunden" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagicx PHP Erweiterung ist nicht installiert." -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP Erweiterung ist installiert" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick unterstützt GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Die Datenbank wird bereits verwendet." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Verbindung zur Datenbank gescheitert." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" -msgstr "" +msgstr "Unspezifiziert" #: src/Core/L10n.php:451 #, php-format @@ -2926,37 +2923,37 @@ msgid "%s (%s)" msgstr "%s (%s)" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Montag" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Dienstag" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Mittwoch" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Donnerstag" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Freitag" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Samstag" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Sonntag" @@ -3294,47 +3291,51 @@ msgstr "Circle Name: " msgid "Edit circles" msgstr "Circles bearbeiten" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "Gruppe" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Relais" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blockierte Domain" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Erwartetes Netzwerk %s stimmt nicht mit dem tatsächlichen Netzwerk überein %s" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "Dies scheint ein Relais-Konto zu sein. Diese können nicht von Nutzern gefolgt werden." + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." @@ -3382,12 +3383,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l F d, Y \\@ g:i A \\G\\M\\TP (e)" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Beginnt:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Endet:" @@ -3405,17 +3406,17 @@ msgid "today" msgstr "Heute" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "Monat" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "Woche" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "Tag" @@ -3460,109 +3461,109 @@ msgstr "D H:i" msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Karte anzeigen" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Karte verbergen" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch, %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s): %s" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "%s (%s): %s" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "%s ist blockiert" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "%s ist ignoriert" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "Inhalt vom %s ist zugeklappt" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Inhaltswarnung: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d Stimme)" msgstr[1] "%2$s (%3$d%%, %1$d Stimmen)" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d Stimme)" msgstr[1] "%2$s (%1$d Stimmen)" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d Stimme, Abstimmung endet: %s" msgstr[1] "%d Stimmen, Abstimmung endet: %s" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d Stimme." msgstr[1] "%d Stimmen." -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Abstimmung endet: %s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Auf separater Seite ansehen" @@ -3570,7 +3571,7 @@ msgstr "Auf separater Seite ansehen" msgid "[no subject]" msgstr "[kein Betreff]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Pinnwand-Bilder" @@ -3854,11 +3855,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "Beim Erstellen Ihres Circles ist ein Fehler aufgetreten. Bitte versuche es erneut." -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3866,7 +3867,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\nHallo %1$s\nein Admin von %2$s hat dir ein Nutzerkonto angelegt." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3895,14 +3896,14 @@ msgid "" "\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "" +msgstr "\n\t\tAnbei die Anmeldedetails::\n\n\t\tAdresse der Seite:\t%1$s\n\t\tBenutzername:\t\t%2$s\n\t\tPasswort:\t\t%3$s\n\n\t\tDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet\n\t\thast.\n\n\t\tBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf deiner Account-Seite zu kontrollieren. \n\n\t\tEventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können.\n\t\tBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\n\t\tWir empfehlen das Hinzufügen eines Profilfotos, das Hinzufügen einiger Profil-\"Schlüsselwörter\"\n\t\t(sehr nützlich, um neue Freunde zu finden) - und vielleicht das Land,\n\t\tin dem Du lebst, wenn Du nicht noch spezifischer sein willst.\n\n\t\tWir respektieren deine Privatsphäre - keine dieser Angaben ist notwendig\n\t\tWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen,\n\t\tneue und interessante Kontakte zu knüpfen.\n\n\t\tDu kannst dein Nutzerkonto jederzeit unter %1$s/settings/removeme wieder löschen.\n\n\t\tDanke und willkommen auf %4$s." -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3917,12 +3918,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tdanke für deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens freigeschaltet werden.\n\n\t\t\tDeine Zugangsdaten lauten wie folgt:\n\n\t\t\tSeitenadresse:\t%3$s\n\t\t\tAnmeldename:\t\t%4$s\n\t\t\tPasswort:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Registrierung als %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3931,7 +3932,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tHallo %1$s,\n\t\t\t\tDanke für die Registrierung auf %2$s. Dein Account wurde angelegt.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3962,7 +3963,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/settings/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "Benutzer mit Delegaten können nicht entfernt werden, bitte entferne zuerst die delegierten Benutzer" @@ -3987,14 +3988,14 @@ msgid "Disable" msgstr "Ausschalten" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Einschalten" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4034,12 +4035,12 @@ msgid "Addon %s failed to install." msgstr "Addon %s konnte nicht installiert werden" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Einstellungen speichern" @@ -4234,8 +4235,8 @@ msgid "Enable Debugging" msgstr "Protokoll führen" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "Schreibgeschützt, weil es durch eine Umgebungsvariable festgelegt ist" @@ -4396,269 +4397,269 @@ msgstr "Erstellt" msgid "Priority" msgstr "Priorität" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "%s ist keine gültige Angabe der maximalen Größe von Bildern" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "Keine Gemeinschaftsseite für Besucher" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Mehrbenutzer-Instanz" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Geschlossen" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Offen" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Nicht überprüfen" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "überprüfe die stabile Version" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "überprüfe die Entwicklungsversion" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "keine" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Lokale Kontakte" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Interaktionen" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Seite" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Allgemeine Informationen" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registrierung" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Datei hochladen" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Regeln" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Erweitert" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Nachrichten-Relais" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Verwende den Befehl \"console relay\" auf der Kommandozeile um weitere Relays hinzu zu fügen oder zu entfernen." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "Das System hat derzeit keinerlei Relays abonniert." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "Das System hat derzeit Abonnements bei folgenden Releays:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "Knoten umziehen" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Um deinen Friendica Knoten auf einen andere Domainnamen umzuziehen, und dabei alle existierenden Accounts und Beiträge zu behalten, kannst du dazu einen Konsolenbefehl verwenden. Die nötigen Aktualisierungen wird einige Zeit dauern und können nur auf der Konsole gestartet werden. Hierzu verwendest du einen Befehl wie den folgenden:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica Verzeichnis)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Seitenname" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Absender für Emails" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Name des System-Actors" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Name des internen System-Accounts der für ActivityPub Anfragen verwendet wird. Der Nutzername darf bisher nicht verwendet werden. Ist der Name einmal gesetzt kann er nicht mehr geändert werden." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "E-Mail Banner / Logo" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Link zu einem Icon, das Browser verwenden werden." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Touch Icon" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Systemsprache" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Systemweites Theme" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Einstellungen des Standard-Themes ändern" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Erzwinge SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Zeige den Hilfe-Eintrag im Navigationsmenü an" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Zeigt im Navigationsmenü den Eintrag für die Hilfe-Seiten an. Es ist immer möglich diese Seiten direkt über /help in der Adresseingabe des Browsers aufzurufen." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4666,35 +4667,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "Die maximale Größe von Bildern in Bytes. Grundeinstellung ist 0, welches keine Limitierung durch die Bildgröße bedeutet. Du kannst k, m oder g als Abkürzung hinter der Zahl angeben um KiB, MIB oder GiB zu definieren.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDer Wert der 1upload_max_filesize1 Variable in der php.ini Datei muss diesem Limit mindestens entsprechen.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDerzeit ist 3upload_max_filesize3 auf %s (%sByte) gesetzt." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximale Länge in Pixeln der längsten Seite eines hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Registrierungsmethode" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "Maximale Benutzeranzahl" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4702,157 +4703,167 @@ msgid "" "not when the policy is set to approval." msgstr "Falls definiert, wird die Registrierungsrichtlinie automatisch geschlossen, wenn die angegebene Anzahl von Benutzern erreicht ist, und die Registrierung wieder geöffnet, wenn die Anzahl unter den Grenzwert fällt. Dies funktioniert nur, wenn die Richtlinie auf \"Öffnen\" oder \"Schließen\" eingestellt ist, nicht aber, wenn die Richtlinie auf \"Genehmigung\" eingestellt ist." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Registrierungstext" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Verbotene Spitznamen" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "Komma-getrennte Liste von Domains, die als E-Mail-Adressen für Registrierungen auf dieser Website abgelehnt werden. Platzhalter sind erlaubt." + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "OEmbed nicht verwenden" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Vertrauenswürdige Drittanbieter-Domains" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Komma separierte Liste von Domains von denen Inhalte in Beiträgen eingebettet werden dürfen. Alle Subdomains werden ebenfalls akzeptiert." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "URL des weltweiten Verzeichnisses" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in den privaten Circle gepostet wird anstelle von öffentlichen." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw. zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Wenn ausgewählt, werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4860,11 +4871,11 @@ msgid "" "while." msgstr "Ersetze lokal gehostete, private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten, sich zunächst auf den jeweiligen Servern authentifizieren müssen, bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Sensibler Inhalt" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4873,339 +4884,339 @@ msgid "" "will be shown at the user registration page." msgstr "Wähle dies, um anzuzeigen, dass dein Knoten hauptsächlich für explizite Inhalte verwendet wird, die möglicherweise nicht für Minderjährige geeignet sind. Diese Info wird in der Knoteninformation veröffentlicht und kann durch das Globale Verzeichnis genutzt werden, um deinen Knoten von den Auflistungen auszuschließen. Zusätzlich wird auf der Registrierungsseite ein Hinweis darüber angezeigt." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "Proxy für externe Inhalte" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Externe Inhalte werden durch einen Proxy geleitet. Die wird z.B. für das aufrufen von OEmbed Inhalten verwendet und einigen anderen seltenen Fällen." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "Nur lokale Suche" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "Sperrt die Suche für nicht eingeloggte Benutzer, um zu verhindern, dass Crawler Ihr System blockieren." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "Blockierte Tags für Trend-Tags" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "Durch Kommata getrennte Liste von Hashtags, die nicht in den Trending Tags angezeigt werden sollen." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "Kontaktprofilbilder zwischenspeichern" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben, das remote_self Flag zu setzen" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Ist dies ausgewählt, kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im \"Erweitert\"-Reiter der Kontaktansicht markieren. Nach dem Setzen dieses Flags werden alle Top-Level-Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet (gespiegelt)." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" -msgstr "" +msgstr "Benutzern erlauben Relaiskanäle einzurichten" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." -msgstr "" +msgstr "Wenn aktiviert, ist es möglich, Relaisbenutzer zu erstellen, die dazu verwendet werden, Inhalte basierend auf benutzerdefinierten Kanälen erneut zu teilen." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "Einstellen der Abrufhäufigkeit" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "Automatisches Erkennen und Einstellen der besten Abrufhäufigkeit." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "Minimales Abfrageintervall" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "Minimaler Abstand in Minuten zwischen zwei Abfragen für Mail- und Feed-Kontakte. Sinnvolle Werte liegen zwischen 1 und 59." -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "Erlaube Mehrfachregistrierung" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "Erlaube es Benutzern weitere Konten für Organisationen o.ä. mit der gleichen E-Mail Adresse anzulegen." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "OpenID aktivieren" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "OpenID Unterstützung bei der Registrierung und dem Login aktivieren." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "Namen auf Vollständigkeit überprüfen" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "Verhindert, dass sich Benutzer mit einem Anzeigenamen registrieren, der aus weniger als zwei durch Leerzeichen getrennten Teilen besteht." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "Email den Administratoren bei neuen Registrierungen" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "Wenn diese Option aktiviert ist und die Registrierung auf offen eingestellt ist, wird den Administratoren bei jeder neuen Registierung eine Email geschickt." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Für Besucher verfügbare Gemeinschaftsseite" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "Die maximale Anzahl von Beiträgen pro Benutzer auf der lokalen Gemeinschaftsseite. Dies ist nützlich, wenn ein einzelner Benutzer die lokale Gemeinschaftsseite überflutet." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "Beiträge pro Server auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "Die maximale Anzahl von Beiträgen pro Server auf der globalen Gemeinschaftsseite. Dies ist nützlich, wenn Beiträge von einem einzelnen Server die globale Gemeinschaftsseite überfluten." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "E-Mail Unterstützung aktivieren" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Diaspora-Unterstützung aktivieren" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatskontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL-Zertifikat eine Verbindung herstellen kann." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy-Nutzer" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "Nutzername für den Proxy-Server" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Wenn Friendica einen Proxy-Server verwenden soll um das Netzwerk zu erreichen, füge hier die URL des Proxys ein." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Netzwerk-Wartezeit" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Minimaler Speicher" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Optimiere die Tabellen regelmäßig" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Optimiert Tabellen wie den Cache oder die Worker-Warteschlage regelmäßig." -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Endecke folgende und gefolgte Kontakte von Kontakten" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Ist dies aktiv, werden die Kontakte auf deren folgenden und gefolgten Kontakte überprüft." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Keine - deaktiviert" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Lokale Kontakte - Die Beziehungen der lokalen Kontakte werden analysiert." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interaktionen - Kontakte der lokalen Kontakte sowie die Profile die mit öffentlichen lokalen Beiträgen interagiert haben, werden bzgl. ihrer Beziehungen analysiert." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "Nur Kontakte/Server mit lokalen Daten aktualisieren" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "Wenn diese Option aktiviert ist, sucht das System nur nach Änderungen bei Kontakten und Servern, die mit dieser Instanz interagiert haben, indem sie entweder in einer Kontaktliste eines Benutzers enthalten sind oder wenn Beiträge oder Kommentare von diesem Kontakt in dieser Instanz vorhanden sind." -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Gleiche die Kontakte mit dem Directory-Server ab" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Ist dies aktiv, wird das System regelmäßig auf dem Verzeichnis-Server nach neuen potentiellen Kontakten nachsehen." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "Regelmäßige Abfrage anderer Server nach Kontakten und Servern, welche dort bekannt sind. Das System fragt Friendica, Mastodon und Hubzilla Server ab. Lass diese Options auf kleinen Instanzen deaktiviert, um die Datenbankgröße und -last zu verringern." -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Tage zwischen erneuten Abfragen" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "Anzahl der Tage, nach denen ein Server nach seinen Kontakten und den ihm bekannten Servern abgefragt wird. Dies wird nur verwendet, wenn die Erkennung aktiviert ist." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt, um die Suchresultate zu verbessern, wenn die Suche wiederholt wird." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Server-Informationen veröffentlichen" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5213,50 +5224,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Personen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Konnektoren. Für Details bitte the-federation.info aufrufen." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Suche nach Updates" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Wenn diese Option aktiviert ist, wird regelmäßig nach neuen Friendica-Versionen auf github gesucht. Wenn es eine neue Version gibt, wird dies auf der Übersichtsseite im Admin-Panel angezeigt." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Tags unterdrücken" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Datenbank aufräumen" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Lebensdauer von Beiträgen anderer Knoten" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl in Tagen, nach der Beiträge, die auf anderen Knoten des Netzwerks verfasst wurden, gelöscht werden sollen. Eigene Beiträge sowie markierte oder abgespeicherte Beiträge werden nicht gelöscht. Ein Wert von 0 deaktiviert das automatische Löschen von Beiträgen." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Lebensdauer nicht angeforderter Beiträge" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5264,175 +5275,175 @@ msgid "" "items if set to 0." msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl von Tagen, nach denen nicht angeforderte Beiträge (hauptsächlich solche, die über das Relais eintreffen) gelöscht werden. Der Standardwert beträgt 90 Tage. Wird dieser Wert auf 0 gesetzt, wird die Lebensdauer von Beiträgen anderer Knoten verwendet." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Lebensdauer der Beiträge" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "Maximale Anzahl von Kommentaren in der Einzelansicht" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Wie viele Kommentare sollen auf der Einzelansicht eines Beitrags angezeigt werden? Grundeinstellung sind 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "Beiträge pro Seite" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "Anzahl der Elemente pro Seite in den Stream-Seiten (Netzwerk, Community, Profil/Kontaktstatus, Suche)." -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "Beiträge pro Seite für mobile Endgeräte" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "Anzahl der Beiträge pro Seite in Stream-Seiten (Netzwerk, Community, Profil-/Kontaktstatus, Suche) für mobile Endgeräte." -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Temp-Pfad" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" -msgstr "" +msgstr "Maximales Alter der Elemente in der Suchtabelle" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." -msgstr "" +msgstr "Maximales Alter der Elemente in der Suchtabelle in Tagen. Niedrigere Werte erhöhen die Leistung und reduzieren den Festplattenverbrauch. 0 bedeutet keine Altersbeschränkung." -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "Erstelle Zählungen je Circle bei der Berechnung der Netzwerkanzahl" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "Auf Systemen mit Benutzern, die häufig Circles verwenden, kann die Abfrage sehr aufwändig sein." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "\"view\"-Aktivitäten verarbeiten" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "\"view\"-Aktivitäten werden zumeist von Peertube-Systemen genutzt. Standardmäßig werden sie aus Leistungsgründen nicht verarbeitet. Aktivieren Sie diese Option nur auf performanten Systemen." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "Anzahl der Tage, nach denen ein Kontakt archiviert wird" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "Die Anzahl der Tage, die wir versuchen, Inhalte zu liefern oder die Kontaktdaten zu aktualisieren, bevor wir einen Kontakt archivieren." -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Maximale Anzahl parallel laufender Worker" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setze diesen Wert auf %d. Auf größeren Systemen funktioniert ein Wert von %d recht gut. Standardeinstellung sind %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "Maximale Last für Worker" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "Maximale Auslastung des Systems, welche eine Verzögerung vor jedem Aufruf des Workers verursacht." -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Aktiviere Fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten, wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "Entkoppelter Empfänger" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "Entkoppelt eingehende ActivityPub-Beiträge, indem sie im Hintergrund über einen Worker-Prozess verarbeitet werden. Aktiviere dies nur auf schnellen Systemen." -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "Cron Intervall" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "Minimaler Intervall in Minuten zwischen zwei Aufrufen des \"Cron\" Arbeitsprozesses." -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "Worker-Verzögerungsgrenze" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "Standardmäßig versucht das System 15 Mal zuzustellen, bevor es den Vorgang abbricht." -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "Worker Abrufbegrenzung" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5440,153 +5451,153 @@ msgid "" "system." msgstr "Anzahl der Worker-Aufgaben, die in einer einzigen Abfrage abgerufen werden. Höhere Werte sollten die Leistung verbessern, zu hohe Werte werden sie wahrscheinlich verringern. Änder dies nur, wenn Du weißt, wie Du die Leistung des Systems messen kannst." -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Direkte Relais-Übertragung" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Geltungsbereich des Relais" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle öffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Deaktiviert" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "Alle" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "Schlagwörter" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Server-Schlagworte" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Server Tags ablehnen" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Durch Kommas getrennte Liste der Tags, die abgelehnt werden" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" -msgstr "" +msgstr "Maximale Anzahl an Tags" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." -msgstr "" +msgstr "Maximale Anzahl von Tags in einem Beitrag, bevor er als Spam abgelehnt wird. Der Beitrag muss mindestens einen Link enthalten. Beiträge von abonnierten Konten werden nicht abgelehnt." -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Verwende Schlagworte der Nutzer" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "Nicht erkannte Sprachen ablehnen" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "Wenn diese Option aktiviert ist, werden Beiträge mit nicht erkannten Sprachen abgelehnt." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "Sprachqualität" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "Die minimale erkannte Sprachqualität, die erforderlich ist, um den Beitrag anzunehmen." -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "Anzahl der Sprachen für die Spracherkennung" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "Das System erkennt eine Liste von Sprachen pro Beitrag. Nur wenn die gewünschten Sprachen in der Liste enthalten sind, wird die Nachricht akzeptiert. Je höher die Zahl, desto mehr Beiträge werden fälschlicherweise erkannt." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "Maximales Alter des Kanals" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "Hier wird das maximale Alter in Stunden von Beiträgen festgelegt, die in Kanälen angezeigt werden sollen. Dies wirkt sich auf die Leistung der Kanäle aus." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "Maximale Anzahl von Kanalbeiträgen" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "Aus Leistungsgründen verwenden die Kanäle eine dedizierte Tabelle zur Speicherung von Inhalten. Je höher der Wert, desto langsamer sind die Kanäle." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "Interaktionsscore Tage" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "Anzahl der Tage, die zur Berechnung des Interaktionsscores herangezogen werden." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "Maximale Anzahl von Beiträgen pro Autor" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "Maximale Anzahl von Beiträgen pro Seite und Autor, wenn die Kontakthäufigkeit auf \"Nur wenige Beiträge anzeigen\" eingestellt ist. Wenn es mehr Beiträge gibt, wird der Beitrag mit den meisten Interaktionen angezeigt." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "Interaktionstage für teilende" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "Anzahl der Tage der letzten Interaktion, die verwendet werden, um festzulegen, welche teilenden für den Kanal \"Geteilt von teilenden\" verwendet werden." -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Umsiedlung starten" @@ -6174,11 +6185,11 @@ msgstr "Die Veranstaltung fehlt." msgid "Failed to remove event" msgstr "Entfernen der Veranstaltung fehlgeschlagen" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." @@ -6270,7 +6281,7 @@ msgstr "Ansehen" msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "Liste" @@ -6918,7 +6929,7 @@ msgid "Actions" msgstr "Aktionen" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Status" @@ -7090,33 +7101,33 @@ msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar." msgid "Not available." msgstr "Nicht verfügbar." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "Circle ist nicht vorhanden" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "Circle: %s" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "Fehler %d (%s) beim Abruf der Timeline." -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "Netzwerkfeed nicht verfügbar." -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Eigene Kontakte" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Einschließen" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Verbergen" @@ -7148,7 +7159,7 @@ msgid "Result Item" msgstr "Resultierender Eintrag" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7159,179 +7170,179 @@ msgstr[1] "Fehler" msgid "Source activity" msgstr "Quelle der Aktivität" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Originaltext:" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (pures HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (rohes HTML)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Beitragskörper" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Tags des Beitrags" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (pures HTML)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Originaltext (Diaspora Format): " -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Originaltext (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (pures HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Reine HTML Eingabe" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "HTML Eingabe" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "HTML Purified (raw)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "HTML Purified (hex)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "HTML Purified" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (pures HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (kompakt)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Dekodierter Beitrag" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "Beiträgs Array bevor die Entitäten erweitert wurden." -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Konvertierter Beitrag" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "Konvertierter Beitragskörper" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "Das Twitter-Addon konnte nicht im addpn/ Verzeichnis gefunden werden." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Babel Diagnostik" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Quelltext" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter Quelle / Tweet URL (benötigt API Schlüssel)" @@ -7840,7 +7851,7 @@ msgstr "Dateien" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Hochladen" @@ -7861,14 +7872,14 @@ msgstr "Die Datei ist größer als das erlaubte Limit von %s" msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." @@ -8578,7 +8589,7 @@ msgstr "URL des gemeldeten Kontakts." #: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 msgid "Channel Relay" -msgstr "" +msgstr "Kanalrelais" #: src/Module/Moderation/Summary.php:77 msgid "Registered users" @@ -8901,7 +8912,7 @@ msgstr "Möchtest du dieser Anwendung den Zugriff auf Deine Beiträge und Kontak msgid "Unsupported or missing response type" msgstr "Der Typ der Antwort fehlt oder wird nicht unterstützt" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Daten der Anfrage sind nicht vollständig" @@ -8912,11 +8923,11 @@ msgid "" "close this window: %s" msgstr "Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "Ungültige Daten oder unbekannter Client" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt" @@ -9041,21 +9052,21 @@ msgstr "Addressaten: %s
" msgid "Attributed To: %s
" msgstr "Zurückzuführen auf: %s
" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "Das Foto ist nicht verfügbar." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "Das Bild mit ID %s ist nicht verfügbar." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "Ungültige externe Ressource mit der URL %s" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Fehlerhaftes Foto mit der ID %s." @@ -9107,27 +9118,27 @@ msgstr "Keine Kontakte." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Timeline von %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Beiträge von %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Kommentare von %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" @@ -9146,11 +9157,11 @@ msgid "" "administrator" msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Album betrachten" @@ -9741,7 +9752,7 @@ msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." msgid "" "Account for a service that automatically shares content based on user " "defined channels." -msgstr "" +msgstr "Konto für einen Dienst, der automatisch Inhalte basierend auf vom Benutzer definierten Kanälen teilt." #: src/Module/Settings/Account.php:443 msgid "Personal Page Subtypes" @@ -10196,7 +10207,7 @@ msgstr "Keine Addon-Einstellungen konfiguriert" msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." -msgstr "" +msgstr "Diese Seite kann verwendet werden, um die Kanäle zu definieren, die automatisch von Deinem Konto geteilt werden." #: src/Module/Settings/Channels.php:147 msgid "This page can be used to define your own channels." @@ -10210,15 +10221,15 @@ msgstr "Veröffentlichen" msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." -msgstr "" +msgstr "Wenn ausgewählt, werden die Kanalergebnisse erneut geteilt. Dies funktioniert nur für öffentliche ActivityPub-Beiträge aus der öffentlichen Timeline oder den vom Benutzer definierten Circles." #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "Bezeichnung" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Beschreibung" @@ -10616,181 +10627,189 @@ msgstr "Potentielle Bevollmächtigte" msgid "No entries." msgstr "Keine Einträge." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Das gewählte Theme ist nicht verfügbar" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nicht unterstützt)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "Keine Vorschau" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "Kein Bild" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "Kleines Bild" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "Große Bilder" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Allgemeine Theme-Einstellungen" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Einstellungen zum Inhalt" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "Timelines" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Theme:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "Zeige Emoticons" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Wenn dies aktiviert ist, werden Text-Emoticons in Beiträgen durch Symbole ersetzt." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "Intelligentes Threading aktivieren" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen ein." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "Das \"Nicht-mögen\" Feature anzeigen" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Einen \"Ich mag das nicht\" Button und die dislike Reaktion auf Beiträge und Kommentare anzeigen." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Teilenden anzeigen" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "Sensible Inhalte anzeigen" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "Wenn aktiviert, werden Bilder in als \"sensibel\" markierten Beiträgen nicht verwischt angezeigt." + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Bleib lokal" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "Die Checkbox zum Löschen von Beiträgen anzeigen" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "Zeigt die Checkbox für das Löschen von Beiträgen auf der Netzwerkseite an." -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "Anzeige der der anstehenden Ereignisse" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "Zeigt die Geburtstagserinnerungen und die anstehenden Veranstaltungen auf der Netzwerkseite an." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "Vorschau Modus für Links" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "Lesezeichen" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Aktiviere die Timelines, die Sie im Kanäle-Widget sehen möchten. Setze ein Lesezeichen für Timelines, die du im oberen Menü sehen willst." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" -msgstr "Channel Spachen:" +msgstr "Channel Sprachen:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Wochenbeginn:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "Standard-Kalenderansicht:" @@ -10955,7 +10974,7 @@ msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] scheiterte." @@ -10995,31 +11014,31 @@ msgstr "Bild wie es ist verwenden" msgid "Missing uploaded image." msgstr "Hochgeladenes Bild nicht gefunden." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Einstellungen zum Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Aktuelles Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Profilbild aktualisieren" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Bild hochladen" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "oder" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "diesen Schritt überspringen" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "wähle ein Foto aus deinen Fotoalben" @@ -12719,124 +12738,100 @@ msgstr "slackr" msgid "Variations" msgstr "Variationen" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Hell (Akzentuiert)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Dunkel (Akzentuiert)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Schwarz (Akzentuiert)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Hinweis" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Benutzerdefiniert" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "Erscheinungsbild" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Vermächtnis" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "Akzentfarbe" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Akzentuiert" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Farbschema auswählen" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Wähle einen Akzent für das Thema" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Blau" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Rot" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Violett" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Grün" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Farbschema kopieren oder einfügen" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Du kannst den String mit den Farbschema Informationen mit anderen Teilen. Wenn du einen neuen Farbschema-String hier einfügst wird er für deine Einstellungen übernommen." -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Icon Farbe in der Navigationsleiste" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Linkfarbe" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Hintergrundfarbe festlegen" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Opazität des Hintergrunds von Beiträgen" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Hintergrundbild festlegen" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Stil des Hintergrundbildes" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "Immer die Composer Seite öffnen" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Neue Beiträge werden immer in der Composer Seite anstelle des Dialoges bearbeitet. Ist diese Option deaktiviert, kann die Composer Seite durch einen Klick mit der mittleren Maustaste geöffnet werden." -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Hintergrundbild der Login-Seite" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Hintergrundfarbe der Login-Seite" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Wenn die Theme-Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer." @@ -12876,19 +12871,35 @@ msgstr "Mosaik" msgid "Repeat image to fill the screen." msgstr "Wiederhole das Bild, um den Bildschirm zu füllen." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Zum Inhalt der Seite gehen" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Zurück nach Oben" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "Hell" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "Dunkel" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "Schwarz" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Benutzerdefiniert" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Gast" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Besucher" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 6d620a3253..264bf7822b 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -417,12 +417,16 @@ $a->strings['%s from %s'] = '%s von %s'; $a->strings['View in context'] = 'Im Zusammenhang betrachten'; $a->strings['For you'] = 'Für Dich'; $a->strings['Posts from contacts you interact with and who interact with you'] = 'Beiträge von Kontakten, mit denen du interagierst und die mit dir interagieren'; +$a->strings['Discover'] = 'Entdecken'; +$a->strings['Posts from accounts that you don\'t follow, but that you might like.'] = 'Beiträge von Konten, denen du nicht folgst, aber die dir gefallen könnten.'; $a->strings['What\'s Hot'] = 'Angesagt'; $a->strings['Posts with a lot of interactions'] = 'Beiträge mit vielen Interaktionen'; $a->strings['Posts in %s'] = 'Beiträge in %s'; $a->strings['Posts from your followers that you don\'t follow'] = 'Beiträge von deinen Followern, denen du nicht folgst'; $a->strings['Sharers of sharers'] = 'Geteilt von teilenden '; $a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Beiträge von Accounts, welche von von Accounts gefolgt werden, denen du folgst '; +$a->strings['Quiet sharers'] = 'Ruhige teilende'; +$a->strings['Posts from accounts that you follow but who don\'t post very often'] = 'Beiträge von Konten, denen du folgst, die jedoch nicht sehr oft posten.'; $a->strings['Images'] = 'Bilder'; $a->strings['Posts with images'] = 'Beiträge mit Bildern'; $a->strings['Audio'] = 'Audio'; @@ -555,8 +559,6 @@ $a->strings['Moderation'] = 'Moderation'; $a->strings['Content and user moderation'] = 'Moderation von Nutzern und Inhalten'; $a->strings['Navigation'] = 'Navigation'; $a->strings['Site map'] = 'Sitemap'; -$a->strings['Embedding disabled'] = 'Einbettungen deaktiviert'; -$a->strings['Embedded content'] = 'Eingebetteter Inhalt'; $a->strings['first'] = 'erste'; $a->strings['prev'] = 'vorige'; $a->strings['next'] = 'nächste'; @@ -609,6 +611,7 @@ $a->strings['On this date'] = 'An diesem Datum'; $a->strings['Persons'] = 'Personen'; $a->strings['Organisations'] = 'Organisationen'; $a->strings['News'] = 'Nachrichten'; +$a->strings['Relays'] = 'Relais'; $a->strings['Account Types'] = 'Kontenarten'; $a->strings['All'] = 'Alle'; $a->strings['Channels'] = 'Kanäle'; @@ -716,9 +719,9 @@ $a->strings['No TLS detected'] = 'Kein TLS gefunden'; $a->strings['TLS detected'] = 'TLS gefunden'; $a->strings['ImageMagick PHP extension is not installed'] = 'ImageMagicx PHP Erweiterung ist nicht installiert.'; $a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP Erweiterung ist installiert'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick unterstützt GIF'; $a->strings['Database already in use.'] = 'Die Datenbank wird bereits verwendet.'; $a->strings['Could not connect to database.'] = 'Verbindung zur Datenbank gescheitert.'; +$a->strings['Undetermined'] = 'Unspezifiziert'; $a->strings['%s (%s)'] = '%s (%s)'; $a->strings['Monday'] = 'Montag'; $a->strings['Tuesday'] = 'Dienstag'; @@ -823,6 +826,7 @@ $a->strings['Blocked domain'] = 'Blockierte Domain'; $a->strings['Connect URL missing.'] = 'Connect-URL fehlt'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke'; $a->strings['Expected network %s does not match actual network %s'] = 'Erwartetes Netzwerk %s stimmt nicht mit dem tatsächlichen Netzwerk überein %s'; +$a->strings['This seems to be a relay account. They can\'t be followed by users.'] = 'Dies scheint ein Relais-Konto zu sein. Diese können nicht von Nutzern gefolgt werden.'; $a->strings['The profile address specified does not provide adequate information.'] = 'Die angegebene Profiladresse liefert unzureichende Informationen.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.'; $a->strings['An author or name was not found.'] = 'Es wurde kein Autor oder Name gefunden.'; @@ -963,6 +967,57 @@ $a->strings[' the administrator of %2$s has set up an account for you.'] = ' Hallo %1$s ein Admin von %2$s hat dir ein Nutzerkonto angelegt.'; +$a->strings[' + The login details are as follows: + + Site Location: %1$s + Login Name: %2$s + Password: %3$s + + You may change your password from your account "Settings" page after logging + in. + + Please take a few moments to review the other account settings on that page. + + You may also wish to add some basic information to your default profile + (on the "Profiles" page) so that other people can easily find you. + + We recommend adding a profile photo, adding some profile "keywords" + (very useful in making new friends) - and perhaps what country you live in; + if you do not wish to be more specific than that. + + We fully respect your right to privacy, and none of these items are necessary. + If you are new and do not know anybody here, they may help + you to make some new and interesting friends. + + If you ever want to delete your account, you can do so at %1$s/settings/removeme + + Thank you and welcome to %4$s.'] = ' + Anbei die Anmeldedetails:: + + Adresse der Seite: %1$s + Benutzername: %2$s + Passwort: %3$s + + Du kannst dein Passwort unter "Einstellungen" ändern, sobald du dich angemeldet + hast. + + Bitte nimm dir ein paar Minuten, um die anderen Einstellungen auf deiner Account-Seite zu kontrollieren. + + Eventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können. + Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite). + + Wir empfehlen das Hinzufügen eines Profilfotos, das Hinzufügen einiger Profil-"Schlüsselwörter" + (sehr nützlich, um neue Freunde zu finden) - und vielleicht das Land, + in dem Du lebst, wenn Du nicht noch spezifischer sein willst. + + Wir respektieren deine Privatsphäre - keine dieser Angaben ist notwendig + Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, + neue und interessante Kontakte zu knüpfen. + + Du kannst dein Nutzerkonto jederzeit unter %1$s/settings/removeme wieder löschen. + + Danke und willkommen auf %4$s.'; $a->strings['Registration details for %s'] = 'Details der Registration von %s'; $a->strings[' Dear %1$s, @@ -1235,6 +1290,8 @@ $a->strings['Allowed friend domains'] = 'Erlaubte Domains für Kontakte'; $a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.'; $a->strings['Allowed email domains'] = 'Erlaubte Domains für E-Mails'; $a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.'; +$a->strings['Disallowed email domains'] = 'Nicht erlaubte Domains für E-Mails'; +$a->strings['Comma separated list of domains which are rejected as email addresses for registrations to this site. Wildcards are accepted.'] = 'Komma-getrennte Liste von Domains, die als E-Mail-Adressen für Registrierungen auf dieser Website abgelehnt werden. Platzhalter sind erlaubt.'; $a->strings['No OEmbed rich content'] = 'OEmbed nicht verwenden'; $a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden.'; $a->strings['Trusted third-party domains'] = 'Vertrauenswürdige Drittanbieter-Domains'; @@ -1266,6 +1323,8 @@ $a->strings['Cache contact avatars'] = 'Kontaktprofilbilder zwischenspeichern'; $a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance.'; $a->strings['Allow Users to set remote_self'] = 'Nutzern erlauben, das remote_self Flag zu setzen'; $a->strings['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.'] = 'Ist dies ausgewählt, kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im "Erweitert"-Reiter der Kontaktansicht markieren. Nach dem Setzen dieses Flags werden alle Top-Level-Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet (gespiegelt).'; +$a->strings['Allow Users to set up relay channels'] = 'Benutzern erlauben Relaiskanäle einzurichten'; +$a->strings['If enabled, it is possible to create relay users that are used to reshare content based on user defined channels.'] = 'Wenn aktiviert, ist es möglich, Relaisbenutzer zu erstellen, die dazu verwendet werden, Inhalte basierend auf benutzerdefinierten Kanälen erneut zu teilen.'; $a->strings['Adjust the feed poll frequency'] = 'Einstellen der Abrufhäufigkeit'; $a->strings['Automatically detect and set the best feed poll frequency.'] = 'Automatisches Erkennen und Einstellen der besten Abrufhäufigkeit.'; $a->strings['Minimum poll interval'] = 'Minimales Abfrageintervall'; @@ -1347,6 +1406,8 @@ $a->strings['Temp path'] = 'Temp-Pfad'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad.'; $a->strings['Only search in tags'] = 'Nur in Tags suchen'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'Auf großen Knoten kann die Volltext-Suche das System ausbremsen.'; +$a->strings['Maximum age of items in the search table'] = 'Maximales Alter der Elemente in der Suchtabelle'; +$a->strings['Maximum age of items in the search table in days. Lower values will increase the performance and reduce disk usage. 0 means no age restriction.'] = 'Maximales Alter der Elemente in der Suchtabelle in Tagen. Niedrigere Werte erhöhen die Leistung und reduzieren den Festplattenverbrauch. 0 bedeutet keine Altersbeschränkung.'; $a->strings['Generate counts per contact circle when calculating network count'] = 'Erstelle Zählungen je Circle bei der Berechnung der Netzwerkanzahl'; $a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Auf Systemen mit Benutzern, die häufig Circles verwenden, kann die Abfrage sehr aufwändig sein.'; $a->strings['Process "view" activities'] = '"view"-Aktivitäten verarbeiten'; @@ -1378,6 +1439,8 @@ $a->strings['Server tags'] = 'Server-Schlagworte'; $a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt.'; $a->strings['Deny Server tags'] = 'Server Tags ablehnen'; $a->strings['Comma separated list of tags that are rejected.'] = 'Durch Kommas getrennte Liste der Tags, die abgelehnt werden'; +$a->strings['Maximum amount of tags'] = 'Maximale Anzahl an Tags'; +$a->strings['Maximum amount of tags in a post before it is rejected as spam. The post has to contain at least one link. Posts from subscribed accounts will not be rejected.'] = 'Maximale Anzahl von Tags in einem Beitrag, bevor er als Spam abgelehnt wird. Der Beitrag muss mindestens einen Link enthalten. Beiträge von abonnierten Konten werden nicht abgelehnt.'; $a->strings['Allow user tags'] = 'Verwende Schlagworte der Nutzer'; $a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert.'; $a->strings['Deny undetected languages'] = 'Nicht erkannte Sprachen ablehnen'; @@ -2098,6 +2161,7 @@ $a->strings['%s total report'] = [ 1 => '%s Reports insgesamt', ]; $a->strings['URL of the reported contact.'] = 'URL des gemeldeten Kontakts.'; +$a->strings['Channel Relay'] = 'Kanalrelais'; $a->strings['Registered users'] = 'Registrierte Personen'; $a->strings['Pending registrations'] = 'Anstehende Anmeldungen'; $a->strings['%s user blocked'] = [ @@ -2365,6 +2429,7 @@ $a->strings['Contact CSV file upload error'] = 'Fehler beim Hochladen der Kontak $a->strings['Importing Contacts done'] = 'Kontakte wurden importiert.'; $a->strings['Relocate message has been send to your contacts'] = 'Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Konnte dein Profil nicht finden. Bitte kontaktiere den Admin.'; +$a->strings['Account for a service that automatically shares content based on user defined channels.'] = 'Konto für einen Dienst, der automatisch Inhalte basierend auf vom Benutzer definierten Kanälen teilt.'; $a->strings['Personal Page Subtypes'] = 'Unterarten der persönlichen Seite'; $a->strings['Community Group Subtypes'] = 'Unterarten der Gemeinschaftsgruppen'; $a->strings['Account for a personal profile.'] = 'Konto für ein persönliches Profil.'; @@ -2464,8 +2529,10 @@ $a->strings['If you have moved this profile from another server, and some of you $a->strings['Resend relocate message to contacts'] = 'Umzugsbenachrichtigung erneut an Kontakte senden'; $a->strings['Addon Settings'] = 'Addon Einstellungen'; $a->strings['No Addon settings configured'] = 'Keine Addon-Einstellungen konfiguriert'; +$a->strings['This page can be used to define the channels that will automatically be reshared by your account.'] = 'Diese Seite kann verwendet werden, um die Kanäle zu definieren, die automatisch von Deinem Konto geteilt werden.'; $a->strings['This page can be used to define your own channels.'] = 'Auf dieser Seite kannst du deine eigenen Kanäle definieren.'; $a->strings['Publish'] = 'Veröffentlichen'; +$a->strings['When selected, the channel results are reshared. This only works for public ActivityPub posts from the public timeline or the user defined circles.'] = 'Wenn ausgewählt, werden die Kanalergebnisse erneut geteilt. Dies funktioniert nur für öffentliche ActivityPub-Beiträge aus der öffentlichen Timeline oder den vom Benutzer definierten Circles.'; $a->strings['Label'] = 'Bezeichnung'; $a->strings['Description'] = 'Beschreibung'; $a->strings['Access Key'] = 'Zugriffsschlüssel'; @@ -2581,6 +2648,8 @@ $a->strings['Display the Dislike feature'] = 'Das "Nicht-mögen" Feature anzeige $a->strings['Display the Dislike button and dislike reactions on posts and comments.'] = 'Einen "Ich mag das nicht" Button und die dislike Reaktion auf Beiträge und Kommentare anzeigen.'; $a->strings['Display the resharer'] = 'Teilenden anzeigen'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde.'; +$a->strings['Display sensitive content'] = 'Sensible Inhalte anzeigen'; +$a->strings['If enabled, pictures in posts marked as "sensitive" will not be blurred.'] = 'Wenn aktiviert, werden Bilder in als "sensibel" markierten Beiträgen nicht verwischt angezeigt.'; $a->strings['Stay local'] = 'Bleib lokal'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird'; $a->strings['Show the post deletion checkbox'] = 'Die Checkbox zum Löschen von Beiträgen anzeigen'; @@ -2591,7 +2660,7 @@ $a->strings['Link preview mode'] = 'Vorschau Modus für Links'; $a->strings['Appearance of the link preview that is added to each post with a link.'] = 'Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird.'; $a->strings['Bookmark'] = 'Lesezeichen'; $a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Aktiviere die Timelines, die Sie im Kanäle-Widget sehen möchten. Setze ein Lesezeichen für Timelines, die du im oberen Menü sehen willst.'; -$a->strings['Channel languages:'] = 'Channel Spachen:'; +$a->strings['Channel languages:'] = 'Channel Sprachen:'; $a->strings['Select all languages that you want to see in your channels.'] = 'Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst.'; $a->strings['Beginning of week:'] = 'Wochenbeginn:'; $a->strings['Default calendar view:'] = 'Standard-Kalenderansicht:'; @@ -3044,16 +3113,10 @@ $a->strings['darkzero'] = 'darkzero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'Variationen'; -$a->strings['Light (Accented)'] = 'Hell (Akzentuiert)'; -$a->strings['Dark (Accented)'] = 'Dunkel (Akzentuiert)'; -$a->strings['Black (Accented)'] = 'Schwarz (Akzentuiert)'; $a->strings['Note'] = 'Hinweis'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen'; -$a->strings['Custom'] = 'Benutzerdefiniert'; -$a->strings['Legacy'] = 'Vermächtnis'; -$a->strings['Accented'] = 'Akzentuiert'; -$a->strings['Select color scheme'] = 'Farbschema auswählen'; -$a->strings['Select scheme accent'] = 'Wähle einen Akzent für das Thema'; +$a->strings['Appearance'] = 'Erscheinungsbild'; +$a->strings['Accent color'] = 'Akzentfarbe'; $a->strings['Blue'] = 'Blau'; $a->strings['Red'] = 'Rot'; $a->strings['Purple'] = 'Violett'; @@ -3083,6 +3146,10 @@ $a->strings['Mosaic'] = 'Mosaik'; $a->strings['Repeat image to fill the screen.'] = 'Wiederhole das Bild, um den Bildschirm zu füllen.'; $a->strings['Skip to main content'] = 'Zum Inhalt der Seite gehen'; $a->strings['Back to top'] = 'Zurück nach Oben'; +$a->strings['Light'] = 'Hell'; +$a->strings['Dark'] = 'Dunkel'; +$a->strings['Black'] = 'Schwarz'; +$a->strings['Custom'] = 'Benutzerdefiniert'; $a->strings['Guest'] = 'Gast'; $a->strings['Visitor'] = 'Besucher'; $a->strings['Alignment'] = 'Ausrichtung'; diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po index af806f3b49..346f5cbb3e 100644 --- a/view/lang/eo/messages.po +++ b/view/lang/eo/messages.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: St John Karp , 2017\n" "Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n" @@ -41,14 +41,14 @@ msgstr "" msgid "Empty post discarded." msgstr "Forviŝis malplenan afiŝon." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Elemento ne estas trovita." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -71,14 +71,14 @@ msgstr "Elemento ne estas trovita." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Malpermesita." @@ -243,7 +243,7 @@ msgstr "Malsukcese provis kolekti mesaĝojn." msgid "Discard" msgstr "Forviŝi" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Mesaĝoj" @@ -288,20 +288,20 @@ msgstr "Alŝuti bildon" msgid "Insert web link" msgstr "Enmeti retan adreson" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Bonvolu atendi" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -315,7 +315,7 @@ msgstr "Bonvolu atendi" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Sendi" @@ -386,7 +386,7 @@ msgstr "" msgid "Save" msgstr "Konservi" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -399,99 +399,99 @@ msgid "User not found." msgstr "" #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Bildalbumoj" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "̂Ĵusaj bildoj" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Alŝuti novajn bildojn" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "ĉiuj" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Kontaktoj informoj ne disponeblas" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Albumo ne trovita." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Publika atingo ne permesita." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Neniu bildoj elektita" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Alŝuti bildojn" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nomo por nova albumo:" -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Ne kreu statan afiŝon por tio alŝuto." -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Permesoj" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Forviŝi albumon" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -501,133 +501,133 @@ msgstr "Forviŝi albumon" msgid "Cancel" msgstr "Nuligi" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Redakti albumon" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Vidi bildon" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "La bildo ne disponeblas" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Forviŝi bildon" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Vidi bildon" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Redakti bildon" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Uzi kiel profilbildo" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Vidi plengrande " -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Markoj:" -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nova nomo de albumo" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Apudskribo" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Aldoni markon" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Turni horloĝdirekte (dekstren)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Tiu estas vi" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Komenti" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Antaŭrigardi" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Elekti" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -636,23 +636,23 @@ msgstr "Elekti" msgid "Delete" msgstr "Forviŝi" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mi ŝatas tion (ŝalti)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Mi malŝatas tion(ŝalti)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "" @@ -793,18 +793,18 @@ msgid "All contacts" msgstr "" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1082,7 +1082,7 @@ msgstr "" msgid "Email" msgstr "Retpoŝto" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1560,29 +1560,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1760,7 +1768,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1769,12 +1777,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "montri pli" @@ -1782,7 +1790,7 @@ msgstr "montri pli" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "okazo" @@ -1790,7 +1798,7 @@ msgstr "okazo" msgid "status" msgstr "staton" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "bildo" @@ -1800,36 +1808,36 @@ msgstr "bildo" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s markis la %3$s de %2$s kun %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Vidi Staton" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Vidi Profilon" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Vidi Bildojn" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Enretaj Afiŝoj" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Sendi PM" @@ -1865,7 +1873,7 @@ msgid "Languages" msgstr "" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Konekti/Aboni" @@ -1919,42 +1927,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profilo" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Via profilo" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Bildoj" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Viaj bildoj" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2024,7 +2032,7 @@ msgstr "Kradvortoj" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Kontaktoj" @@ -2063,15 +2071,15 @@ msgstr "" msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Reto" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Konversacioj de viaj amikoj" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Viaj afiŝoj kaj komunikadoj" @@ -2100,7 +2108,7 @@ msgstr "Marki kiel legita" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Privata poŝto" @@ -2122,15 +2130,15 @@ msgstr "Administri aliajn paĝojn" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Agordoj" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Konto" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Administri/redakti amikojn kaj kontaktojn" @@ -2168,14 +2176,6 @@ msgstr "" msgid "Site map" msgstr "Reteja mapo" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Malŝaltita enigitado" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Enigita enhavo" - #: src/Content/Pager.php:216 msgid "first" msgstr "unua" @@ -2192,38 +2192,38 @@ msgstr "sekvanta" msgid "last" msgstr "lasta" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Bildo" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Klaku por malfermi/fermi" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 skribis:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "" @@ -2306,90 +2306,90 @@ msgstr "Tutmonda Katalogo" msgid "Local Directory" msgstr "Loka Katalogo" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Ĉiuj Kontaktoj" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Konservitaj Dosierujoj" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Ĉio" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Kategorioj" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d komuna kontakto" msgstr[1] "%d komunaj kontaktoj" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Arkivoj" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2439,12 +2439,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2460,7 +2460,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2472,13 +2472,13 @@ msgstr "Loko:" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2851,27 +2851,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Ne eblas konekti la datumbazon." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2881,37 +2877,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Lundo" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Mardo" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Merkredo" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Ĵaŭdo" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Vendredo" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Sabato" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Dimanĉo" @@ -3249,47 +3245,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Aprobi" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Malpermesita adreso de profilo." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Ne ekzistas URL adreso por konekti." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." @@ -3337,12 +3337,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Ekas:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Finas:" @@ -3360,17 +3360,17 @@ msgid "today" msgstr "" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "monato" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "semajno" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "tago" @@ -3415,109 +3415,109 @@ msgstr "" msgid "g:i A" msgstr "" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Naskiĝtago de %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Feliĉan Naskiĝtagon al %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "aktiveco" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "afiŝo" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bajtoj" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "" @@ -3525,7 +3525,7 @@ msgstr "" msgid "[no subject]" msgstr "[neniu temo]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Muraj Bildoj" @@ -3809,11 +3809,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Profilbildoj" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3821,7 +3821,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3852,12 +3852,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Detaloj de la registrado por %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3872,12 +3872,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3886,7 +3886,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3917,7 +3917,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3942,14 +3942,14 @@ msgid "Disable" msgstr "Malŝalti" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Ŝalti" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3989,12 +3989,12 @@ msgid "Addon %s failed to install." msgstr "" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "" @@ -4189,8 +4189,8 @@ msgid "Enable Debugging" msgstr "" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4351,269 +4351,269 @@ msgstr "" msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Ferma" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Bezonas aprobon" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Malferma" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Retejo" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registrado" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Alŝuto" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Politiko" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Altnivela" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nomo de retejo" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Emblemo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Sistema lingvo" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Sistema etoso" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Maksimuma bildgrando" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4621,35 +4621,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Interkonsento pri registrado" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4657,157 +4657,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Interkonsento teksto" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Kontoj forlasitaj post x tagoj" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Permesitaj amikaj domainoj" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Permesitaj retpoŝtaj domajnoj" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Bloki publike" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Devigi publikigon" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4815,11 +4825,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4828,339 +4838,339 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Ŝalti subtenon por Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Kontroli SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Uzantnomo por retperanto" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL adreso de retperanto" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Reta tempolimo" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Maksimuma Meza Sistemŝargo" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5168,50 +5178,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5219,175 +5229,175 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5395,153 +5405,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "" @@ -6129,11 +6139,11 @@ msgstr "" msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Titolo kaj starttempo estas bezonataj por la okazo." @@ -6225,7 +6235,7 @@ msgstr "" msgid "Create New Event" msgstr "Krei novan okazon" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "" @@ -6873,7 +6883,7 @@ msgid "Actions" msgstr "" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Stato" @@ -7045,33 +7055,33 @@ msgstr "" msgid "Not available." msgstr "Ne disponebla." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7103,7 +7113,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7114,179 +7124,179 @@ msgstr[1] "" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7795,7 +7805,7 @@ msgstr "Dosieroj" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Alŝuti" @@ -7816,14 +7826,14 @@ msgstr "" msgid "File upload failed." msgstr "Alŝutado malsukcesis." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Ne eblas procedi la bildon." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Alŝuto de bildo malsukcesis." @@ -8856,7 +8866,7 @@ msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8867,11 +8877,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -8996,21 +9006,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9062,27 +9072,27 @@ msgstr "Neniu kontaktojn." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "" @@ -9101,11 +9111,11 @@ msgid "" "administrator" msgstr "" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Bilddosiero estas malplena." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Vidi albumon" @@ -10168,12 +10178,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" @@ -10571,181 +10581,189 @@ msgstr "Eblaj Delegitoj" msgid "No entries." msgstr "Neniom da afiŝoj." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Ekranagordoj" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Agordoj pri la etoso" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Vidiga etoso:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maksimume 100 eroj" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10910,7 +10928,7 @@ msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Malsukcesis malpligrandigi [%s] la bildon." @@ -10950,31 +10968,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "aŭ" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "Preterpasi tian paŝon" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "elekti bildon el viaj albumoj" @@ -12674,124 +12692,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12831,19 +12825,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/eo/strings.php b/view/lang/eo/strings.php index 73768df041..a433c78eb1 100644 --- a/view/lang/eo/strings.php +++ b/view/lang/eo/strings.php @@ -196,8 +196,6 @@ $a->strings['Manage/edit friends and contacts'] = 'Administri/redakti amikojn ka $a->strings['Admin'] = 'Administrado'; $a->strings['Site setup and configuration'] = 'Agordoj pri la retejo'; $a->strings['Site map'] = 'Reteja mapo'; -$a->strings['Embedding disabled'] = 'Malŝaltita enigitado'; -$a->strings['Embedded content'] = 'Enigita enhavo'; $a->strings['first'] = 'unua'; $a->strings['prev'] = 'antaŭa'; $a->strings['next'] = 'sekvanta'; diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index 08a390bfbd..c7c3a8cbeb 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -55,7 +55,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Senex Petrovic , 2021\n" "Language-Team: Spanish (http://app.transifex.com/Friendica/friendica/language/es/)\n" @@ -85,14 +85,14 @@ msgstr "Artículo no pudo recuperarse." msgid "Empty post discarded." msgstr "Publicación vacía descartada." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Elemento no encontrado." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -115,14 +115,14 @@ msgstr "Elemento no encontrado." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Permiso denegado." @@ -287,7 +287,7 @@ msgstr "Fallo en recolección de mensajes." msgid "Discard" msgstr "Descartar" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Mensajes" @@ -332,20 +332,20 @@ msgstr "Subir foto" msgid "Insert web link" msgstr "Insertar enlace" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Espere" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -359,7 +359,7 @@ msgstr "Espere" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Enviar" @@ -431,7 +431,7 @@ msgstr "Notas personales solo puedes verlas tu." msgid "Save" msgstr "Guardar" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -444,99 +444,99 @@ msgid "User not found." msgstr "Usuario no encontrado." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Álbum de Fotos" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Fotos Recientes" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Subir Nuevas Fotos" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "todos" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Información del contacto no disponible" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Álbum no encontrado." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album borrado con éxito" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "El Álbum estaba vacío." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Error al borrar la Foto" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "una foto" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s fue etiquetado en %2$s por %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Acceso público denegado." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Ninguna foto seleccionada" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Subir fotos" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nombre del nuevo álbum: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "o seleccione un Álbum:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "No actualizar tu estado con este envío" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Permisos" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Eliminar álbum" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -546,133 +546,133 @@ msgstr "Eliminar álbum" msgid "Cancel" msgstr "Cancelar" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Modificar álbum" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Suelte un Álbum" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Mostrar más nuevos primero" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Mostrar más antiguos primero" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Ver foto" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Foto no disponible" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "¿Estás seguro de que quieres borrar esta foto?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Eliminar foto" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Ver foto" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Modificar foto" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Borrar foto" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Foto privada" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Ver a tamaño completo" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Etiquetas: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Seleccionar etiquetas a borrar]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nuevo nombre del álbum" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Título" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "No rotar" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Girar a la derecha" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Girar a la izquierda" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Este eres tú" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Comentar" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Vista previa" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Cargando..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Seleccionar" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -681,23 +681,23 @@ msgstr "Seleccionar" msgid "Delete" msgstr "Eliminar" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Me gusta" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Me gusta esto (cambiar)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "No me gusta" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Mapa" @@ -838,18 +838,18 @@ msgid "All contacts" msgstr "Todos los Contactos" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Seguidores" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Siguiendo" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "Correo" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora*" @@ -1617,29 +1617,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1817,7 +1825,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1826,12 +1834,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "mostrar menos" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "Mostrar más" @@ -1839,7 +1847,7 @@ msgstr "Mostrar más" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "evento" @@ -1847,7 +1855,7 @@ msgstr "evento" msgid "status" msgstr "estado" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "foto" @@ -1857,36 +1865,36 @@ msgstr "foto" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetó %3$s %2$s con %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Seguir el hilo" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Ver Estado" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Ver Perfil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Ver Fotos" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Artículos de Red" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Ver contacto" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Enviar Privado" @@ -1922,7 +1930,7 @@ msgid "Languages" msgstr "Lenguajes" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Conectar/Seguir" @@ -1976,42 +1984,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Perfil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Tu página de perfil" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Fotos" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Tus fotos" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Calendario" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2081,7 +2089,7 @@ msgstr "Etiquetas" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Contactos" @@ -2120,15 +2128,15 @@ msgstr "Términos de Servicio" msgid "Terms of Service of this Friendica instance" msgstr "Términos de Servicio de la Instancia Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Red" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Conversaciones de tus amigos" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Tus publicaciones y conversaciones" @@ -2157,7 +2165,7 @@ msgstr "Marcar como leído" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Correo privado" @@ -2179,15 +2187,15 @@ msgstr "Administrar otras páginas" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Configuración" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Configurar la cuenta" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Administrar/editar amigos y contactos" @@ -2225,14 +2233,6 @@ msgstr "Navegación" msgid "Site map" msgstr "Mapa del sitio" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Contenido incrustrado desabilitado" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Contenido integrado" - #: src/Content/Pager.php:216 msgid "first" msgstr "primera" @@ -2249,38 +2249,38 @@ msgstr "sig." msgid "last" msgstr "última" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Imagen/Foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Pulsa para abrir/cerrar" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 escribió:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Contenido cifrado" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Protocolo de fuente inválido" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Protocolo de enlace inválido" @@ -2364,49 +2364,49 @@ msgstr "Directorio Global" msgid "Local Directory" msgstr "Directorio Local" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Todos" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Relaciones" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Todos los contactos" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protocolos" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Todos los Protocolos" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Directorios guardados" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Todo" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Categorías" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2414,41 +2414,41 @@ msgstr[0] "%d contacto en común" msgstr[1] "%d contactos en común" msgstr[2] "%d contactos en común" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archivos" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Personas" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Organizaciones" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Noticias" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Tipos de cuenta" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Todos" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2500,12 +2500,12 @@ msgstr[2] "Etiquetas tendencia (últimas %d horas)" msgid "More Trending Tags" msgstr "Mas tendencias" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Mención" @@ -2521,7 +2521,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2533,13 +2533,13 @@ msgstr "Localización:" msgid "Network:" msgstr "Red:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Dejar de Seguir" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2912,27 +2912,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "No está instalada la extensión ImageMagick PHP" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporta GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Base de datos ya esta en uso" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "No es posible conectar con Base Datos." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2942,37 +2938,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Lunes" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Martes" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Miércoles" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Jueves" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Viernes" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Sábado" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Domingo" @@ -3310,47 +3306,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Aprobar" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organización" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Retransmisión" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Dirección de perfil no permitida." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Dominio bloqueado" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Falta el conector URL." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "La dirección del perfil especificado no proporciona información adecuada." @@ -3398,12 +3398,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Inicio:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Final:" @@ -3421,17 +3421,17 @@ msgid "today" msgstr "hoy" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "mes" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "semana" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "día" @@ -3476,76 +3476,76 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Mostrar mapa" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Ocultar mapa" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Cumpleaños de %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Feliz cumpleaños %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Lenguajes detectados en artículo:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "Actividad" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "Publicación" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Advertencia de contenido: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3553,7 +3553,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3561,7 +3561,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3569,7 +3569,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3577,12 +3577,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Ver en pagina aparte" @@ -3590,7 +3590,7 @@ msgstr "Ver en pagina aparte" msgid "[no subject]" msgstr "[sin asunto]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Foto del Perfil" @@ -3876,11 +3876,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Fotos del perfil" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3888,7 +3888,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tEstimado %1$s,\n\t\t\tel administrador de %2$s te ha establecido una cuenta." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3919,12 +3919,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Detalles de registro para %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3939,12 +3939,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tGracias por registrarte en %2$s. Tu cuenta esta en aprobación por los Administradores.\n\n\t\t\tTus datos de ingreso son:\n\n\t\t\tSitio - ubicación:\t%3$s\n\t\t\tUsuario:\t\t%4$s\n\t\t\tContraseña:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Registro en %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3953,7 +3953,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tEstimado %1$s,\n\t\t\t\tGracias por registrarte en %2$s. Tu cuenta fue creada.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3984,7 +3984,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -4009,14 +4009,14 @@ msgid "Disable" msgstr "Desactivar" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Activar" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4056,12 +4056,12 @@ msgid "Addon %s failed to install." msgstr "Instalación de Añadido %s falló" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Guardar configuración" @@ -4264,8 +4264,8 @@ msgid "Enable Debugging" msgstr "Habilitar debugging" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4426,269 +4426,269 @@ msgstr "Creado" msgid "Priority" msgstr "Prioridad" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "No hay tema especial para dispositivos móviles" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "No hay pagina de comunidad" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Temas públicos de perfiles de este sitio." -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Artículos públicos de Redes Federadas" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Artículos públicos de Usuarios Locales y Redes Federadas" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Sesión multi usuario" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Cerrado" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Requiere aprobación" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Abierto" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "No verificar" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "verifique la versión estable" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "verifica la versión de desarrollo" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "ninguno" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Contactos Locales" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Interactores" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Sitio" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Información General" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Republicar usuarios al Directorio" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registro" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Subida de archivo" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Políticas" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avanzado" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Directorio de contactos descubierto automáticamente" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Rendimiento" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Retransmisión de Mensajes" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nombre del sitio" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Correo que Envía" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Nombre del actor del Sistema" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Nombre de la cuenta del sistema interno que se utiliza para realizar solicitudes de ActivityPub. Debe ser un nombre de usuario no utilizado. Si se establece, esto no se puede volver a cambiar." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Imagen/Logotipo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "Logo del Correo" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Icono del Enlace" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Enlace hacia un icono que sera usado para el navegador." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Icono Tocar" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Enlace a un icono que sera usado para tablets y moviles." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Información Adicional" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Servidores Públicos: Puedes añadir información adicional aqui que será listada por los servidores %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Lenguaje del Sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Tema del Sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Tema de sistema móvil" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Forzar SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Sesión de usuario único" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Haz esta sesión multi-usuario o usuario único para el usuario" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4696,35 +4696,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Largo máximo de imagen" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Calidad de imagen JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Política de registros" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4732,157 +4732,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Registros Máximos Diarios" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Si anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Términos" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Se mostrará de forma destacada en la página de registro. Puede utilizar BBCode aquí." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Apodos Prohibidos" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Lista separada por comas de apodos cuyo registro está prohibido. Lo Preestablecido es una lista de nombres de roles según RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Dominios de correo permitidos" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "No hay contenido enriquecido OEmbed" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "No muestre el contenido enriquecido (por ejemplo, PDF incrustado), excepto de los dominios que se enumeran a continuación." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Dominios terceros de confianza" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Lista separada por comas de dominios de los que se permite incrustar contenido en publicaciones como con OEmbed. También se permiten todos los subdominios de los dominios enumerados." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Bloqueo público" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Forzar publicación" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Habilitar esto puede violar leyes de privacidad como GDPR" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "URL del directorio global." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Publicaciones privadas por defecto para usuarios nuevos" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "No incluir el contenido del post en las notificaciones de correo electrónico" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "No agregar imágenes privados en las publicaciones" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4890,11 +4900,11 @@ msgid "" "while." msgstr "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Contenido Explicito" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4903,339 +4913,339 @@ msgid "" "will be shown at the user registration page." msgstr "Configure esto para anunciar si su nodo se usa principalmente para contenido explícito que podría no ser adecuado para menores. Esta información se publicaría en la información del nodo y podría ser utilizada, por ejemplo, por el Directorio Global, para filtrar su nodo de las listas de nodos. Para unirse. Además, se mostrará una nota sobre esto en la página de registro del usuario." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Permitir a los usuarios de definir remote_self (yo-remoto)" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones de este contacto seran re-publicado en el muro del perfil." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Paginas de Comunidad para Visitantes" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Que comunidades deben estar disponibles para visitantes. Usuarios locales siempre ven ambas páginas." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Publicaciones por usuario en la pagina de comunidad" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Habilitar el soporte para Diaspora*" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Verificar SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Usuario proxy" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Dirección proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Tiempo de espera de red" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Promedio de carga máxima" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Carga máxima del sistema antes de entrega y envío son retrasados - default %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Memoria Mínima" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Memoria mínima en MB del worker. Necesita acceso a /proc/meminfo - default 0 (desactivado)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Periodicamente optimizar tablas" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Periódicamente optimizar tablas como Cache y cola de worker" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Descubrir seguidores/seguimientos de contactos" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Si lo habilita, se checan contactos por sus seguidores y sus contactos." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Ninguno - desactivado" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Contactos locales - contactos de nuestros contactos locales buscados por seguidores/seguimientos." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interactores - contactos de contactos locales y contactos que interactuan en artículos locales son buscados por sus seguidores/seguimientos." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Sincronizar los contactos con el servidor de directorio" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Si habilta, el sistema checará periodicamente por nuevos contactos en el servidor de directorio definido." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Descubrir contactos de otros servidores" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Días entre búsquedas" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Buscar el directorio local" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada búsqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la búsqueda cuando la misma es repetida." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Publicar información del servidor" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5243,50 +5253,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Si se habilita, se publicarán datos de uso y servidor. Contiene nombre y versión del servidor, usuarios con perfiles públicos, no. de artículos, protocolos activos y conectores. Ver the-federation.info para mas detalles." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Verifique la versión ascendente" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Permite verificar nuevas versiones de Friendica en Github. Si hay una nueva versión, se le informará en el panel de administración." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Suprimir etiquetas" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Suprimir la lista de tags al final de una publicación." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Limpiar Base de Datos" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Borrar artículos viejos remotos, registros de BD huerfanos y algunos viejos de tablas auxiliares." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Tiempo de vida de artículos remotos" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Cuando habilita limpieza de BD, define los días en que artículos remotos serán borrados. Propios, marcados o archivados son siempre conservados. 0 deshabilita este comportamiento." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Tiempo de vida de artículos no reclamados" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5294,175 +5304,175 @@ msgid "" "items if set to 0." msgstr "Cuando se habilita limpieza de BD, esto define los dias en que los articulos ignorados remotos (mas que nada contenido del Relay) serán borrados. Valor Default es 90 días. Es default del tiempo de vida general de artículos remotos se setea en 0." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Tiempo de vida de datos de conversación " -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Los datos de conversación son usados por ActivityPub y OStatus, también por propósito de Debugg. Debe ser seguro borrarlos después de 14 dias, default es 90 días." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Numero máximo de respuestas por tema" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "Maximo numero de comentarios por artículo de página de despliegue" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Cuantos comentarios deben ser mostrados en una sola vista por cada uno? Valor default es 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Ruta a los temporales" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. " -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Solo buscar en tags" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Numero máximo de trabajos paralelos de fondo." -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "En hosts compartidos ponga a %d. En sistemas grandes, valores de %d estan bien. Valor Default es %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Habilitar ascenso rápido" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5470,153 +5480,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Transferencia directa del Reenvío" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Habilita transferencia directa a otros servidores sin usar servidores de reenvío" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Enfoque del Reenvío" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Puede ser \"all\" o \"tags\". \"all\" significa que cada artículo público será recibido. \"tags\" sólo artículos de esas etiquetas deben ser recibidos." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Deshabilitado" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "todas" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "etiquetas" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Etiquetas del Servidor" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Lista separada por comas de etiquetas de suscripción \"tags\"." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Denegar etiquetas de Servidor" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Lista separada por comas de etiquetas denegadas." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Permitir etiquetas de Usuario" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Si se habilita, etiquetas de las búsquedas grabadas serán usadas para suscripción de \"tags\" además de \"relay_server_tags\"." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Iniciar Relocación" @@ -6208,11 +6218,11 @@ msgstr "" msgid "Failed to remove event" msgstr "Error al eliminar el evento" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Un evento no puede terminar antes de su inicio." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Título del evento y hora de inicio requeridas." @@ -6304,7 +6314,7 @@ msgstr "Vista" msgid "Create New Event" msgstr "Crea un evento nuevo" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "lista" @@ -6958,7 +6968,7 @@ msgid "Actions" msgstr "Acciones" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Estado" @@ -7130,33 +7140,33 @@ msgstr "Fediverso no disponible" msgid "Not available." msgstr "No disponible" -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Contactos propios" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Incluir" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Ocultar" @@ -7188,7 +7198,7 @@ msgid "Result Item" msgstr "Artículo resultado" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7200,179 +7210,179 @@ msgstr[2] "Errores" msgid "Source activity" msgstr "Actividad fuente" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Entrada fuente" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Cuerpo" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Etiquetas" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Entrada fuente (Formato Diaspora)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Entrada fuente (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Entrada RAW HTML" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "Entrada HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "HTML purificado (raw)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "HTML purificado (hex)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "HTML purificado" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compact)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Articulo decodificado" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "Arreglo sin expandir entidades" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Convertido" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "Cuerpo convertido" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "El Addon de Twitter no existe en folder addon/ ." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Diagnóstico Babel" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Texto fuente" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Fuente Twitter / Tweet URL (requiere API key)" @@ -7882,7 +7892,7 @@ msgstr "Archivos" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Subir" @@ -7903,14 +7913,14 @@ msgstr "El archivo excede Tamaño de %s" msgid "File upload failed." msgstr "Ha fallado la subida del archivo." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Imposible procesar la imagen." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Error al subir la imagen." @@ -8956,7 +8966,7 @@ msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contac msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8967,11 +8977,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -9096,21 +9106,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "La foto con id %s no esta disponible." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Foto no válida de Id %s." @@ -9162,27 +9172,27 @@ msgstr "Sin contactos." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Estado de %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Artículos de %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Comentarios de %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Imagen excede el tamaño de %s" @@ -9201,11 +9211,11 @@ msgid "" "administrator" msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "El archivo de imagen está vacío." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Ver Álbum" @@ -10269,12 +10279,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Descripción" @@ -10672,181 +10682,189 @@ msgstr "Delegados potenciales" msgid "No entries." msgstr "Sin entradas." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "El tema seleccionado no disponible." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (No puede usarse)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Configuración Tema/Visualización" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Ajustes generales de tema" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Ajustes personalizados de tema" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Ajustes de contenido" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Configuración del Tema" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Utilizar tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Tema móvil:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Número de elementos a mostrar por página:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Máximo 100 elementos" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Cantidad de objetos a visualizar cuando se usa un móvil" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Pagina infinita (scroll)" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Obtener nuevos artículos cuando alcance el final de página." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Desplegar reenviar" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Desplegar primer reenvío con un icono y texto en artículo reenviado." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Quedarse Local" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "No ir a sistema remoto cuando siga a un link de un contacto." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Principio de la semana:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -11011,7 +11029,7 @@ msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." @@ -11051,31 +11069,31 @@ msgstr "Usar imagen como esta" msgid "Missing uploaded image." msgstr "Falta la imágen subida" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Ajustes de Foto del Perfil" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Foto de Perfil Actual" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Subir foto del Perfil" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Subir foto:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "saltar este paso" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "elige una foto de tus álbumes" @@ -12777,124 +12795,100 @@ msgstr "slackr" msgid "Variations" msgstr "Variaciones" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Luminoso (Acentuado)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Oscuro (Acentuado)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Negro (Acentuado)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Nota" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Checa si todos los usuarios podrían ver esta imágen" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Personalizado" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Legado" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Acentuado" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Seleccionar esquema de color" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Selecciona esquema de Acentuado" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Azul" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Rojo" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Púrpura" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Copiar o pegar esquema" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Color de fondo de barra de navegación" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Color de icono de barra de navegación" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Color de enlace" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Selecciona color de fondo" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Opacidad del Fondo del Contenido" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Selecciona imagen de fondo" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Estilo de imagen de fondo" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Imagen de fondo del Ingreso" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Color de fondo del Ingreso" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Deja imagen de fondo y color vacíos para el estándar" @@ -12934,19 +12928,35 @@ msgstr "Mosaico" msgid "Repeat image to fill the screen." msgstr "Repetir imagen hasta llenar pantalla." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Saltar a contenido principal" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Ir al Inicio" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Personalizado" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Invitado" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Visitante" diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index c235e0c055..b842136c99 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -399,8 +399,6 @@ $a->strings['Admin'] = 'Admin'; $a->strings['Site setup and configuration'] = 'Opciones y configuración del sitio'; $a->strings['Navigation'] = 'Navegación'; $a->strings['Site map'] = 'Mapa del sitio'; -$a->strings['Embedding disabled'] = 'Contenido incrustrado desabilitado'; -$a->strings['Embedded content'] = 'Contenido integrado'; $a->strings['first'] = 'primera'; $a->strings['prev'] = 'previo'; $a->strings['next'] = 'sig.'; @@ -545,7 +543,6 @@ $a->strings['Error message from Curl when fetching'] = 'Mensaje de Error de Curl $a->strings['Url rewrite is working'] = 'Reescribiendo la dirección...'; $a->strings['ImageMagick PHP extension is not installed'] = 'No está instalada la extensión ImageMagick PHP'; $a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP extension is installed'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick supporta GIF'; $a->strings['Database already in use.'] = 'Base de datos ya esta en uso'; $a->strings['Could not connect to database.'] = 'No es posible conectar con Base Datos.'; $a->strings['Monday'] = 'Lunes'; @@ -2182,16 +2179,8 @@ $a->strings['darkzero'] = 'darkzero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'Variaciones'; -$a->strings['Light (Accented)'] = 'Luminoso (Acentuado)'; -$a->strings['Dark (Accented)'] = 'Oscuro (Acentuado)'; -$a->strings['Black (Accented)'] = 'Negro (Acentuado)'; $a->strings['Note'] = 'Nota'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Checa si todos los usuarios podrían ver esta imágen'; -$a->strings['Custom'] = 'Personalizado'; -$a->strings['Legacy'] = 'Legado'; -$a->strings['Accented'] = 'Acentuado'; -$a->strings['Select color scheme'] = 'Seleccionar esquema de color'; -$a->strings['Select scheme accent'] = 'Selecciona esquema de Acentuado'; $a->strings['Blue'] = 'Azul'; $a->strings['Red'] = 'Rojo'; $a->strings['Purple'] = 'Púrpura'; @@ -2219,6 +2208,7 @@ $a->strings['Mosaic'] = 'Mosaico'; $a->strings['Repeat image to fill the screen.'] = 'Repetir imagen hasta llenar pantalla.'; $a->strings['Skip to main content'] = 'Saltar a contenido principal'; $a->strings['Back to top'] = 'Ir al Inicio'; +$a->strings['Custom'] = 'Personalizado'; $a->strings['Guest'] = 'Invitado'; $a->strings['Visitor'] = 'Visitante'; $a->strings['Alignment'] = 'Alineación'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index 5261878a06..3289dfcce6 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -5,11 +5,12 @@ # Translators: # Anthronaut , 2015 # ButterflyOfFire, 2020 +# cracrayol, 2024 # Cyboulette , 2014 # Damien Goutte-Gattat , 2015-2016 # Damien Goutte-Gattat , 2015 # Domovoy , 2012 -# Florent C., 2023-2024 +# cracrayol, 2023-2024 # Hypolite Petovan , 2019-2022 # Hypolite Petovan , 2016 # ddea8f3e14f60a9d025fc4f71a37997c_495639b <0e9b63e0a53589b1b93671e612021fcb_249620>, 2014 @@ -35,9 +36,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Florent C., 2023-2024\n" +"Last-Translator: cracrayol, 2024\n" "Language-Team: French (http://app.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +66,14 @@ msgstr "La publication n'a pas pu être récupérée." msgid "Empty post discarded." msgstr "Publication vide rejetée." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Élément introuvable." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -95,14 +96,14 @@ msgstr "Élément introuvable." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Permission refusée." @@ -267,7 +268,7 @@ msgstr "Récupération des messages infructueuse." msgid "Discard" msgstr "Rejeter" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Messages" @@ -312,20 +313,20 @@ msgstr "Joindre photo" msgid "Insert web link" msgstr "Insérer lien web" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Patientez" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -339,7 +340,7 @@ msgstr "Patientez" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Envoyer" @@ -411,7 +412,7 @@ msgstr "Les notes personnelles ne sont visibles que par vous." msgid "Save" msgstr "Sauver" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -424,99 +425,99 @@ msgid "User not found." msgstr "Utilisateur introuvable." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "tout le monde" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album bien supprimé" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "L'album était vide" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "La suppression de la photo a échoué." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "une photo" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s a été mentionné(e) dans %2$s par %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Accès public refusé." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "La taille maximum d'image autorisée est de %s" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nom du nouvel album : " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "ou sélectionner un album existant" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Permissions" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -526,133 +527,133 @@ msgstr "Effacer l'album" msgid "Cancel" msgstr "Annuler" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Supprimer l'album" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Interdit. L'accès à cet élément peut avoir été restreint." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Effacer la photo" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " -msgstr "Étiquettes :" +msgstr "Étiquettes :" -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Sélectionner les étiquettes à supprimer]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Pas de rotation" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "C'est vous" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Commenter" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Aperçu" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Chargement en cours..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Sélectionner" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -661,23 +662,23 @@ msgstr "Sélectionner" msgid "Delete" msgstr "Supprimer" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Aime" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "J'aime" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "N'aime pas" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Carte" @@ -697,21 +698,21 @@ msgstr "Effacer cet élément?" msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." -msgstr "Bloquer ce contact ? Iel ne pourra pas s'abonner à votre compte et vous ne pourrez pas voir leurs publications ni leurs commentaires." +msgstr "Bloquer cet auteur ? Il ne pourra pas s'abonner à votre compte et vous ne pourrez pas voir ses publications, ni ses commentaires." #: src/App/Page.php:251 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." -msgstr "Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications." +msgstr "Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications." #: src/App/Page.php:252 msgid "Collapse this author's posts?" -msgstr "Réduire les publications de cet auteur ?" +msgstr "Réduire les publications de cet auteur ?" #: src/App/Page.php:253 msgid "Ignore this author's server?" -msgstr "Ignorer le serveur de cet auteur ?" +msgstr "Ignorer le serveur de cet auteur ?" #: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 #: src/Module/Settings/Server/Index.php:108 @@ -818,18 +819,18 @@ msgid "All contacts" msgstr "Tous les contacts" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Abonnés" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Abonnements" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "Amis communs" @@ -1017,11 +1018,11 @@ msgstr "Entrer l'adresse courriel de l'utilisateur :" #: src/Console/User.php:262 msgid "Enter a language (optional): " -msgstr "Entrer la langue (optionnel) :" +msgstr "Saisissez une langue (facultatif) :" #: src/Console/User.php:267 msgid "Enter URL of an image to use as avatar (optional): " -msgstr "Saisissez l'URL de l'image à utiliser comme avatar (optionnel) :" +msgstr "Saisissez l'URL de l'image à utiliser comme avatar (facultatif) :" #: src/Console/User.php:292 msgid "User is not pending." @@ -1107,7 +1108,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "Courriel" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1461,7 +1462,7 @@ msgstr "Vous vous êtes abonné(e) à %s." #: src/Content/Conversation.php:751 msgid "You subscribed to one or more tags in this post." -msgstr "Vous vous êtes abonné(e) à un tag ou plus de cette publication." +msgstr "Vous vous êtes abonné(e) à une étiquette ou plus de cette publication." #: src/Content/Conversation.php:771 #, php-format @@ -1597,29 +1598,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Publications de comptes suivis par des comptes que vous suivez" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "Partageurs silencieux" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "Publications de comptes que vous suivez mais qui ne publient pas souvent." + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "Images" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "Publications avec images" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "Audio" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "Publications avec audio" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "Vidéos" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "Publications avec vidéos" @@ -1665,7 +1674,7 @@ msgstr "Dernière création" #: src/Content/Conversation/Factory/Network.php:40 msgid "Sort by post creation date" -msgstr "Trier par date de création des publications" +msgstr "Trier par date de création" #: src/Content/Conversation/Factory/Network.php:41 #: src/Module/Settings/Profile/Index.php:260 @@ -1706,7 +1715,7 @@ msgstr "Tendances" msgid "" "Show a community page widget with a list of the most popular tags in recent " "public posts." -msgstr "Montre un encart avec la liste des tags les plus populaires dans les publications récentes." +msgstr "Montre un encart avec la liste des étiquettes les plus populaires dans les publications récentes." #: src/Content/Feature.php:104 msgid "Post Composition Features" @@ -1797,7 +1806,7 @@ msgid "" msgstr "Autorise les visiteurs anonymes à consulter votre calendrier et vos évènements publics. Les anniversaires de vos contacts demeurent privés." #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "Groupes" @@ -1806,12 +1815,12 @@ msgstr "Groupes" msgid "External link to group" msgstr "Lien externe vers le groupe" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "voir moins" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "montrer plus" @@ -1819,7 +1828,7 @@ msgstr "montrer plus" msgid "Create new group" msgstr "Créer un nouveau groupe" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "évènement" @@ -1827,7 +1836,7 @@ msgstr "évènement" msgid "status" msgstr "le statut" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "photo" @@ -1837,36 +1846,36 @@ msgstr "photo" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s a mentionné %3$s de %2$s avec %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Suivre le fil" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Voir les statuts" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Voir le profil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Voir les photos" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Publications du réseau" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Voir Contact" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Message privé" @@ -1902,7 +1911,7 @@ msgid "Languages" msgstr "Langues" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Se connecter/Suivre" @@ -1925,7 +1934,7 @@ msgstr "Effacer les notifications" #: src/Content/Nav.php:127 src/Content/Text/HTML.php:868 msgid "@name, !group, #tags, content" -msgstr "@nom, !groupe, #tags, contenu" +msgstr "@nom, !groupe, #etiquettes, contenu" #: src/Content/Nav.php:222 src/Module/Security/Login.php:157 msgid "Logout" @@ -1956,42 +1965,42 @@ msgstr "Discussions que vous avez commencées" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Votre page de profil" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Photos" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Vos photos" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "Vos publications avec des médias" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Calendrier" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "Votre calendrier" @@ -2056,12 +2065,12 @@ msgstr "Texte Entier" #: src/Content/Nav.php:273 src/Content/Text/HTML.php:876 #: src/Content/Widget/TagCloud.php:68 msgid "Tags" -msgstr "Tags" +msgstr "Étiquettes" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Contacts" @@ -2100,15 +2109,15 @@ msgstr "Conditions de service" msgid "Terms of Service of this Friendica instance" msgstr "Conditions d'Utilisation de ce serveur Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Réseau" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Flux de conversations" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Vos publications et conversations" @@ -2137,7 +2146,7 @@ msgstr "Marquer comme vu" msgid "Mark all system notifications as seen" msgstr "Marquer toutes les notifications système comme vues" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Messages privés" @@ -2159,15 +2168,15 @@ msgstr "Gérer les autres pages" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Réglages" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Compte" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Gestion des contacts" @@ -2205,14 +2214,6 @@ msgstr "Navigation" msgid "Site map" msgstr "Carte du site" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Incorporation désactivée" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Contenu incorporé" - #: src/Content/Pager.php:216 msgid "first" msgstr "premier" @@ -2229,38 +2230,38 @@ msgstr "suivant" msgid "last" msgstr "dernier" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Image/photo" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Lien vers la source" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 a écrit :" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Contenu chiffré" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Protocole d'image invalide" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Protocole de lien invalide" @@ -2344,49 +2345,49 @@ msgstr "Annuaire global" msgid "Local Directory" msgstr "Annuaire local" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "Cercles" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Tous les groupes" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "Aucune relation" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Relations" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Tous les contacts" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protocoles" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Tous les protocoles" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Dossiers sauvegardés" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Tout" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Catégories" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2394,41 +2395,41 @@ msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" msgstr[2] "%d contacts en commun" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archives" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "A cette date" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Personnes" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Nouvelles" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" -msgstr "" +msgstr "Relais" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Type de compte" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Tout" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "Chaînes" @@ -2480,12 +2481,12 @@ msgstr[2] "Tendances (dernières %d heures)" msgid "More Trending Tags" msgstr "Plus de tendances" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "Publier sur le groupe" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Mention" @@ -2501,7 +2502,7 @@ msgid "Matrix:" msgstr "Matrix :" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2513,13 +2514,13 @@ msgstr "Localisation :" msgid "Network:" msgstr "Réseau" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Se désabonner" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "Voir le groupe" @@ -2892,27 +2893,23 @@ msgstr "Pas de TLS détecté" msgid "TLS detected" msgstr "TLS détecté" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "L'extension PHP ImageMagick n'est pas installée" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "L’extension PHP ImageMagick est installée" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporte le format GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Base de données déjà en cours d'utilisation." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Impossible de se connecter à la base." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "Indéterminé" @@ -2922,37 +2919,37 @@ msgid "%s (%s)" msgstr "%s (%s)" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Lundi" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Mardi" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Mercredi" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Jeudi" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Vendredi" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Samedi" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Dimanche" @@ -3290,47 +3287,51 @@ msgstr "Nom du cercle :" msgid "Edit circles" msgstr "Modifier les cercles" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approuver" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "Groupe" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Relai" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Domaine bloqué" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Le contact n'a pu être ajouté. Veuillez vérifier les identifiants du réseau concerné dans la page Réglages -> Réseaux Sociaux si pertinent." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Le réseau %s espéré ne correspond pas au réseau %s actuel" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "Cela semble être un compte relai. Ils ne peuvent pas être suivi par des utilisateurs." + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." @@ -3378,12 +3379,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l d F Y \\@ G:i \\G\\M\\TP (e)" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Débute :" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Finit :" @@ -3401,17 +3402,17 @@ msgid "today" msgstr "aujourd'hui" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "mois" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "semaine" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "jour" @@ -3456,76 +3457,76 @@ msgstr "D G:i" msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Montrer la carte" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Cacher la carte" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s) : %s" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "%s (%s) : %s" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Langues détectées dans cette publication :\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "activité" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "commentaire" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "publication" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "%s est bloqué(e)" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "%s est ignoré(e)" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "Le contenu de %s est réduit" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Avertissement de contenu: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "octets" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3533,7 +3534,7 @@ msgstr[0] "%2$s (%3$d%%, %1$d vote)" msgstr[1] "%2$s (%3$d%%, %1$d votes)" msgstr[2] "%2$s (%3$d%%, %1$d votes)" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3541,7 +3542,7 @@ msgstr[0] "%2$s (%1$d vote)" msgstr[1] "%2$s (%1$d votes)" msgstr[2] "%2$s (%1$d votes)" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3549,7 +3550,7 @@ msgstr[0] "%d votant. Fin du sondage : %s" msgstr[1] "%d votants. Fin du sondage : %s" msgstr[2] "%d votants. Fin du sondage : %s" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3557,12 +3558,12 @@ msgstr[0] "%d votant." msgstr[1] "%d votants." msgstr[2] "%d votants." -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Fin du sondage : %s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Voir dans une nouvelle page" @@ -3570,7 +3571,7 @@ msgstr "Voir dans une nouvelle page" msgid "[no subject]" msgstr "[pas de sujet]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Photos du mur" @@ -3856,11 +3857,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "Une erreur est survenue lors de la création de votre cercle de contacts par défaut. Veuillez réessayer." -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Photos du profil" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3868,7 +3869,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tCher/Chère %1$s,\n\t\t\tl'administrateur de %2$s a créé un compte pour vous." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3899,12 +3900,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "\n\t\tLes détails de connexion sont les suivants :\n\n\t\tAdresse :\t%1$s\n\t\tIdentifiant :\t\t%2$s\n\t\tMot de passe:\t\t%3$s\n\n\t\tVous pouvez modifier votre mot de passe à partir de la page \"Paramètres\"\n\t\tde votre compte après vous être connecté.\n\n\t\tVeuillez prendre quelques instants pour passer en revue les autres paramètres\n\t\tde votre compte sur cette page.\n\n\t\tVous pouvez également ajouter quelques informations de base à votre profil par\n\t\tdéfaut (sur la page \"Profils\") afin que d'autres personnes puissent vous trouver facilement.\n\n\t\tNous vous recommandons d'ajouter une photo de profil, des \"mots-clés\"\n\t\t(très utiles pour se faire de nouveaux amis) et peut-être le pays dans lequel\n\t\tvous vivez, si vous ne souhaitez pas être plus précis.\n\n\t\tNous respectons pleinement votre droit à la vie privée et aucun de ces éléments\n\t\tn'est nécessaire. Si vous êtes nouveau et que vous ne connaissez personne ici,\n\t\tils peuvent vous aider à vous faire de nouveaux amis intéressants.\n\n\t\tSi vous souhaitez supprimer votre compte, vous pouvez le faire à l'adresse %1$s/settings/removeme\n\n\t\tMerci et bienvenue sur %4$s." -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3919,12 +3920,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tCh·er·ère %1$s,\n\t\t\t\tMerci de vous être inscrit-e sur%2$s. Votre compte est en attente de la validation d'un administrateur.\n\n\t\t\tVos identifiants sont les suivants:\n\n\t\t\tLocalisation du site :\t%3$s\n\t\t\tNom d'utilisateur :\t\t%4$s\n\t\t\tMot de passe :\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "inscription à %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3933,7 +3934,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tCher %1$s,\n\t\t\t\tMerci pour votre inscription sur %2$s. Votre compte a été créé.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3964,7 +3965,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "\n\t\t\tLes détails de connexion sont les suivants :\n\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t\t%1$s\n\t\t\tMot de passe:\t\t%5$s\n\n\t\t\tVous pouvez modifier votre mot de passe à partir de la page \"Paramètres\"\n\t\t\tde votre compte après vous être connecté.\n\n\t\t\tVeuillez prendre quelques instants pour passer en revue les autres paramètres\n\t\t\tde votre compte sur cette page.\n\n\t\t\tVous pouvez également ajouter quelques informations de base à votre profil par\n\t\t\tdéfaut (sur la page \"Profils\") afin que d'autres personnes puissent vous trouver facilement.\n\n\t\t\tNous vous recommandons d'ajouter une photo de profil, des \"mots-clés\"\n\t\t\t(très utiles pour se faire de nouveaux amis) et peut-être le pays dans lequel\n\t\t\tvous vivez, si vous ne souhaitez pas être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à la vie privée et aucun de ces éléments\n\t\t\tn'est nécessaire. Si vous êtes nouveau et que vous ne connaissez personne ici,\n\t\t\tils peuvent vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tSi vous souhaitez supprimer votre compte, vous pouvez le faire à l'adresse %3$s/settings/removeme\n\n\t\t\tMerci et bienvenue sur %2$s." -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "Un utilisateur avec des délégataires ne peut pas être supprimé, veuillez d'abord retirer les délégataires." @@ -3989,14 +3990,14 @@ msgid "Disable" msgstr "Désactiver" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Activer" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4036,12 +4037,12 @@ msgid "Addon %s failed to install." msgstr "L'extension %s a échoué à s'installer." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Sauvegarder les paramètres" @@ -4244,8 +4245,8 @@ msgid "Enable Debugging" msgstr "Activer le déboggage" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "En lecture seule car configuré avec une variable d'environnement" @@ -4406,269 +4407,269 @@ msgstr "Créé" msgid "Priority" msgstr "Priorité" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "%s n'est pas une valeur valide pour la taille maximum d'image" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s- (expérimental)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Aucune page de communauté" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "Aucune page communautaire pour les visiteurs" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Publications publiques des utilisateurs de ce site" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Publications publiques du réseau fédéré" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Publications publiques des utilisateurs du site et du réseau fédéré" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Fermé" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Demande une apptrobation" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Ouvert" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Ne pas rechercher" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "Rechercher les versions stables" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "Rechercher les versions de développement" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "aucun" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Contacts locaux" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Interagisseurs" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Information générale" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Republier les utilisateurs sur le répertoire" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Inscription" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Téléversement de fichier" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Politiques" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avancé" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Répertoire de Contacts Découverts Automatiquement" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Tâche de fond" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Relai de publication" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Utilisez la commande \"console relay\" en ligne de commande pour ajouter ou retirer des relais." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "Ce serveur n'est pas abonné à un relai pour le moment." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "Ce serveur est actuellement abonné aux relais suivants:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "Déplacer le nœud" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Déplacer votre nœud vous permet de changer le domaine DNS de celui-ci et de conserver tous les utilisateurs existants ainsi que les publications. Ce processus prend un certain temps et ne peut être lancé que depuis la ligne de commande relocate de la façon suivante :" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica directory)# bin/console relocate https://nouveaudomaine.fr" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nom du site" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Courriel de l'émetteur" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Nom du compte système" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Nom du compte interne utilisé pour effectuer les requêtes ActivityPub. Ce nom doit être inutilisé actuellement. Une fois défini, ce nom ne peut pas être changé." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "Bannière/Logo de courriel" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Icône de raccourci" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Icône pour systèmes tactiles" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Informations supplémentaires" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Description publique destinée au répertoire global de sites Friendica." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Langue du système" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Thème du système" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Thème système par défaut - peut être modifié par profil utilisateur - Changer les paramètres de thème par défaut" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Thème mobile" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "SSL obligatoire" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Montrer l'aide dans le menu de navigation" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Montre l'Aide dans le menu de navigation. L'aide reste accessible en naviguant vers /help directement." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Taille maximale des images" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4676,35 +4677,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "Taille maximale en octets des images téléversées. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez indiquer k, m, ou g après la valeur désirée pour Kio, Mio, Gio respectivement.\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa valeur de upload_max_filesize dans votre PHP.ini doit être définie au minimum à la valeur désirée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement upload_max_filesize est définie à %s (%s octet)" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Longueur maximale en pixels du plus long côté des images téléversées. La valeur par défaut est -1 : absence de limite." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Politique d'inscription" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "Utilisateurs maximum" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4712,157 +4713,167 @@ msgid "" "not when the policy is set to approval." msgstr "Si défini, la politique d'inscription est automatiquement définie à \"Fermé\" quand le nombre d'utilisateurs est atteint et mis à \"Ouvert\" quand le nombre descend en dessous de la limite. Cela fonctionne uniquement si la politique est défini à \"Ouvert\" ou \"Fermé\", mais pas quand celle-ci est définie à \"Demande une approbation\"." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Texte d'inscription" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Ce texte est affiché sur la page d'inscription. Les BBCodes sont autorisés." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Identifiants réservés" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Liste d'identifiants réservés séparés par des virgules. Ces identifiants ne peuvent pas être utilisés pour s'enregistrer. La liste de base provient de la RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liste de domaines - séparés par des virgules - dont les adresses de courriel sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "Domaines courriel interdits" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "Liste, séparé par des virgules, de domaines d'adresse de courriel qui seront rejetés lors de l'enregistrement. Caractères de remplacement autorisés." + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Désactiver le texte riche avec OEmbed" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Evite le contenu riche avec OEmbed (comme un document PDF incrusté), sauf provenant des domaines autorisés listés ci-après." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Domaines tierce-partie de confiance" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Liste séparée par des virgules de domaines dont le contenu est autorisé à être intégré dans les publications comme avec OEmbed. Tous les sous-domaines des domains mentionnés sont autorisés également." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Interdire la publication globale" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Forcer la publication globale" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Activer cette option peut potentiellement enfreindre les lois sur la protection de la vie privée comme le RGPD." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "URL de l'annuaire global" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le cercle de contacts par défaut, et non par tout le monde." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Ne pas inclure le contenu de la publication dans le courriel de notification" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Ne pas inclure le contenu d'un(e) publication/commentaire/message privé/etc dans le courriel de notification qui est envoyé à partir du site, par mesure de confidentialité." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4870,11 +4881,11 @@ msgid "" "while." msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Contenu adulte" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4883,339 +4894,339 @@ msgid "" "will be shown at the user registration page." msgstr "Activez cette option si votre site est principalement utilisé pour publier du contenu adulte. Cette information est publique et peut être utilisée pour filtrer votre site dans le répertoire de site global. Elle est également affichée sur la page d'inscription." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "Faire transiter le contenu externe par un proxy" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Dirige le contenu externe par la fonctionnalité proxy. Cela est utilisé par exemple pour certains accès OEmbed et dans certains autres cas rares." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "Recherche locale uniquement" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "Bloque la recherche pour les utilisateurs non connectés afin d'éviter aux robot d'indexation de bloquer votre système." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" -msgstr "Tags bloqués pour les tendances" +msgstr "Étiquettes bloquées pour les tendances" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." -msgstr "Liste de tags, séparés par des virgules, qui ne seront pas affichés dans les tendances." +msgstr "Liste d'étiquettes, séparées par des virgules, qui ne seront pas affichées dans les tendances." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "Mettre en cache les avatars des contacts" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Stocker localement les images d'avatar des contacts. Cela utilise beaucoup d'espace disque mais améliore les performances." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "Autorise les utilisateurs à créer les chaînes relais" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." -msgstr "" +msgstr "Si activé, il est possible de créer des utilisateurs relai qui seront utilisés pour repartager du contenu basé sur les chaînes de l'utilisateur." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "Régler la fréquence d'interrogation" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "Détecte automatiquement et défini la meilleure fréquence d'interrogation." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "Intervalle minimum de requêtage" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "Temps minimum entre deux requêtages en minutes pour les courriels et les contacts. Les valeurs raisonnables sont entre 1 et 59." -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "Autoriser les comptes multiples" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "Permet aux utilisateurs d'enregistrer des comptes supplémentaires pour être utilisés comme pages." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "Activer OpenID" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "Permet l'utilisation d'OpenID pour l'enregistrement de compte et l'identification." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "Activer la vérification du nom complet" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "Empêche les utilisateurs de s'enregistrer avec un nom d'affichage n'ayant pas au minimum 2 parties séparées par des espaces." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "Envoyer un courriel aux administrateurs lors d'une nouvelle inscription" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "Si activé et que le système est défini à une inscription ouverte, un courriel sera envoyé pour chaque nouvelle inscription aux administrateurs." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Affichage de la page communauté pour les utilisateurs anonymes" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Quelles pages communauté sont disponibles pour les utilisateurs anonymes." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Nombre de publications par utilisateur sur la page de la communauté" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "Nombre maximum de publications par utilisateur sur la page de communauté locale. Utile lorsqu'un seul utilisateur inonde la page de communauté locale." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "Publications par serveur sur la page Communauté" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "Nombre maximum de publications par serveur sur la page de communauté globale. Utile lorsque les publications d'un seul serveur inonde la page de communauté globale." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" -msgstr "Activer la prise en charge e-mail" +msgstr "Activer la prise en charge courriel" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." -msgstr "Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica." +msgstr "Permet de se connecter à un compte IMAP et de répondre directement aux courriels via Friendica." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." -msgstr "La prise en charge e-mail requiert le module PHP IMAP pour être activée." +msgstr "La prise en charge courriel requiert le module PHP IMAP pour être activée." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "Activer la prise en charge d'OStatus" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Vérifier SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "Nom d'utilisateur pour le serveur proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL du proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Si vous souhaitez utiliser un serveur proxy que Friendica devra employer pour se connecter au réseau, indiquez l'adresse du proxy ici." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "La charge système maximal avant que les processus livraisons et de sondage de profils distants soient reportées. Défaut : %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Mémoire minimum" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Mémoire libre minimale pour les tâches de fond (en Mo). Requiert l'accès à /proc/meminfo. La valeur par défaut est 0 (désactivé)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Optimizer les tables régulièrement" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Optimise régulièrement certaines tables de base de données très utilisées comme cache, locks, session, ou workerqueue." -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Découvrir la liste de contacts des contacts" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Si activé, ce serveur collecte la liste d'abonnés et d'abonnements des contacts suivants." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Aucun - désactivé" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Contacts locaux : Les contacts des utilisateurs de ce serveur" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interagisseurs : Les contacts des utilisateurs de ce serveur et les contacts qui ont intéragit avec les conversations dont ce serveur a connaissance." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "Mettre a jour que les contacts/serveurs ayant des données locales" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "Si activé, le système ne recherchera que les modifications apportées aux contacts et aux serveurs qui se sont engagés dans ce système, soit parce qu'ils figurent dans la liste de contacts d'un utilisateur, soit parce que des messages ou des commentaires ont été publiés par le contact sur ce système." -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Synchroniser les contacts avec l'annuaire distant" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Active l'ajout de nouveaux contacts depuis l'annuaire distant choisi." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Découvrir des contacts des autres serveurs" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "Le système interroge périodiquement d'autres serveurs (Friendica, Mastodon et Hubzilla) pour connaître les contacts et les serveurs qu'ils connaissent. Désactivez-le sur les petites machines pour réduire la taille et la charge de la base de données." -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Nombre de jours entre les requêtes" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "Nombre de jours après lesquels un serveur est interrogé sur ses contacts et les serveurs qu'il connaît. Ce paramètre n'est utilisé que lorsque la découverte est activée." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Chercher dans le répertoire local" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Cherche dans le répertoire local au lieu du répertoire local. Quand une recherche locale est effectuée, la même recherche est effectuée dans le répertoire global en tâche de fond. Cela améliore les résultats de la recherche si elle est réitérée." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Publier les informations du serveur" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5223,50 +5234,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Active la publication de données générales sur ce serveur et son utilisation. Contient entre autres le nom et la version du serveur, le nombre d'utilisateurs avec un profil public, le nombre de publications et la liste des connecteurs activés. Voir the-federation.info pour les détails." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Mises à jour" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l'interface d'administration." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" -msgstr "Masquer les tags" +msgstr "Masquer les étiquettes" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Ne pas afficher la liste des tags à la fin d’un message." +msgstr "Ne pas afficher la liste des étiquettes à la fin d’un message." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Nettoyer la base de données" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Durée de vie des conversations distantes" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations distantes sont supprimées. Les conversations démarrées par un utilisateur local, étoilées ou archivées sont toujours conservées. 0 pour désactiver." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Durée de vie des conversations relayées" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5274,175 +5285,175 @@ msgid "" "items if set to 0." msgstr "Si le nettoyage de la base de donnée est actif, cette valeur représente le délai en jours après lequel les conversations relayées qui n'ont pas reçu d'interactions locales sont supprimées. La valeur par défaut est 90 jours. 0 pour aligner cette valeur sur la durée de vie des conversations distantes." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Durée de vie des méta-données de conversation" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." +msgstr "Nombre de commentaire affiché pour chaque publication. Valeur par défaut : 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" -msgstr "Nombre maximum de commentaires par conversation dans leur page dédié (/display)" +msgstr "Nombre maximum de commentaires par publication dans leur page dédié (/display)" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Valeur par défaut : 1 000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "Éléments par page" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "Nombre d'éléments par page (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "Éléments par page pour les appareils mobiles" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "Nombre d'éléments par page pour les appareils mobiles (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, entrez un autre répertoire ici." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" -msgstr "Rechercher seulement dans les tags" +msgstr "Rechercher seulement dans les étiquettes" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" -msgstr "" +msgstr "Âge maximum des éléments dans la table de recherche" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." -msgstr "" +msgstr "Âge maximum, en jours, des éléments dans la table de recherche. Une valeur plus faible améliorera les performances et réduira l'utilisation du disque. 0 signifie aucune restriction." -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "Générer les comptes par cercle de contacts lors du calcul du nombre de réseaux." -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "Sur les systèmes avec des utilisateurs utilisant fortement les cercles de contact, cette requête peut être très coûteuse." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "Traiter les activités \"view\"" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "Les activités \"view\" sont principalement gérées par les systèmes Peertube. Par défaut, elles ne sont pas traitées pour des raisons de performance. N'activez cette option que sur un système performant." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "Nombre de jours après lesquels un contact est archivé" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "Nombre de jours pendant lesquels nous essayons d'envoyer du contenu ou de mettre à jour les données d'un contact avant d'archiver celui-ci." -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Nombre maximum de tâche de fond simultanés" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Sur un hébergement partagé, mettez %d. Sur des serveurs plus puissants, %d est optimal. La valeur par défaut est %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "Charge maximum pour les tâches de fond" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "Génère un délai d'attente si une tache de fond atteint la charge maximale. " -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Activer la file prioritaire" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Lorsqu'il est activé, le mécanisme de file prioritaire démarre une tâche de fond additionnelle quand des tâches de fond de haute priorité sont bloquées par des tâches de moindre priorité." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "Récepteur découplé" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "Découple les messages ActivityPub entrants en les traitant en arrière-plan par l'intermédiaire d'une tâche de fond. N'activez cette option que sur les systèmes rapides." -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "Intervalle du cron" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "Durée minimale entre deux appels de la tâche \"Cron\"" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "Limite de report d'une tâche de fond" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "Par défaut, le système tente d'effectuer un livraison 15 fois avant d'abandonner." -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "Limite de récupération des tâches" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5450,153 +5461,153 @@ msgid "" "system." msgstr "Nombre de tâches de fond récupérées en une seule requête. Des valeurs plus élevées devraient augmenter les performances, des valeurs trop élevées les diminueront très probablement. Ne modifiez ces valeurs que lorsque vous savez comment mesurer les performances de votre système." -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Relai direct" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Filtre du relai" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." -msgstr "\"Tous\" signifie que toutes les conversations publiques en provenance du relai sont acceptées. \"Tags\" signifie que seules les conversations comportant les tags suivants sont acceptées." +msgstr "\"Tous\" signifie que toutes les conversations publiques en provenance du relai sont acceptées. \"Étiquettes\" signifie que seules les conversations comportant les étiquettes suivantes sont acceptées." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Désactivé" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "Tous" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" -msgstr "tags" +msgstr "étiquettes" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" -msgstr "Tags de filtre du relai" +msgstr "Étiquettes de filtre du relai" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Liste séparée par des virgules de tags exclusivement autorisés en provenance des relais." +msgstr "Liste d'étiquettes autorisées, séparées par des virgules, en provenance des relais." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" -msgstr "Tags refusés" +msgstr "Étiquettes refusés" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." -msgstr "Liste séparée par des virgules de tags refusés en provenance des relais." +msgstr "Liste d'étiquettes refusées, séparées par des virgules, en provenance des relais." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" -msgstr "" +msgstr "Quantité maximum d'étiquettes" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." -msgstr "" +msgstr "Quantité maximum d'étiquettes dans une publication avant que celle-ci soit rejetée comme spam. La publication doit contenir au moins un lien. Les publications des comptes abonnés ne sont pas rejetées." -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" -msgstr "Inclure les tags des utilisateurs" +msgstr "Inclure les étiquettes des utilisateurs" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." -msgstr "Ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais." +msgstr "Ajoute les étiquettes des recherches enregistrées des utilisateurs aux étiquettes autorisés en provenance des relais." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "Refuser les langues non détectées" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "Si actif, les publications avec des langues non détectées seront rejetés." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "Qualité de la langue" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "La qualité de la langue minimale requise pour accepter la publication." -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "Nombre de langues pour la détection la de langue" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "Le système détecte une liste de langues par publication. La publication n'est acceptée que si les langues souhaitées figurent dans la liste. Plus le nombre est élevé, plus le nombre de publications détectées à tort est important." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "Age maximal d'une chaîne" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "Ceci définit l'âge maximum en heures des éléments qui doivent être affichés dans les chaînes. Cela affecte les performances des chaînes." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "Nombre maximum de publications sur une chaîne" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "Pour des raisons de performance, les chaînes utilisent une table dédiée pour stocker le contenu. Plus la valeur est élevée, plus les chaînes sont lentes." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "Intervalle pour le score d'interaction" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "Nombre de jours utilisés pour calculer le score d'interaction." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "Nombre maximum de publications par auteur" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "Nombre maximum de publication par page par auteur si la fréquence de contact est réglée sur \"Afficher quelques publications\". S'il y a plus de publications, les publications ayant le plus d'interactions seront affichées." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "Intervalle d'interaction de partageurs" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "Nombre de jours depuis la dernière interaction, utilisé pour définir les partageurs utilisés pour la chaîne \"Partageurs de partageurs\"." -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Démarrer le déménagement" @@ -6188,11 +6199,11 @@ msgstr "L'identifiant de l'évènement est manquant." msgid "Failed to remove event" msgstr "La suppression de l'évènement a échoué." -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "L'évènement ne peut pas se terminer avant d'avoir commencé." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Vous devez donner un nom et un horaire de début à l'évènement." @@ -6284,7 +6295,7 @@ msgstr "Vue" msgid "Create New Event" msgstr "Créer un nouvel évènement" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "liste" @@ -6687,7 +6698,7 @@ msgstr "URL du Profil" #: src/Module/Notifications/Introductions.php:191 #: src/Module/Profile/Profile.php:234 msgid "Tags:" -msgstr "Tags :" +msgstr "Étiquettes :" #: src/Module/Contact/Follow.php:182 #, php-format @@ -6807,7 +6818,7 @@ msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Récupérer des informations comme les prévisualisations d'images, les titres et les accroches depuis l'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l'élément du flux de discussion et sont publiés comme tags." +msgstr "Récupère des informations comme les prévisualisations d'images, les titres et les accroches depuis l'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l'élément du flux de discussion et sont publiés comme étiquettes." #: src/Module/Contact/Profile.php:310 msgid "Fetch information" @@ -6930,7 +6941,7 @@ msgstr "Liste de mot-clefs interdits" msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" -msgstr "Liste de mots-clés séparés par des virgules qui ne doivent pas être converti en tags lorsque « Récupérer informations et mots-clés » est sélectionné." +msgstr "Liste de mots-clés, séparés par des virgules, qui ne doivent pas être converti en étiquettes lorsque « Récupérer informations et mots-clés » est sélectionné." #: src/Module/Contact/Profile.php:415 #: src/Module/Settings/TwoFactor/Index.php:160 @@ -6938,7 +6949,7 @@ msgid "Actions" msgstr "Actions" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Statut" @@ -7100,7 +7111,7 @@ msgstr "Chaîne non disponible." msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." -msgstr "Ce fil communautaire liste toutes les conversations publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personelles des utilisateurs locaux." +msgstr "Ce fil communautaire liste toutes les publications publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personnelles des utilisateurs locaux." #: src/Module/Conversation/Community.php:180 msgid "Community option not available." @@ -7110,33 +7121,33 @@ msgstr "L'option communauté n'est pas disponible" msgid "Not available." msgstr "Indisponible." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "Cercle inexistant" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "Cercle : %s" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "Erreur %d (%s) lors de la récupération du flux." -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "Flux du réseau non disponible." -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Publications de vos propres contacts" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Inclure" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Masquer" @@ -7168,7 +7179,7 @@ msgid "Result Item" msgstr "Résultat" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7180,179 +7191,179 @@ msgstr[2] "Erreurs" msgid "Source activity" msgstr "Activité source" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Saisie source" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (code HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (HTML pur)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Corps du message" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" -msgstr "Tags du messages" +msgstr "Étiquettes du messages" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (code HTML)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Saisie source (format Diaspora)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Source (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (code HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Saisie code HTML" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "Code HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "HTML purifié (code)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "HTML purifié (hexadecimal)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "HTML purifié" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (code HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compact)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Publication décodée" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "Tableau de la publication avant de résoudre les entités" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Publication convertie" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "Corps de texte converti" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "L'extension Twitter est absente du dossier addon/" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Disagnostic Babel" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Texte source" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Source Twitter / URL du tweet (requiert une clé d'API)" @@ -7496,7 +7507,7 @@ msgstr "Télécharger cette liste au format CSV" msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." -msgstr "C'est Friendica, version %s qui fonctionne à l'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s." +msgstr "Vous êtes sur Friendica, version %s qui fonctionne à l'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s." #: src/Module/Friendica.php:123 msgid "" @@ -7862,7 +7873,7 @@ msgstr "Fichiers" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Téléverser" @@ -7883,14 +7894,14 @@ msgstr "La taille du fichier dépasse la limite de %s" msgid "File upload failed." msgstr "Le téléversement a échoué." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Impossible de traiter l'image." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." @@ -8936,7 +8947,7 @@ msgstr "Voulez-vous autoriser cette application à accéder à vos publications msgid "Unsupported or missing response type" msgstr "Type de réponse manquant ou non pris en charge" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Requête incomplète" @@ -8947,11 +8958,11 @@ msgid "" "close this window: %s" msgstr "Veuillez copier le code d'identification suivant dans votre application et ensuite fermer cette fenêtre: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "Données invalides ou client inconnu" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Type de \"grant\" manquant ou non pris en charge" @@ -9076,21 +9087,21 @@ msgstr "Audience : %s
" msgid "Attributed To: %s
" msgstr "Attribué à : %s
" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "La photo n'est pas disponible." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "La photo avec l'identifiant %s n'est pas disponible." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "La ressource externe avec l'URL %s est invalide." -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "La photo avec l'identifiant %s est invalide." @@ -9142,27 +9153,27 @@ msgstr "Aucun contact." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Le flux de %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Les publications originales de %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Les commentaires de %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "L'image dépasse la taille limite de %s" @@ -9181,11 +9192,11 @@ msgid "" "administrator" msgstr "Le serveur ne peut pas accepter la mise en ligne d'un nouveau fichier en ce moment, veuillez contacter un administrateur" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Fichier image vide." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Voir l'album" @@ -9372,7 +9383,7 @@ msgstr "Votre courriel : (Des informations de connexion vont être envoyées à #: src/Module/Register.php:160 msgid "Please repeat your e-mail address:" -msgstr "Veuillez répéter votre adresse e-mail :" +msgstr "Veuillez répéter votre adresse courriel :" #: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 #: src/Module/Settings/Account.php:557 @@ -9434,7 +9445,7 @@ msgstr "Vous avez entré trop d'informations." #: src/Module/Register.php:283 msgid "Please enter the identical mail address in the second field." -msgstr "Veuillez entrer une adresse e-mail identique dans le deuxième champ." +msgstr "Veuillez entrer une adresse courriel identique dans le deuxième champ." #: src/Module/Register.php:291 msgid "Nickname cannot start with a digit." @@ -9522,7 +9533,7 @@ msgstr "Votre OpenID :" msgid "" "Please enter your username and password to add the OpenID to your existing " "account." -msgstr "Merci de saisir votre nom d'utilisateur et votre mot de passer pour ajouter l'OpenID à votre compte existant." +msgstr "Veuillez saisir votre nom d'utilisateur et votre mot de passer pour ajouter l'OpenID à votre compte existant." #: src/Module/Security/Login.php:147 msgid "Or login using OpenID: " @@ -9659,7 +9670,7 @@ msgstr "Vous n'avez pas votre téléphone ? Saisissez un code de #: src/Module/Security/TwoFactor/Recovery.php:102 msgid "Please enter a recovery code" -msgstr "Merci de saisir un code de récupération" +msgstr "Veuillez saisir un code de récupération" #: src/Module/Security/TwoFactor/Recovery.php:103 msgid "Submit recovery code and complete login" @@ -10004,7 +10015,7 @@ msgstr "Autoriser vos contacts à publier sur votre profil ?" msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" -msgstr "Vos contacts peuvent partager des publications sur votre mur. Ces publication seront visibles par vos abonnés." +msgstr "Vos contacts peuvent partager des publications sur votre mur. Ces publications seront visibles par vos abonnés." #: src/Module/Settings/Account.php:583 msgid "Allow friends to tag your posts?" @@ -10012,7 +10023,7 @@ msgstr "Autoriser vos contacts à ajouter des tags à vos publications ?" #: src/Module/Settings/Account.php:583 msgid "Your contacts can add additional tags to your posts." -msgstr "Vos contacts peuvent ajouter des tags à vos publications." +msgstr "Vos contacts peuvent ajouter des étiquettes à vos publications." #: src/Module/Settings/Account.php:584 msgid "Default privacy circle for new contacts" @@ -10063,7 +10074,7 @@ msgstr "Faire expirer les publications marquées" msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." -msgstr "Par défaut, marquer une publication empêche leur expiration." +msgstr "Ajouter une étoile à une publication empêche son expiration, sauf si vous activez ce paramètre." #: src/Module/Settings/Account.php:595 msgid "Only expire posts by others" @@ -10249,12 +10260,12 @@ msgid "" msgstr "Si sélectionné, les résultats de la chaîne sont repartagés. Ceci ne fonctionne que pour les publications ActivityPub publiques ou pour les cercles définis par l'utilisateur." #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "Titre" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Description" @@ -10269,11 +10280,11 @@ msgstr "Cercle/Chaîne" #: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Include Tags" -msgstr "Inclure des tags" +msgstr "Inclure des étiquettes" #: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 msgid "Exclude Tags" -msgstr "Exclure des tags" +msgstr "Exclure des étiquettes" #: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 msgid "Minimum Size" @@ -10321,25 +10332,25 @@ msgstr "Choisissez un cercle ou une chaîne sur lequel se basera votre chaîne." msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." -msgstr "Liste de tags séparés par des virgules. Une publication sera affichée si elle contient au moins un de ces tags." +msgstr "Liste d'étiquettes, séparées par des virgules. Une publication sera affichée si elle contient au moins une de ces étiquettes." #: src/Module/Settings/Channels.php:210 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." -msgstr "Liste de tags séparés par des virgules. Si une publication contient un de ces tags, elle ne sera pas affichée sur cette chaîne." +msgstr "Liste d'étiquettes, séparées par des virgules. Si une publication contient une de ces étiquettes, elle ne sera pas affichée sur cette chaîne." #: src/Module/Settings/Channels.php:211 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." -msgstr "Taille minimum d'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les mots-clés." +msgstr "Taille minimum d'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les étiquettes." #: src/Module/Settings/Channels.php:212 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." -msgstr "Taille maximum d'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les mots-clés." +msgstr "Taille maximum d'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les étiquettes." #: src/Module/Settings/Channels.php:213 #, php-format @@ -10652,181 +10663,189 @@ msgstr "Délégataires potentiels" msgid "No entries." msgstr "Aucune entrée." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Le thème que vous avez choisi n'est pas disponible." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s- (non supporté)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "Pas d'aperçu" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "Pas d'image" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "Petite image" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "Grande image" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Affichage" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Paramètres généraux de thème" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Paramètres personnalisés de thème" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Paramètres de contenu" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Réglages du thème graphique" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "Flux" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page :" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'éléments à afficher par page pour un appareil mobile" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Mettre à jour l'affichage toutes les xx secondes" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "Afficher les émoticônes" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Quand activé, les émoticônes sont remplacées par les symboles correspondants." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Défilement infini" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Charge automatiquement de nouveaux contenus en bas de la page." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "Activer le fil de discussion intelligent" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Activer la suppression automatique de l'indentation excédentaire des fils de discussion." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "Afficher la fonctionnalité \"Je n'aime pas\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Afficher le bouton \"Je n'aime pas\" et les réactions \"Je n'aime pas\" sur les publications et les commentaires." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Afficher le partageur" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Afficher le premier partageur en tant qu'icône et texte sur un élément partagé." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "Afficher le contenu sensible" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "Si activé, les images dans les publications marquées comme \"sensible\" ne seront pas floutées." + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Rester local" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "Ne pas aller sur un système distant lors du suivi du lien d'un contact." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "Afficher la case à cocher de suppression de publication." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "Affiche la case à cocher de suppression de publication sur la page Réseau." -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "Afficher la liste des évènements" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "Affiche le rappel d’anniversaire et la liste des évènements sur la page Réseau." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "Mode de prévisualisation des liens" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Apparence de la prévisualisation du lien qui est ajoutée à chaque publication comprenant un lien." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "Favoris" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Activez les flux que vous souhaitez voir dans le widget Chaînes. Mettez en favoris les flux que vous souhaitez voir dans le menu supérieur." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "Langues de la chaîne :" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "Sélectionnez les langues que vous souhaitez voir dans vos chaînes." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Début de la semaine :" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "Vue par défaut du calendrier :" @@ -10991,7 +11010,7 @@ msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Réduction de la taille de l'image [%s] échouée." @@ -11031,31 +11050,31 @@ msgstr "Utiliser l'image telle quelle" msgid "Missing uploaded image." msgstr "Image téléversée manquante" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Réglages de la photo de profil" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Photo de profil actuelle" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Téléverser une photo de profil" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Téléverser une photo :" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "ou" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "ignorer cette étape" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "choisissez une photo depuis vos albums" @@ -11106,7 +11125,7 @@ msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversi #: src/Module/Settings/RemoveMe.php:136 msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification :" +msgstr "Veuillez saisir votre mot de passe pour vérification :" #: src/Module/Settings/Server/Action.php:60 msgid "Do you want to ignore this server?" @@ -11518,7 +11537,7 @@ msgid "" "visibly displayed. The listing of an account in the node's user directory or" " the global user directory is optional and can be controlled in the user " "settings, it is not necessary for communication." -msgstr "Au moment de l'inscription, et afin de fournir des communications entre le compte de l'utilisateur et ses contacts, l'utilisateur doit fournir un nom d'affichage (nom de plume), un nom d'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L'adresse de courriel ne sera utilisée que pour envoyer des notifications à l'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est optionnel et peut être contrôlé dans les paramètres utilisateur, il n'est pas nécessaire pour la communication. " +msgstr "Au moment de l'inscription, et afin de fournir des communications entre le compte de l'utilisateur et ses contacts, l'utilisateur doit fournir un nom d'affichage (nom de plume), un nom d'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L'adresse de courriel ne sera utilisée que pour envoyer des notifications à l'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est facultatif et peut être contrôlé dans les paramètres utilisateur, il n'est pas nécessaire pour la communication. " #: src/Module/Tos.php:59 src/Module/Tos.php:108 msgid "" @@ -12757,124 +12776,100 @@ msgstr "slackr" msgid "Variations" msgstr "Variations" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Clair (Accentué)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Sombre (Accentué)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Noir (Accentué)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Vérifier les permissions des images si tous les utilisateurs sont autorisés à voir l'image" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Personnalisé" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "Apparence" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Original" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "Couleur d'accentuation" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Accentué" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Sélectionner le schéma de couleurs" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Sélectionner l'accent du schéma de couleurs" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Bleu" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Rouge" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Violet" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Vert" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Rose" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Copier ou coller le fil conducteur" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Vous pouvez copier le contenu de ce champ pour partager votre thème. Vous pouvez également y coller une définition de palette différente pour l'appliquer à votre thème." -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Couleur d'arrière-plan de la barre de navigation" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Couleur des icônes de la barre de navigation" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Couleur des liens" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Paramétrer la couleur d'arrière-plan" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Opacité du contenu d'arrière-plan" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Paramétrer l'image d'arrière-plan" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Style de l'image de fond" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "Toujours ouvrir la page Compose" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Le bouton Nouvelle publication ouvre systématiquement la page Compose à la place du formulaire modal. Quand désactivé, la page Compose peut être ouverte via un clic milieu sur le lien ou à partir du modal." -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Image de fond de la page de login" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Couleur d'arrière-plan de la page de login" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Laisser l'image et la couleur de fond vides pour les paramètres par défaut du thème" @@ -12914,19 +12909,35 @@ msgstr "Mosaïque" msgid "Repeat image to fill the screen." msgstr "Répète l'image pour couvrir l'écran." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Aller au contenu principal" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Retour en haut" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "Clair" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "Sombre" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "Noir" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Personnalisé" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Invité" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Visiteur" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index a30707785f..5e3c19a5fc 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -173,7 +173,7 @@ $a->strings['Delete photo'] = 'Effacer la photo'; $a->strings['Use as profile photo'] = 'Utiliser comme photo de profil'; $a->strings['Private Photo'] = 'Photo privée'; $a->strings['View Full Size'] = 'Voir en taille réelle'; -$a->strings['Tags: '] = 'Étiquettes :'; +$a->strings['Tags: '] = 'Étiquettes :'; $a->strings['[Select tags to remove]'] = '[Sélectionner les étiquettes à supprimer]'; $a->strings['New album name'] = 'Nom du nouvel album'; $a->strings['Caption'] = 'Titre'; @@ -196,10 +196,10 @@ $a->strings['Map'] = 'Carte'; $a->strings['No system theme config value set.'] = 'Le thème système n\'est pas configuré.'; $a->strings['Apologies but the website is unavailable at the moment.'] = 'Désolé mais le site web n\'est pas disponible pour le moment.'; $a->strings['Delete this item?'] = 'Effacer cet élément?'; -$a->strings['Block this author? They won\'t be able to follow you nor see your public posts, and you won\'t be able to see their posts and their notifications.'] = 'Bloquer ce contact ? Iel ne pourra pas s\'abonner à votre compte et vous ne pourrez pas voir leurs publications ni leurs commentaires.'; -$a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications.'; -$a->strings['Collapse this author\'s posts?'] = 'Réduire les publications de cet auteur ?'; -$a->strings['Ignore this author\'s server?'] = 'Ignorer le serveur de cet auteur ?'; +$a->strings['Block this author? They won\'t be able to follow you nor see your public posts, and you won\'t be able to see their posts and their notifications.'] = 'Bloquer cet auteur ? Il ne pourra pas s\'abonner à votre compte et vous ne pourrez pas voir ses publications, ni ses commentaires.'; +$a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications.'; +$a->strings['Collapse this author\'s posts?'] = 'Réduire les publications de cet auteur ?'; +$a->strings['Ignore this author\'s server?'] = 'Ignorer le serveur de cet auteur ?'; $a->strings['You won\'t see any content from this server including reshares in your Network page, the community pages and individual conversations.'] = 'Vous ne verrez aucun contenu provenant de ce serveur, y compris les partages dans votre page Réseau, les pages de la communauté et les conversations individuelles.'; $a->strings['Like not successful'] = 'Erreur lors du "Aime"'; $a->strings['Dislike not successful'] = 'Erreur lors du "N\'aime pas"'; @@ -266,8 +266,8 @@ $a->strings['Password update failed. Please try again.'] = 'Le changement de mot $a->strings['Password changed.'] = 'Mot de passe changé.'; $a->strings['Enter user name: '] = 'Entrer le nom d\'utilisateur :'; $a->strings['Enter user email address: '] = 'Entrer l\'adresse courriel de l\'utilisateur :'; -$a->strings['Enter a language (optional): '] = 'Entrer la langue (optionnel) :'; -$a->strings['Enter URL of an image to use as avatar (optional): '] = 'Saisissez l\'URL de l\'image à utiliser comme avatar (optionnel) :'; +$a->strings['Enter a language (optional): '] = 'Saisissez une langue (facultatif) :'; +$a->strings['Enter URL of an image to use as avatar (optional): '] = 'Saisissez l\'URL de l\'image à utiliser comme avatar (facultatif) :'; $a->strings['User is not pending.'] = 'L\'utilisateur n\'est pas en attente.'; $a->strings['User has already been marked for deletion.'] = 'L\'utilisateur a déjà été marqué pour suppression.'; $a->strings['Type "yes" to delete %s'] = 'Saisir "yes" pour supprimer %s'; @@ -405,7 +405,7 @@ $a->strings['Delete Selected Items'] = 'Supprimer les éléments sélectionnés' $a->strings['You had been addressed (%s).'] = 'Vous avez été mentionné (%s)'; $a->strings['You are following %s.'] = 'Vous suivez %s.'; $a->strings['You subscribed to %s.'] = 'Vous vous êtes abonné(e) à %s.'; -$a->strings['You subscribed to one or more tags in this post.'] = 'Vous vous êtes abonné(e) à un tag ou plus de cette publication.'; +$a->strings['You subscribed to one or more tags in this post.'] = 'Vous vous êtes abonné(e) à une étiquette ou plus de cette publication.'; $a->strings['%s reshared this.'] = '%s a partagé.'; $a->strings['Reshared'] = 'Partagé'; $a->strings['Reshared by %s <%s>'] = 'Partagé par %s <%s>'; @@ -437,6 +437,8 @@ $a->strings['Posts in %s'] = 'Publications dans %s'; $a->strings['Posts from your followers that you don\'t follow'] = 'Publications de personnes abonnées qui vous ne suivez pas'; $a->strings['Sharers of sharers'] = 'Partageurs de partageurs'; $a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Publications de comptes suivis par des comptes que vous suivez'; +$a->strings['Quiet sharers'] = 'Partageurs silencieux'; +$a->strings['Posts from accounts that you follow but who don\'t post very often'] = 'Publications de comptes que vous suivez mais qui ne publient pas souvent.'; $a->strings['Images'] = 'Images'; $a->strings['Posts with images'] = 'Publications avec images'; $a->strings['Audio'] = 'Audio'; @@ -452,7 +454,7 @@ $a->strings['Sort by latest activity'] = 'Trier par activité récente'; $a->strings['Latest Posts'] = 'Dernières publications'; $a->strings['Sort by post received date'] = 'Trier par date de réception'; $a->strings['Latest Creation'] = 'Dernière création'; -$a->strings['Sort by post creation date'] = 'Trier par date de création des publications'; +$a->strings['Sort by post creation date'] = 'Trier par date de création'; $a->strings['Personal'] = 'Personnel'; $a->strings['Posts that mention or involve you'] = 'Publications qui vous concernent'; $a->strings['Starred'] = 'Mis en avant'; @@ -461,7 +463,7 @@ $a->strings['General Features'] = 'Fonctions générales'; $a->strings['Photo Location'] = 'Lieu de prise de la photo'; $a->strings['Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'] = 'Les métadonnées des photos sont normalement retirées. Ceci permet de sauver l\'emplacement (si présent) et de positionner la photo sur une carte.'; $a->strings['Trending Tags'] = 'Tendances'; -$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Montre un encart avec la liste des tags les plus populaires dans les publications récentes.'; +$a->strings['Show a community page widget with a list of the most popular tags in recent public posts.'] = 'Montre un encart avec la liste des étiquettes les plus populaires dans les publications récentes.'; $a->strings['Post Composition Features'] = 'Caractéristiques de composition de publication'; $a->strings['Auto-mention Groups'] = 'Mentionner automatiquement les groupes'; $a->strings['Add/remove mention when a group page is selected/deselected in ACL window.'] = 'Ajoute/retire une mention quand une page de groupe est sélectionnée/désélectionnée lors du choix des destinataires d\'une publication.'; @@ -508,7 +510,7 @@ $a->strings['Unable to fetch user.'] = 'Impossible de récupérer l\'utilisateur $a->strings['Nothing new here'] = 'Rien de neuf ici'; $a->strings['Go back'] = 'Revenir'; $a->strings['Clear notifications'] = 'Effacer les notifications'; -$a->strings['@name, !group, #tags, content'] = '@nom, !groupe, #tags, contenu'; +$a->strings['@name, !group, #tags, content'] = '@nom, !groupe, #etiquettes, contenu'; $a->strings['Logout'] = 'Se déconnecter'; $a->strings['End this session'] = 'Mettre fin à cette session'; $a->strings['Login'] = 'Connexion'; @@ -536,7 +538,7 @@ $a->strings['Addon applications, utilities, games'] = 'Applications supplémenta $a->strings['Search'] = 'Recherche'; $a->strings['Search site content'] = 'Rechercher dans le contenu du site'; $a->strings['Full Text'] = 'Texte Entier'; -$a->strings['Tags'] = 'Tags'; +$a->strings['Tags'] = 'Étiquettes'; $a->strings['Contacts'] = 'Contacts'; $a->strings['Community'] = 'Communauté'; $a->strings['Conversations on this and other servers'] = 'Flux public global'; @@ -569,8 +571,6 @@ $a->strings['Moderation'] = 'Modération'; $a->strings['Content and user moderation'] = 'Modération du contenu et des utilisateurs'; $a->strings['Navigation'] = 'Navigation'; $a->strings['Site map'] = 'Carte du site'; -$a->strings['Embedding disabled'] = 'Incorporation désactivée'; -$a->strings['Embedded content'] = 'Contenu incorporé'; $a->strings['first'] = 'premier'; $a->strings['prev'] = 'précédent'; $a->strings['next'] = 'suivant'; @@ -625,6 +625,7 @@ $a->strings['On this date'] = 'A cette date'; $a->strings['Persons'] = 'Personnes'; $a->strings['Organisations'] = 'Organisations'; $a->strings['News'] = 'Nouvelles'; +$a->strings['Relays'] = 'Relais'; $a->strings['Account Types'] = 'Type de compte'; $a->strings['All'] = 'Tout'; $a->strings['Channels'] = 'Chaînes'; @@ -734,7 +735,6 @@ $a->strings['No TLS detected'] = 'Pas de TLS détecté'; $a->strings['TLS detected'] = 'TLS détecté'; $a->strings['ImageMagick PHP extension is not installed'] = 'L\'extension PHP ImageMagick n\'est pas installée'; $a->strings['ImageMagick PHP extension is installed'] = 'L’extension PHP ImageMagick est installée'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick supporte le format GIF'; $a->strings['Database already in use.'] = 'Base de données déjà en cours d\'utilisation.'; $a->strings['Could not connect to database.'] = 'Impossible de se connecter à la base.'; $a->strings['Undetermined'] = 'Indéterminé'; @@ -840,6 +840,7 @@ $a->strings['Blocked domain'] = 'Domaine bloqué'; $a->strings['Connect URL missing.'] = 'URL de connexion manquante.'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'Le contact n\'a pu être ajouté. Veuillez vérifier les identifiants du réseau concerné dans la page Réglages -> Réseaux Sociaux si pertinent.'; $a->strings['Expected network %s does not match actual network %s'] = 'Le réseau %s espéré ne correspond pas au réseau %s actuel'; +$a->strings['This seems to be a relay account. They can\'t be followed by users.'] = 'Cela semble être un compte relai. Ils ne peuvent pas être suivi par des utilisateurs.'; $a->strings['The profile address specified does not provide adequate information.'] = 'L\'adresse de profil indiquée ne fournit par les informations adéquates.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Aucun protocole de communication ni aucun flux n\'a pu être découvert.'; $a->strings['An author or name was not found.'] = 'Aucun auteur ou nom d\'auteur n\'a pu être trouvé.'; @@ -1318,6 +1319,8 @@ $a->strings['Allowed friend domains'] = 'Domaines autorisés'; $a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les \'*\' sont acceptés. Laissez vide pour autoriser tous les domaines'; $a->strings['Allowed email domains'] = 'Domaines courriel autorisés'; $a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Liste de domaines - séparés par des virgules - dont les adresses de courriel sont autorisées à s\'inscrire sur ce site. Les \'*\' sont acceptées. Laissez vide pour autoriser tous les domaines'; +$a->strings['Disallowed email domains'] = 'Domaines courriel interdits'; +$a->strings['Comma separated list of domains which are rejected as email addresses for registrations to this site. Wildcards are accepted.'] = 'Liste, séparé par des virgules, de domaines d\'adresse de courriel qui seront rejetés lors de l\'enregistrement. Caractères de remplacement autorisés.'; $a->strings['No OEmbed rich content'] = 'Désactiver le texte riche avec OEmbed'; $a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Evite le contenu riche avec OEmbed (comme un document PDF incrusté), sauf provenant des domaines autorisés listés ci-après.'; $a->strings['Trusted third-party domains'] = 'Domaines tierce-partie de confiance'; @@ -1343,13 +1346,14 @@ $a->strings['Proxify external content'] = 'Faire transiter le contenu externe pa $a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Dirige le contenu externe par la fonctionnalité proxy. Cela est utilisé par exemple pour certains accès OEmbed et dans certains autres cas rares.'; $a->strings['Only local search'] = 'Recherche locale uniquement'; $a->strings['Blocks search for users who are not logged in to prevent crawlers from blocking your system.'] = 'Bloque la recherche pour les utilisateurs non connectés afin d\'éviter aux robot d\'indexation de bloquer votre système.'; -$a->strings['Blocked tags for trending tags'] = 'Tags bloqués pour les tendances'; -$a->strings['Comma separated list of hashtags that shouldn\'t be displayed in the trending tags.'] = 'Liste de tags, séparés par des virgules, qui ne seront pas affichés dans les tendances.'; +$a->strings['Blocked tags for trending tags'] = 'Étiquettes bloquées pour les tendances'; +$a->strings['Comma separated list of hashtags that shouldn\'t be displayed in the trending tags.'] = 'Liste d\'étiquettes, séparées par des virgules, qui ne seront pas affichées dans les tendances.'; $a->strings['Cache contact avatars'] = 'Mettre en cache les avatars des contacts'; $a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'Stocker localement les images d\'avatar des contacts. Cela utilise beaucoup d\'espace disque mais améliore les performances.'; $a->strings['Allow Users to set remote_self'] = 'Autoriser les utilisateurs à définir remote_self'; $a->strings['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.'] = 'Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d\'un contact dans le flux d\'activités des utilisateurs.'; $a->strings['Allow Users to set up relay channels'] = 'Autorise les utilisateurs à créer les chaînes relais'; +$a->strings['If enabled, it is possible to create relay users that are used to reshare content based on user defined channels.'] = 'Si activé, il est possible de créer des utilisateurs relai qui seront utilisés pour repartager du contenu basé sur les chaînes de l\'utilisateur.'; $a->strings['Adjust the feed poll frequency'] = 'Régler la fréquence d\'interrogation'; $a->strings['Automatically detect and set the best feed poll frequency.'] = 'Détecte automatiquement et défini la meilleure fréquence d\'interrogation.'; $a->strings['Minimum poll interval'] = 'Intervalle minimum de requêtage'; @@ -1368,9 +1372,9 @@ $a->strings['Posts per user on community page'] = 'Nombre de publications par ut $a->strings['The maximum number of posts per user on the local community page. This is useful, when a single user floods the local community page.'] = 'Nombre maximum de publications par utilisateur sur la page de communauté locale. Utile lorsqu\'un seul utilisateur inonde la page de communauté locale.'; $a->strings['Posts per server on community page'] = 'Publications par serveur sur la page Communauté'; $a->strings['The maximum number of posts per server on the global community page. This is useful, when posts from a single server flood the global community page.'] = 'Nombre maximum de publications par serveur sur la page de communauté globale. Utile lorsque les publications d\'un seul serveur inonde la page de communauté globale.'; -$a->strings['Enable Mail support'] = 'Activer la prise en charge e-mail'; -$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica.'; -$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'La prise en charge e-mail requiert le module PHP IMAP pour être activée.'; +$a->strings['Enable Mail support'] = 'Activer la prise en charge courriel'; +$a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Permet de se connecter à un compte IMAP et de répondre directement aux courriels via Friendica.'; +$a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'La prise en charge courriel requiert le module PHP IMAP pour être activée.'; $a->strings['Enable OStatus support'] = 'Activer la prise en charge d\'OStatus'; $a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire.'; @@ -1409,8 +1413,8 @@ $a->strings['Publish server information'] = 'Publier les informations du serveur $a->strings['If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See the-federation.info for details.'] = 'Active la publication de données générales sur ce serveur et son utilisation. Contient entre autres le nom et la version du serveur, le nombre d\'utilisateurs avec un profil public, le nombre de publications et la liste des connecteurs activés. Voir the-federation.info pour les détails.'; $a->strings['Check upstream version'] = 'Mises à jour'; $a->strings['Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'] = 'Permet de vérifier la présence de nouvelles versions de Friendica sur github. Si une nouvelle version est disponible, vous recevrez une notification dans l\'interface d\'administration.'; -$a->strings['Suppress Tags'] = 'Masquer les tags'; -$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Ne pas afficher la liste des tags à la fin d’un message.'; +$a->strings['Suppress Tags'] = 'Masquer les étiquettes'; +$a->strings['Suppress showing a list of hashtags at the end of the posting.'] = 'Ne pas afficher la liste des étiquettes à la fin d’un message.'; $a->strings['Clean database'] = 'Nettoyer la base de données'; $a->strings['Remove old remote items, orphaned database records and old content from some other helper tables.'] = 'Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage.'; $a->strings['Lifespan of remote items'] = 'Durée de vie des conversations distantes'; @@ -1420,8 +1424,8 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of raw conversation data'] = 'Durée de vie des méta-données de conversation'; $a->strings['The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours.'; $a->strings['Maximum numbers of comments per post'] = 'Nombre maximum de commentaires par publication'; -$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100.'; -$a->strings['Maximum numbers of comments per post on the display page'] = 'Nombre maximum de commentaires par conversation dans leur page dédié (/display)'; +$a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Nombre de commentaire affiché pour chaque publication. Valeur par défaut : 100.'; +$a->strings['Maximum numbers of comments per post on the display page'] = 'Nombre maximum de commentaires par publication dans leur page dédié (/display)'; $a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Valeur par défaut : 1 000.'; $a->strings['Items per page'] = 'Éléments par page'; $a->strings['Number of items per page in stream pages (network, community, profile/contact statuses, search).'] = 'Nombre d\'éléments par page (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)'; @@ -1429,8 +1433,10 @@ $a->strings['Items per page for mobile devices'] = 'Éléments par page pour les $a->strings['Number of items per page in stream pages (network, community, profile/contact statuses, search) for mobile devices.'] = 'Nombre d\'éléments par page pour les appareils mobiles (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)'; $a->strings['Temp path'] = 'Chemin des fichiers temporaires'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Si vous n\'avez pas la possibilité d\'avoir accès au répertoire temp, entrez un autre répertoire ici.'; -$a->strings['Only search in tags'] = 'Rechercher seulement dans les tags'; +$a->strings['Only search in tags'] = 'Rechercher seulement dans les étiquettes'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'La recherche textuelle peut ralentir considérablement les systèmes de grande taille.'; +$a->strings['Maximum age of items in the search table'] = 'Âge maximum des éléments dans la table de recherche'; +$a->strings['Maximum age of items in the search table in days. Lower values will increase the performance and reduce disk usage. 0 means no age restriction.'] = 'Âge maximum, en jours, des éléments dans la table de recherche. Une valeur plus faible améliorera les performances et réduira l\'utilisation du disque. 0 signifie aucune restriction.'; $a->strings['Generate counts per contact circle when calculating network count'] = 'Générer les comptes par cercle de contacts lors du calcul du nombre de réseaux.'; $a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Sur les systèmes avec des utilisateurs utilisant fortement les cercles de contact, cette requête peut être très coûteuse.'; $a->strings['Process "view" activities'] = 'Traiter les activités "view"'; @@ -1454,16 +1460,18 @@ $a->strings['Number of worker tasks that are fetched in a single query. Higher v $a->strings['Direct relay transfer'] = 'Relai direct'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai.'; $a->strings['Relay scope'] = 'Filtre du relai'; -$a->strings['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.'] = '"Tous" signifie que toutes les conversations publiques en provenance du relai sont acceptées. "Tags" signifie que seules les conversations comportant les tags suivants sont acceptées.'; +$a->strings['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.'] = '"Tous" signifie que toutes les conversations publiques en provenance du relai sont acceptées. "Étiquettes" signifie que seules les conversations comportant les étiquettes suivantes sont acceptées.'; $a->strings['Disabled'] = 'Désactivé'; $a->strings['all'] = 'Tous'; -$a->strings['tags'] = 'tags'; -$a->strings['Server tags'] = 'Tags de filtre du relai'; -$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste séparée par des virgules de tags exclusivement autorisés en provenance des relais.'; -$a->strings['Deny Server tags'] = 'Tags refusés'; -$a->strings['Comma separated list of tags that are rejected.'] = 'Liste séparée par des virgules de tags refusés en provenance des relais.'; -$a->strings['Allow user tags'] = 'Inclure les tags des utilisateurs'; -$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais.'; +$a->strings['tags'] = 'étiquettes'; +$a->strings['Server tags'] = 'Étiquettes de filtre du relai'; +$a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Liste d\'étiquettes autorisées, séparées par des virgules, en provenance des relais.'; +$a->strings['Deny Server tags'] = 'Étiquettes refusés'; +$a->strings['Comma separated list of tags that are rejected.'] = 'Liste d\'étiquettes refusées, séparées par des virgules, en provenance des relais.'; +$a->strings['Maximum amount of tags'] = 'Quantité maximum d\'étiquettes'; +$a->strings['Maximum amount of tags in a post before it is rejected as spam. The post has to contain at least one link. Posts from subscribed accounts will not be rejected.'] = 'Quantité maximum d\'étiquettes dans une publication avant que celle-ci soit rejetée comme spam. La publication doit contenir au moins un lien. Les publications des comptes abonnés ne sont pas rejetées.'; +$a->strings['Allow user tags'] = 'Inclure les étiquettes des utilisateurs'; +$a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ajoute les étiquettes des recherches enregistrées des utilisateurs aux étiquettes autorisés en provenance des relais.'; $a->strings['Deny undetected languages'] = 'Refuser les langues non détectées'; $a->strings['If enabled, posts with undetected languages will be rejected.'] = 'Si actif, les publications avec des langues non détectées seront rejetés.'; $a->strings['Language Quality'] = 'Qualité de la langue'; @@ -1741,7 +1749,7 @@ $a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Le suppo $a->strings['Please answer the following:'] = 'Merci de répondre à ce qui suit :'; $a->strings['Your Identity Address:'] = 'Votre adresse d\'identité :'; $a->strings['Profile URL'] = 'URL du Profil'; -$a->strings['Tags:'] = 'Tags :'; +$a->strings['Tags:'] = 'Étiquettes :'; $a->strings['%s knows you'] = '%s vous connaît'; $a->strings['Add a personal note:'] = 'Ajouter une note personnelle :'; $a->strings['Posts and Replies'] = 'Publications et réponses'; @@ -1768,7 +1776,7 @@ $a->strings['Suggest friends'] = 'Suggérer des abonnements'; $a->strings['Network type: %s'] = 'Type de réseau %s'; $a->strings['Communications lost with this contact!'] = 'Communications perdues avec ce contact !'; $a->strings['Fetch further information for feeds'] = 'Chercher plus d\'informations pour les flux'; -$a->strings['Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn\'t contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags.'] = 'Récupérer des informations comme les prévisualisations d\'images, les titres et les accroches depuis l\'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l\'élément du flux de discussion et sont publiés comme tags.'; +$a->strings['Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn\'t contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags.'] = 'Récupère des informations comme les prévisualisations d\'images, les titres et les accroches depuis l\'élément du flux de discussion. Vous pouvez activer ceci si le flux ne contient pas beaucoup de texte. Les mots clés sont récupérés de la balise meta de l\'élément du flux de discussion et sont publiés comme étiquettes.'; $a->strings['Fetch information'] = 'Récupérer informations'; $a->strings['Fetch keywords'] = 'Récupérer les mots-clés'; $a->strings['Fetch information and keywords'] = 'Récupérer informations'; @@ -1797,7 +1805,7 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Notification for new posts'] = 'Notification des nouvelles publications'; $a->strings['Send a notification of every new post of this contact'] = 'Envoyer une notification de chaque nouveau message en provenance de ce contact'; $a->strings['Keyword Deny List'] = 'Liste de mot-clefs interdits'; -$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Liste de mots-clés séparés par des virgules qui ne doivent pas être converti en tags lorsque « Récupérer informations et mots-clés » est sélectionné.'; +$a->strings['Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected'] = 'Liste de mots-clés, séparés par des virgules, qui ne doivent pas être converti en étiquettes lorsque « Récupérer informations et mots-clés » est sélectionné.'; $a->strings['Actions'] = 'Actions'; $a->strings['Status'] = 'Statut'; $a->strings['Mirror postings from this contact'] = 'Copier les publications de ce contact'; @@ -1833,7 +1841,7 @@ $a->strings['Contact was successfully unfollowed'] = 'Le contact n\'est maintena $a->strings['Unable to unfollow this contact, please contact your administrator'] = 'Impossible de ne plus suivre ce contact, merci de contacter votre administrateur'; $a->strings['No results.'] = 'Aucun résultat.'; $a->strings['Channel not available.'] = 'Chaîne non disponible.'; -$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ce fil communautaire liste toutes les conversations publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personelles des utilisateurs locaux.'; +$a->strings['This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users.'] = 'Ce fil communautaire liste toutes les publications publiques reçues par ce serveur. Elles ne reflètent pas nécessairement les opinions personnelles des utilisateurs locaux.'; $a->strings['Community option not available.'] = 'L\'option communauté n\'est pas disponible'; $a->strings['Not available.'] = 'Indisponible.'; $a->strings['No such circle'] = 'Cercle inexistant'; @@ -1867,7 +1875,7 @@ $a->strings['BBCode::toMarkdown => Markdown::convert'] = 'BBCode::toMarkdown => $a->strings['BBCode::toMarkdown => Markdown::toBBCode'] = 'BBCode::toMarkdown => Markdown::toBBCode'; $a->strings['BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'] = 'BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'; $a->strings['Item Body'] = 'Corps du message'; -$a->strings['Item Tags'] = 'Tags du messages'; +$a->strings['Item Tags'] = 'Étiquettes du messages'; $a->strings['PageInfo::appendToBody'] = 'PageInfo::appendToBody'; $a->strings['PageInfo::appendToBody => BBCode::convert (raw HTML)'] = 'PageInfo::appendToBody => BBCode::convert (code HTML)'; $a->strings['PageInfo::appendToBody => BBCode::convert'] = 'PageInfo::appendToBody => BBCode::convert'; @@ -1930,7 +1938,7 @@ $a->strings['Read about the Terms of Service of this node $a->strings['On this server the following remote servers are blocked.'] = 'Sur ce serveur, les serveurs suivants sont sur liste noire.'; $a->strings['Reason for the block'] = 'Raison du blocage'; $a->strings['Download this list in CSV format'] = 'Télécharger cette liste au format CSV'; -$a->strings['This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.'] = 'C\'est Friendica, version %s qui fonctionne à l\'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s.'; +$a->strings['This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.'] = 'Vous êtes sur Friendica, version %s qui fonctionne à l\'emplacement web %s. La version de la base de données est %s, la version de mise à jour des publications est %s.'; $a->strings['Please visit Friendi.ca to learn more about the Friendica project.'] = 'Rendez-vous sur Friendi.ca pour en savoir plus sur le projet Friendica.'; $a->strings['Bug reports and issues: please visit'] = 'Pour les rapports de bugs : rendez vous sur'; $a->strings['the bugtracker at github'] = 'le bugtracker sur GitHub'; @@ -2383,7 +2391,7 @@ $a->strings['Membership on this site is by invitation only.'] = 'L\'inscription $a->strings['Your invitation code: '] = 'Votre code d\'invitation :'; $a->strings['Your Display Name (as you would like it to be displayed on this system'] = 'Votre Nom d\'Affichage (tel que vous souhaiteriez l\'afficher sur ce système'; $a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Votre courriel : (Des informations de connexion vont être envoyées à cette adresse; elle doit exister).'; -$a->strings['Please repeat your e-mail address:'] = 'Veuillez répéter votre adresse e-mail :'; +$a->strings['Please repeat your e-mail address:'] = 'Veuillez répéter votre adresse courriel :'; $a->strings['New Password:'] = 'Nouveau mot de passe :'; $a->strings['Leave empty for an auto generated password.'] = 'Laisser ce champ libre pour obtenir un mot de passe généré automatiquement.'; $a->strings['Confirm:'] = 'Confirmer :'; @@ -2397,7 +2405,7 @@ $a->strings['Please enter the password of the parent account to legitimize your $a->strings['Password doesn\'t match.'] = 'Le mot de passe ne correspond pas.'; $a->strings['Please enter your password.'] = 'Veuillez saisir votre mot de passe.'; $a->strings['You have entered too much information.'] = 'Vous avez entré trop d\'informations.'; -$a->strings['Please enter the identical mail address in the second field.'] = 'Veuillez entrer une adresse e-mail identique dans le deuxième champ.'; +$a->strings['Please enter the identical mail address in the second field.'] = 'Veuillez entrer une adresse courriel identique dans le deuxième champ.'; $a->strings['Nickname cannot start with a digit.'] = 'Le pseudo ne peut pas commencer par un chiffre.'; $a->strings['Nickname can only contain US-ASCII characters.'] = 'Le pseudo ne peut contenir que des caractères US-ASCII.'; $a->strings['The additional account was created.'] = 'Le compte additionnel a bien été créé.'; @@ -2417,7 +2425,7 @@ $a->strings['Search term already saved.'] = 'Le terme de recherche a déjà ét $a->strings['Search term was not removed.'] = 'Le terme de recherche n\'a pas été supprimé.'; $a->strings['Create a New Account'] = 'Créer un nouveau compte'; $a->strings['Your OpenID: '] = 'Votre OpenID :'; -$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Merci de saisir votre nom d\'utilisateur et votre mot de passer pour ajouter l\'OpenID à votre compte existant.'; +$a->strings['Please enter your username and password to add the OpenID to your existing account.'] = 'Veuillez saisir votre nom d\'utilisateur et votre mot de passer pour ajouter l\'OpenID à votre compte existant.'; $a->strings['Or login using OpenID: '] = 'Ou connectez-vous via OpenID : '; $a->strings['Password: '] = 'Mot de passe : '; $a->strings['Remember me'] = 'Se souvenir de moi'; @@ -2445,7 +2453,7 @@ $a->strings['Invalid code, please retry.'] = 'Code invalide, veuillez réessayer $a->strings['Two-factor recovery'] = 'Récupération d\'identification à deux facteurs'; $a->strings['

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

'] = '

Vous pouvez saisir l\'un de vos codes de récupération à usage unique si vous avez perdu l\'accès à votre périphérique mobile.

'; $a->strings['Don’t have your phone? Enter a two-factor recovery code'] = 'Vous n\'avez pas votre téléphone ? Saisissez un code de récupération à deux facteurs'; -$a->strings['Please enter a recovery code'] = 'Merci de saisir un code de récupération'; +$a->strings['Please enter a recovery code'] = 'Veuillez saisir un code de récupération'; $a->strings['Submit recovery code and complete login'] = 'Soumettre le code de récupération et compléter l\'identification'; $a->strings['Sign out of this browser?'] = 'Se déconnecter de ce navigateur ?'; $a->strings['

If you trust this browser, you will not be asked for verification code the next time you sign in.

'] = '

Si vous faites confiance à ce navigateur, votre code de vérification ne vous sera pas demandé la prochaine fois que vous vous connecterez.

'; @@ -2518,9 +2526,9 @@ $a->strings['Your public posts will not appear on the community pages or in sear $a->strings['Make all posted pictures accessible'] = 'Rendre toutes les images envoyées accessibles.'; $a->strings['This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can\'t handle permissions on pictures. Non public pictures still won\'t be visible for the public on your photo albums though.'] = 'Cette option rend chaque image envoyée accessible par un lien direct. C\'est un contournement pour prendre en compte que la pluplart des autres réseaux ne gèrent pas les droits sur les images. Cependant les images non publiques ne seront pas visibles sur votre album photo.'; $a->strings['Allow friends to post to your profile page?'] = 'Autoriser vos contacts à publier sur votre profil ?'; -$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Vos contacts peuvent partager des publications sur votre mur. Ces publication seront visibles par vos abonnés.'; +$a->strings['Your contacts may write posts on your profile wall. These posts will be distributed to your contacts'] = 'Vos contacts peuvent partager des publications sur votre mur. Ces publications seront visibles par vos abonnés.'; $a->strings['Allow friends to tag your posts?'] = 'Autoriser vos contacts à ajouter des tags à vos publications ?'; -$a->strings['Your contacts can add additional tags to your posts.'] = 'Vos contacts peuvent ajouter des tags à vos publications.'; +$a->strings['Your contacts can add additional tags to your posts.'] = 'Vos contacts peuvent ajouter des étiquettes à vos publications.'; $a->strings['Default privacy circle for new contacts'] = 'Cercle de contacts par défaut pour les nouveaux contacts'; $a->strings['Default privacy circle for new group contacts'] = 'Cercle de contacts par défaut pour les nouveaux contacts du groupe'; $a->strings['Default Post Permissions'] = 'Permissions de publication par défaut'; @@ -2532,7 +2540,7 @@ $a->strings['When activated, posts and comments will be expired.'] = 'Les public $a->strings['Expire personal notes'] = 'Faire expirer les notes personnelles'; $a->strings['When activated, the personal notes on your profile page will be expired.'] = ' '; $a->strings['Expire starred posts'] = 'Faire expirer les publications marquées'; -$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Par défaut, marquer une publication empêche leur expiration.'; +$a->strings['Starring posts keeps them from being expired. That behaviour is overwritten by this setting.'] = 'Ajouter une étoile à une publication empêche son expiration, sauf si vous activez ce paramètre.'; $a->strings['Only expire posts by others'] = 'Faire expirer uniquement les contenu reçus'; $a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Empêche vos propres publications d\'expirer. S\'applique à tous les choix précédents.'; $a->strings['Notification Settings'] = 'Réglages de notification'; @@ -2579,8 +2587,8 @@ $a->strings['Label'] = 'Titre'; $a->strings['Description'] = 'Description'; $a->strings['Access Key'] = 'Clé d\'accès'; $a->strings['Circle/Channel'] = 'Cercle/Chaîne'; -$a->strings['Include Tags'] = 'Inclure des tags'; -$a->strings['Exclude Tags'] = 'Exclure des tags'; +$a->strings['Include Tags'] = 'Inclure des étiquettes'; +$a->strings['Exclude Tags'] = 'Exclure des étiquettes'; $a->strings['Minimum Size'] = 'Taille minimum'; $a->strings['Maximum Size'] = 'Taille maximum'; $a->strings['Full Text Search'] = 'Recherche de texte intégral'; @@ -2591,10 +2599,10 @@ $a->strings['Short name for the channel. It is displayed on the channels widget. $a->strings['This should describe the content of the channel in a few word.'] = 'Décrivez le contenu de votre chaîne en quelques mots.'; $a->strings['When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one.'] = 'Si vous accédez à cette chaîne via une clé d\'accès, saisissez là ici. Attention à ne pas saisir une clé déjà utilisée.'; $a->strings['Select a circle or channel, that your channel should be based on.'] = 'Choisissez un cercle ou une chaîne sur lequel se basera votre chaîne.'; -$a->strings['Comma separated list of tags. A post will be used when it contains any of the listed tags.'] = 'Liste de tags séparés par des virgules. Une publication sera affichée si elle contient au moins un de ces tags.'; -$a->strings['Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel.'] = 'Liste de tags séparés par des virgules. Si une publication contient un de ces tags, elle ne sera pas affichée sur cette chaîne.'; -$a->strings['Minimum post size. Leave empty for no minimum size. The size is calculated without links, attached posts, mentions or hashtags.'] = 'Taille minimum d\'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les mots-clés.'; -$a->strings['Maximum post size. Leave empty for no maximum size. The size is calculated without links, attached posts, mentions or hashtags.'] = 'Taille maximum d\'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les mots-clés.'; +$a->strings['Comma separated list of tags. A post will be used when it contains any of the listed tags.'] = 'Liste d\'étiquettes, séparées par des virgules. Une publication sera affichée si elle contient au moins une de ces étiquettes.'; +$a->strings['Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel.'] = 'Liste d\'étiquettes, séparées par des virgules. Si une publication contient une de ces étiquettes, elle ne sera pas affichée sur cette chaîne.'; +$a->strings['Minimum post size. Leave empty for no minimum size. The size is calculated without links, attached posts, mentions or hashtags.'] = 'Taille minimum d\'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les étiquettes.'; +$a->strings['Maximum post size. Leave empty for no maximum size. The size is calculated without links, attached posts, mentions or hashtags.'] = 'Taille maximum d\'une publication. Laisser vide pour aucune limite. La taille est calculée sans prendre en compte les liens, les publications attachées, les mentions ou les étiquettes.'; $a->strings['Search terms for the body, supports the "boolean mode" operators from MariaDB. See the help for a complete list of operators and additional keywords: %s'] = 'Recherche les termes dans le corps, supporte les opérateurs "boolean mode" de MariaDB. Consultez l\'aide pour une liste complète des opérateurs et des mots clés additionnels : %s'; $a->strings['Check to display images in the channel.'] = 'Cochez pour afficher les images dans la chaîne.'; $a->strings['Check to display videos in the channel.'] = 'Cochez pour afficher la vidéo dans la chaîne.'; @@ -2690,6 +2698,8 @@ $a->strings['Display the Dislike feature'] = 'Afficher la fonctionnalité "Je n\ $a->strings['Display the Dislike button and dislike reactions on posts and comments.'] = 'Afficher le bouton "Je n\'aime pas" et les réactions "Je n\'aime pas" sur les publications et les commentaires.'; $a->strings['Display the resharer'] = 'Afficher le partageur'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Afficher le premier partageur en tant qu\'icône et texte sur un élément partagé.'; +$a->strings['Display sensitive content'] = 'Afficher le contenu sensible'; +$a->strings['If enabled, pictures in posts marked as "sensitive" will not be blurred.'] = 'Si activé, les images dans les publications marquées comme "sensible" ne seront pas floutées.'; $a->strings['Stay local'] = 'Rester local'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Ne pas aller sur un système distant lors du suivi du lien d\'un contact.'; $a->strings['Show the post deletion checkbox'] = 'Afficher la case à cocher de suppression de publication.'; @@ -2772,7 +2782,7 @@ $a->strings['The user id is %d'] = 'L\'identifiant d\'utilisateur est %d'; $a->strings['Your account has been successfully removed. Bye bye!'] = 'Votre compte a été supprimé avec succès. Au revoir !'; $a->strings['Remove My Account'] = 'Supprimer mon compte'; $a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Ceci supprimera totalement votre compte. Cette opération est irréversible.'; -$a->strings['Please enter your password for verification:'] = 'Merci de saisir votre mot de passe pour vérification :'; +$a->strings['Please enter your password for verification:'] = 'Veuillez saisir votre mot de passe pour vérification :'; $a->strings['Do you want to ignore this server?'] = 'Voulez-vous ignorer ce serveur ?'; $a->strings['Do you want to unignore this server?'] = 'Voulez-vous ne plus ignorer ce serveur ?'; $a->strings['Remote server settings'] = 'Paramètres du serveur distant'; @@ -2884,7 +2894,7 @@ $a->strings['Unfortunately, the requested conversation isn\'t available to you.' $a->strings['Possible reasons include:'] = 'Les raisons possibles sont :'; $a->strings['Stack trace:'] = 'Stack trace:'; $a->strings['Exception thrown in %s:%d'] = 'Exception produite dans %s:%d'; -$a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = 'Au moment de l\'inscription, et afin de fournir des communications entre le compte de l\'utilisateur et ses contacts, l\'utilisateur doit fournir un nom d\'affichage (nom de plume), un nom d\'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L\'adresse de courriel ne sera utilisée que pour envoyer des notifications à l\'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est optionnel et peut être contrôlé dans les paramètres utilisateur, il n\'est pas nécessaire pour la communication. '; +$a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = 'Au moment de l\'inscription, et afin de fournir des communications entre le compte de l\'utilisateur et ses contacts, l\'utilisateur doit fournir un nom d\'affichage (nom de plume), un nom d\'utilisateur (pseudo) et une adresse de courriel fonctionnelle. Les noms seront accessibles sur la page de profil du compte par tout visiteur de la page, même si les autres informations de profil ne sont pas affichées. L\'adresse de courriel ne sera utilisée que pour envoyer des notifications à l\'utilisateur à propos de ses interactions, mais ne sera pas affichée de manière visible. Le référencement du compte dans le répertoire des comptes du nœud ou le répertoire global des utilisateurs est facultatif et peut être contrôlé dans les paramètres utilisateur, il n\'est pas nécessaire pour la communication. '; $a->strings['This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts.'] = 'Ces données sont requises pour la communication et transférées aux nœuds des partenaires de communication, et sont stockées ici. Les utilisateurs peuvent ajouter des données privées additionnelles qui peuvent être transmises aux comptes de leurs partenaires de communication.'; $a->strings['At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1$s/settings/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners.'] = 'A n\'importe quel moment, un utilisateur connecté peut exporter les données de son compte à partir des Paramètres du compte. Si l\'utilisateur souhaite supprimer son compte, il peut le faire à partir de la page %1$s/settings/removeme. La suppression du compte sera permanente. La suppression des données sera également demandée aux noeuds des partenaires de communication.'; $a->strings['Privacy Statement'] = 'Politique de Confidentialité'; @@ -3152,16 +3162,10 @@ $a->strings['darkzero'] = 'darkzero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'Variations'; -$a->strings['Light (Accented)'] = 'Clair (Accentué)'; -$a->strings['Dark (Accented)'] = 'Sombre (Accentué)'; -$a->strings['Black (Accented)'] = 'Noir (Accentué)'; $a->strings['Note'] = 'Note'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Vérifier les permissions des images si tous les utilisateurs sont autorisés à voir l\'image'; -$a->strings['Custom'] = 'Personnalisé'; -$a->strings['Legacy'] = 'Original'; -$a->strings['Accented'] = 'Accentué'; -$a->strings['Select color scheme'] = 'Sélectionner le schéma de couleurs'; -$a->strings['Select scheme accent'] = 'Sélectionner l\'accent du schéma de couleurs'; +$a->strings['Appearance'] = 'Apparence'; +$a->strings['Accent color'] = 'Couleur d\'accentuation'; $a->strings['Blue'] = 'Bleu'; $a->strings['Red'] = 'Rouge'; $a->strings['Purple'] = 'Violet'; @@ -3191,6 +3195,10 @@ $a->strings['Mosaic'] = 'Mosaïque'; $a->strings['Repeat image to fill the screen.'] = 'Répète l\'image pour couvrir l\'écran.'; $a->strings['Skip to main content'] = 'Aller au contenu principal'; $a->strings['Back to top'] = 'Retour en haut'; +$a->strings['Light'] = 'Clair'; +$a->strings['Dark'] = 'Sombre'; +$a->strings['Black'] = 'Noir'; +$a->strings['Custom'] = 'Personnalisé'; $a->strings['Guest'] = 'Invité'; $a->strings['Visitor'] = 'Visiteur'; $a->strings['Alignment'] = 'Alignement'; diff --git a/view/lang/gd/messages.po b/view/lang/gd/messages.po index 7597ba5837..3623b22050 100644 --- a/view/lang/gd/messages.po +++ b/view/lang/gd/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n" @@ -37,14 +37,14 @@ msgstr "Cha d’ fhuair sinn grèim air a nì." msgid "Empty post discarded." msgstr "Chaidh post falamh a thilgeil air falbh." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Cha deach an nì a lorg." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -67,14 +67,14 @@ msgstr "Cha deach an nì a lorg." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Chaidh cead a dhiùltadh." @@ -239,7 +239,7 @@ msgstr "Dh’fhàillig cruinneachadh nan teachdaireachdan." msgid "Discard" msgstr "Tilg air falbh" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Teachdaireachdan" @@ -284,20 +284,20 @@ msgstr "Luchdaich suas dealbh" msgid "Insert web link" msgstr "Cuir a-steach ceangal-lìn" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Fuirich ort" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -311,7 +311,7 @@ msgstr "Fuirich ort" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Cuir a-null" @@ -384,7 +384,7 @@ msgstr "Chan fhaic ach thu fhèin na nòtaichean pearsanta." msgid "Save" msgstr "Sàbhail" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -397,99 +397,99 @@ msgid "User not found." msgstr "Cha deach an cleachdaiche a lorg." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Pasgain dhealbhan" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Dealbhan o chionn goirid" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Luchdaich suas dealbhan ùra" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "a h-uile duine" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Chan eil fiosrachadh conaltraidh ri fhaighinn" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Cha deach an t-albam a lorg." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Chaidh an t-albam a sguabadh às" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Bha an t-albam falamh." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Cha b’ urrainn dhuinn an dealbh a sguabadh às." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "dealbh" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "Chuir %3$s %1$s ’na thaga ri %2$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Chaidh an t-inntrigeadh poblach a dhiùltadh." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Cha deach dealbh a thaghadh" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "Cha ghabh sinn ri dealbhan nas motha na %s" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Luchdaich suas dealbhan" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Ainm an albaim ùir: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "no tagh albam a tha ann:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Na seall post staide dhan luchdadh suas seo" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Ceadan" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "A bheil thu cinnteach gu bheil thu airson an t-albam seo ’s a h-uile dealbh aige a sguabadh às?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Sguab às an t-albam" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -499,133 +499,133 @@ msgstr "Sguab às an t-albam" msgid "Cancel" msgstr "Sguir dheth" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Deasaich an t-albam" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Thoir air falbh an t-albam" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Seall an fheadhainn as ùire an toiseach" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Seall an fheadhainn as sine an toiseach" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Seall an dealbh" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Chaidh cead a dhiùltadh. Dh’fhaoidte gu bheil an t-inntrigeadh dhan nì seo cuingichte." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Chan eil an dealbhan ri fhaighinn" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "A bheil thu cinnteach gu bheil thu airson an dealbh seo a sguabadh às?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Seall an dealbh" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Deasaich an dealbh" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Cleachd ’na dhealbh pròifile" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Dealbh prìobhaideach" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Seall air a làn-mheud" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Tagaichean: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Tagh tagaichean gus an toirt air falbh]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Ainm albaim ùir" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Fo-thiotal" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Cuir taga ris" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ball-eisimpleir: @aonghas, @Oighrig_Chaimbeul, @seaonaidh@ball-eisimpleir.com, #Leòdhas, #gàirnealaireachd" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Na cuairtich" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Cuairtich a’ dol deiseil" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Cuairtich a’ dol tuathail" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Seo thusa" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Beachd" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Ro-sheall" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "’Ga luchdadh…" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Tagh" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -634,23 +634,23 @@ msgstr "Tagh" msgid "Delete" msgstr "Sguab às" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "’S toigh leam seo" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "’S toigh leam seo (toglaich)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Cha toigh leam seo" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Cha toigh leam seo (toglaich)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Mapa" @@ -791,18 +791,18 @@ msgid "All contacts" msgstr "A h-uile neach-aithne" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Luchd-leantainn" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "A’ leantainn" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1080,7 +1080,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "Post-d" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora*" @@ -1582,29 +1582,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1782,7 +1790,7 @@ msgid "" msgstr "Leigidh seo le aoighean sùil a thoirt air a’ mhìosachan ’s air na tachartasan poblach agad. Bidh tachartasan cinn-là breith an luchd-aithne agad prìobhaideach dhut-sa." #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "Buidhnean" @@ -1791,12 +1799,12 @@ msgstr "Buidhnean" msgid "External link to group" msgstr "Ceangal cèin dhan bhuidheann" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "seall nas lugha dheth" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "seall barrachd dheth" @@ -1804,7 +1812,7 @@ msgstr "seall barrachd dheth" msgid "Create new group" msgstr "Cruthaich buidheann ùr" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "tachartas" @@ -1812,7 +1820,7 @@ msgstr "tachartas" msgid "status" msgstr "staid" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "dealbh" @@ -1822,36 +1830,36 @@ msgstr "dealbh" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "Chuir %1$s taga %4$s ri %3$s aig %2$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Lean air an t-snàithlean" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Seall an staid" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Seall a’ phròifil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Seall na dealbhan" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Postaichean lìonraidh" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Seall an neach-aithne" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Cuir TPh" @@ -1887,7 +1895,7 @@ msgid "Languages" msgstr "Cànanan" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Ceangail ris/Lean air" @@ -1941,42 +1949,42 @@ msgstr "Na còmhraidhean a thòisich thusa" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Pròifil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Duilleag na pròifil agad" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Dealbhan" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Na dealbhan agad" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Meadhanan" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "Na postaichean agad sa bheil meadhanan" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Mìosachan" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "Am mìosachan agad" @@ -2046,7 +2054,7 @@ msgstr "Tagaichean" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Luchd-aithne" @@ -2085,15 +2093,15 @@ msgstr "Teirmichean na seirbheise" msgid "Terms of Service of this Friendica instance" msgstr "Teirmichean seirbheise an ionstans Friendica seo" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Lìonra" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Còmhraidhean nan caraidean agad" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Na postaichean ’s còmhraidhean agad" @@ -2122,7 +2130,7 @@ msgstr "Cuir comharra gun deach fhaicinn" msgid "Mark all system notifications as seen" msgstr "Cuir comharra gun deach gach brath an t-siostaim a leughadh" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Post prìobhaideach" @@ -2144,15 +2152,15 @@ msgstr "Stiùir duilleagan eile" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Roghainnean" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Roghainnean a’ chunntais" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Stiùir/deasaich caraidean is luchd-aithne" @@ -2190,14 +2198,6 @@ msgstr "Seòladaireachd" msgid "Site map" msgstr "Mapa na làraich" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Tha an leabachadh à comas" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Susbaint leabaichte" - #: src/Content/Pager.php:216 msgid "first" msgstr "dhan toiseach" @@ -2214,38 +2214,38 @@ msgstr "air adhart" msgid "last" msgstr "dhan deireadh" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Dealbh" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Ceangal dhan tùs" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Briog ’ga fhosgladh/dhùnadh" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "Sgrìobh $1:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Susbaint chrioptaichte" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Pròtacal tùis mì-dhligheach" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Pròtacal ceangail mì-dhligheach" @@ -2330,49 +2330,49 @@ msgstr "Eòlaire co-naisgte" msgid "Local Directory" msgstr "Eòlaire ionadail" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "Cearcallan" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "A h-uile duine" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "Gu dàimh" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Dàimhean" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "A h-uile neach-aithne" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Pròtacalan" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Gach pròtacal" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Pasganan air an sàbhaladh" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "A h-uile càil" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Roinnean-seòrsa" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2381,41 +2381,41 @@ msgstr[1] "%d luchd-aithne an cumantas" msgstr[2] "%d luchd-aithne an cumantas" msgstr[3] "%d luchd-aithne an cumantas" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Tasg-lannan" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "Air an latha seo" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Daoine" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Buidhnean" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Naidheachdan" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Seòrsaichean chunntasan" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Na h-uile" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2469,12 +2469,12 @@ msgstr[3] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)" msgid "More Trending Tags" msgstr "Barrachd thagaichean a’ treandadh" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Iomradh" @@ -2490,7 +2490,7 @@ msgid "Matrix:" msgstr "Matrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2502,13 +2502,13 @@ msgstr "Ionad:" msgid "Network:" msgstr "Lìonra:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Na lean tuilleadh" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2881,27 +2881,23 @@ msgstr "Cha do mhothaich sinn dha TLS" msgid "TLS detected" msgstr "Mhothaich sinn dha TLS" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "Cha deach an tuilleadan ImageMagick aig PHP a stàladh" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "Chaidh an tuilleadan ImageMagick aig PHP a stàladh" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "Cuiridh ImageMagick taic ri GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Tha an stòr-dàta ’ga chleachdadh mu thràth." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Cha b’ urrainn dhuinn ceangal ris an stòr-dàta." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2911,37 +2907,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "DiLuain" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "DiMàirt" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "DiCiadain" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "DiarDaoin" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "DihAoine" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "DiSathairne" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "DiDòmhnaich" @@ -3279,47 +3275,51 @@ msgstr "Ainm a’ chearcaill: " msgid "Edit circles" msgstr "Deasaich na cearcallan" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Aontaich ris" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Buidheann" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "Buidheann" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Ath-sheachadan" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "URL pròifile mì-dhligheach." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Àrainn bhacte" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Tha URL a’ cheangail a dhìth." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris. Thoir sùil air teisteas an lìonraidh iomchaidh air duilleag nan “Roghainnean” > “Lìonraidhean sòisealta” agad." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Chan eil an lìonra %s air a bheil dùil co-ionnann ris a lìonra %s a tha ann" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Chan eil an seòladh pròifile a shònraich thu a’ solar am fiosrachadh iomchaidh." @@ -3367,12 +3367,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l, d F Y \\@ g:i a \\G\\M\\TP (e)" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "A’ tòiseachadh:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Thig e gu crìoch:" @@ -3390,17 +3390,17 @@ msgid "today" msgstr "an-diugh" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "mìos" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "seachdain" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "latha" @@ -3445,76 +3445,76 @@ msgstr "D g:i a" msgid "g:i A" msgstr "g:i a" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Seall am mapa" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Falaich am mapa" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Cò-là breith aig %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Co-là breith sona dhut, %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Na cànanan dhan a mhothaich sinn sa phost seo:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "gnìomhachd" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "beachd" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "post" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "Tha %s ’ga bhacadh" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "Tha %s ’ga leigeil seachad" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "Tha susbaint o %s ’ga cho-theannachadh" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Rabhadh susbainte: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "baidht" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3523,7 +3523,7 @@ msgstr[1] "%2$s (%3$d%%, %1$d bhòt)" msgstr[2] "%2$s (%3$d%%, %1$d bhòtaichean)" msgstr[3] "%2$s (%3$d%%, %1$d bhòt)" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3532,7 +3532,7 @@ msgstr[1] "%2$s (%1$d bhòt)" msgstr[2] "%2$s (%1$d bhòtaichean)" msgstr[3] "%2$s (%1$d bhòt)" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3541,7 +3541,7 @@ msgstr[1] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" msgstr[2] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" msgstr[3] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3550,12 +3550,12 @@ msgstr[1] "Rinn %d bhòtadh." msgstr[2] "Rinn %d bhòtadh." msgstr[3] "Rinn %d bhòtadh." -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Crìoch a’ bhunntais-bheachd:%s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Seall air duilleag fa leth" @@ -3563,7 +3563,7 @@ msgstr "Seall air duilleag fa leth" msgid "[no subject]" msgstr "[gun chuspair]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Dealbhan balla" @@ -3851,11 +3851,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "Thachair mearachd le cruthachadh a’ chearcaill luchd-aithne bhunaitich agad. Feuch ris a-rithist." -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Dealbhan na pròifil" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3863,7 +3863,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\t%1$s, a charaid,\n\t\t\tshuidhich rianaire %2$s cunntas dhut." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3894,12 +3894,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Am fiosrachadh clàraidh airson %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3914,12 +3914,12 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s, a charaid,\n\t\t\t\tMòran taing airson clàradh air %2$s. Tha an cunntas agad a’ feitheamh air aonta on rianaire.\n\n\t\t\tSeo am fiosrachadh clàraidh a-steach agad:\n\n\t\t\tSeòladh na làraich:\t%3$s\n\t\t\tAinm clàraidh a-steach:\t\t%4$s\n\t\t\tFacal-faire:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "An clàradh air %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3928,7 +3928,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\t%1$s, a charaid,\n\t\t\t\tMòran taing airson clàradh air %2$s. Chaidh an cunntas agad a chruthachadh.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3959,7 +3959,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3984,14 +3984,14 @@ msgid "Disable" msgstr "Cuir à comas" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Cuir an comas" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4031,12 +4031,12 @@ msgid "Addon %s failed to install." msgstr "Dh’fhàillig le stàladh an tuilleadain %s." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Sàbhail na roghainnean" @@ -4247,8 +4247,8 @@ msgid "Enable Debugging" msgstr "Cuir dì-bhugachadh an comas" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "Cead-leughaidh a-mhàin on a chaidh a shuidheachadh le caochladair àrainne" @@ -4409,269 +4409,269 @@ msgstr "Air a chruthachadh" msgid "Priority" msgstr "Prìomhachas" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "Chan eil %s ’na ion-chur dligheach do mheud as motha nan dealbhan" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Chan eil ùrlar sònraichte do dh’uidheaman mobile ann" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s – (deuchainneil)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Gun duilleag coimhearsnachd" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "Gun duilleag coimhearsnachd do dh’aoighean" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Postaichean poblach nan cleachdaichean air an làrach seo" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Postaichean poblach on lìonra cho-naisgte" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Postaichean poblach nan cleachdaichean ionadail ’s on lìonra cho-naisgte" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Ionstans ioma-chleachdaiche" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Dùinte" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Tha feum air aontachadh" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Fosgailte" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Na cuir sùil" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "cuir sùil air na tionndadh seasmhach" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "cuir sùil air na tionndadh leasachaidh" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "chan eil gin" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Luchd-aithne an ionadail" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Luchd co-luadair" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Làrach" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Fiosrachadh coitcheann" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Ath-fhoillsich na cleachdaichean dhan eòlaire" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Clàradh" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Luchdadh suas fhaidhlichean" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Poileasaidhean" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Adhartach" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Eòlaire an luchd-aithne a chaidh a lorg gu fèin-obrachail" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Dèanadas" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Obraiche" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Ath-sheachadan theachdaireachdan" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Cleachd an àithne “console relay” air an loidhne-àithne a chur ris no a thoirt air falbh ath-sheachadain." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "Cha do rinn an siostam fo-sgrìobhadh air ath-sheachadan sam bith aig an àm seo." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "Tha an siostam a’ fo-sgrìobhadh dha na h-ath-sheachadain seo:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "Imrich an nòd" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Le imrich an nòd, ’s urrainn dhut àrainn DNS an nòid seo atharrachadh agus na cleachdaichean is postaichean uile a chumail. Bheir am pròiseas seo greis mhath is cha ghabh a thòiseachadh ach le àithne imrich na consoil mar seo:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Pasgan Friendica)# bin/console relocate https://àrainn-ùr.com" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Ainm na làraich" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Post-d an t-seòladair" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "An seòladh puist-d a chleachdas am frithealaiche airson brathan puist-d a chur uaithe." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Ainm actar an t-siostaim" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Ainm cunntas inntearnail an fhrithealaiche a thèid a chleachdadh airson iarrtasan ActivityPub. Feumaidh seo a bhith ’na ainm-chleachdaiche gun chleachdadh. Nuair a bhios seo air a shuidheachadh, gha ghabh atharrachadh a-rithist." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Bratach/Suaicheantas" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "Bratach/Suaicheantas puist-d" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Ìomhaigheag na h-ath-ghoirid" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Ceangal gu ìomhaigheag a thèid a chleachdadh le brabhsairean." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Ìomhaigheag suathaidh" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Ceangal gu ìomhaigheag a thèid a chleachdadh airson tablaidean is fònaichean-làimhe." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Barrachd fiosrachaidh" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Airson frithealaichean poblach: ’s urrainn dhut barrachd fiosrachaidh a chur ris an-seo a nochdas air %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Cànan an t-siostaim" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Ùrlar an t-siostaim" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Ùrlar bunaiteach an t-siostaim – gabhaidh a thar-àithneadh le pròifilean cleachdaiche – Atharraich roghainnean an ùrlair bhunaitich" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Ùrlar mobile an t-siostaim" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "An t-ùrlar do dh’uidheaman mobile" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Spàrr SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Spàrr SSL air a h-uile iarrtas gun SSL – An aire: dh’fhaoidte gun adhbharaich seo lùban gun chrìoch air cuid a shiostaman." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Seall nì na cobharach ann an clàr-taice na seòladaireachd" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Seallaidh an nì airson duilleagan na cobharach ann an clàr-taice na seòladaireachd. Gabhaidh inntrigeadh le gairm /help gu dìreach an-còmhnaidh." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Ionstans aon-chleachdaiche" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Dèan ionstans ioma-chleachdaiche no aon-chleachdaiche dhan chleachdaiche ainmichte dhen ionstans seo" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Meud as motha nan dealbhan" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4679,35 +4679,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "Am meud as motha ann am baidht do dhealbhan a thèid a luchdadh suas. Is 0 a’ bhun-roghainn, ’s e sin gun chrìoch. ’S urrainn dhut k, m no g a chur às dèidh an luacha a thogras tu airson KiB, MiB no GiB.\n\t\t\t\t\t\t\t\t\t\t\t\t\tFeumaidh tu an luach air upload_max_filesize sa PHP.ini a shuidheachadh air a’ chrìoch a thogras tu air a char as lugha.\n\t\t\t\t\t\t\t\t\t\t\t\t\tChaidh upload_max_filesize a shuidheachadh air %s (%s baidht) aig an àm seo" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Faide as motha nan dealbhan" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "An fhaide as motha ann am piogsail aig an taobh as fhaide do dhealbhan a thèid a luchdadh suas. Is -1 a’ bhun-roghainn, ’s e sin gun chrìoch." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Càileachd deilbh JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Thèid dealbhan a’ sàbhaladh leis a’ chàileachd JPEG seo às dèidh an luchdadh suas [0-100]. Is 100 a’ bhun-roghainn, ’s e sin a’ chàileachd shlàn." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Poileasaidh clàraidh" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "Àireamh as motha de chleachdaichean" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4715,157 +4715,167 @@ msgid "" "not when the policy is set to approval." msgstr "Ma bhios seo air a mhìneachadh, thèid poileasaidh nan clàraidhean a dhùnadh gu fèin-obrachail nuair a bhios an àireamh shònraichte de chleachdaichean air a ruigsinn agus fhosgladh a-rithist nuair a thèid an àireamh nas ìsle na a’ chrìoch. Chan obraich seo ach ma chaidh am poileasaidh a shuidheachadh air “Fosgailte” no “Dùinte” agus chan obraich e ma chaidh am poileasaidh a shuidheachadh air “Aontachadh”." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "An àireamh as motha de chlàraidhean gach latha" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Ma tha an clàradh ceadaichte gu h-àrd, suidhichidh seo an àireamh as motha de chlàraidhean chleachdaichean ùra gach latha. Ma tha an clàradh dùinte, cha doir an roghainn seo buaidh." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Teacsa a’ chlàraidh" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Thèid a shealltainn gu follaiseach air duilleag a’ chlàraidh. ’S urrainn dhut BBCode a chleachdadh an-seo." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Far-ainmean toirmisgte" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Liosta sgaraichte le cromagan de dh’fhar-ainmean nach fhaod clàradh. Tha liosta de dh’ainmean dreuchdan a-rèir RFC 2142 ro-shocraichte." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Cunntasan air an trèigsinn às dèidh x là" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Cha chaith seo goireasan an t-siostam le ceasnachadh làraichean air an taobh a-muigh airson cunntasan air an trèigsinn. Cuir a-steach 0 airson cunntasan gun chrìoch ùine." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Àrainnean ceadaichte do chàirdeasan" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liosta sgaraichte le cromagan de dh’àrainnean a dh’fhaodas càirdeasan a stèidheachadh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Àrainnean puist-d ceadaichte" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Liosta sgaraichte le cromagan de dh’àrainnean a tha ceadaichte ann am puist-d airson clàradh leis an làrach seo. Gabhaidh seo ri saoragan. Fàg bàn airson a h-uile àrainn a cheadachadh" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Gun susbaint OEmbed bheartach" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Na seall susbaint bheartach (m. e. PDF leabaichte) ach o na h-àrainnean air an liosta gu h-ìosal." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Àrainnean threas-phàrtaidhea earbsach" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Liosta sgaraichte le cromagan de dh’àrainnean on a dh’fhaodar susbaint a leabachadh am broinn phostaichean le OEmbed. Thèid cead a thoirt dhan a h-uile fo-àrainn dhe na h-àrainnean air an liosta cuideachd." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Bac inntrigeadh poblach" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cuir cromag ris a bhacadh inntrigeadh poblach air a h-uile duilleag phearsanta a bhiodh poblach air an làrach seo ach dhan fheadhainn a bhios air a clàradh a-staigh." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Spàrr foillseachadh" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cuir cromag ris a sparradh air a h-uile pròifil air an làrach seo gun nochd iad ann an eòlaire na làraich." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Ma chuireas tu seo an comas, dh’fhaoidte gum bris thu laghan mar an GDPR" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "URL an eòlaire cho-naisgte" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL dhan eòlaire cho-naisgte. Mura deach seo a shuidheachadh, cha bhi an t-eòlaire uile-choitcheann ri fhaighinn idir dhan aplacaid." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "Suidhichidh seo ceadan phostaichean nam ball ùra air a’ chearcall phrìobhaideach gu bunaiteach seach air a’ chearcall phoblach." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Na gabh a-staigh susbaint nam post ann am brathan puist-d" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Na gabh a-staigh susbaint puist/beachd/teachdaireachd prìobhaidich/msaa. sna brathan puist-d a thèid a chur on làrach seo, a chùm prìobhaideachd." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Na ceadaich inntrigeadh poblach dha na tuilleadain a tha air an liosta ann an clàr-taice nan aplacaidean." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Ma tha cromag sa bhogsa seo, bidh an t-inntrigeadh air na tuilleadain a chithear ann an clàr-taice nan aplacaidean cuingichte air na buill a-mhàin." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Na leabaich dealbhan prìobhaideach ann am postaichean" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4873,11 +4883,11 @@ msgid "" "while." msgstr "Na cuir lethbhreac leabaichte dhen dealbh an àite dhealbhan prìobhaideach ann am postaichean a tha ’gan òstadh gu h-ionadail. Is ciall dha seo gum feum an luchd-aithne a gheibh postaichean sa bheil dealbhan prìobhaideach ùghdarrachadh is gach dealbh a luchdadh fa leth agus dh’fhaoidte gun doir sin greis." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Susbaint inbheach" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4886,339 +4896,339 @@ msgid "" "will be shown at the user registration page." msgstr "Suidhich seo a dh’innse gu bheil an nòd agad ’ga chleachdadh airson susbaint inbheach gu h-àraidh is nach eil e iomchaidh do mhion-aoisich ’s dòcha. Thèid am fiosrachadh seo fhoillseachadh ann am fiosrachadh an nòid agus gabhaidh a chleachdadh m.e. leis an eòlaire cho-naisgte airson an nòd agad a chriathradh air falbh o liosta nan nòdan a chùm ballrachd ùir. A bharrachd air sin, thèid nòta a shealltainn aig duilleag clàradh nan cleachdaichean." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "Susbaint chèin tro phrogsaidh" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Rùtaich susbaint chèin le gleus a’ phrogsaidh. Tha seo ’ga chleachdadh, mar eisimpleir, airson cuid dhen inntrigeadh OEmbed agus ann an suidheachaidhean ainneamh eile." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "Cuir avataran an luchd-aithne dhan tasgadan" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Stòr dealbhan avatar an luchd-aithne gu h-ionadail. Cleachdaidh seo tòrr àite san stòras ach cuiridh e ris an dèanadas." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Leig le cleachdaichean remote_self a shuidheachadh" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Ma chuireas tu cromag ris, faodaidh gach cleachdaiche neach-aithne sam bith a chomharrachadh mar remote_self ann an còmhradh càradh an luchd-aithne. Nuair a thèid a’ bhratach seo a chur ri neach-aithne, thèid a h-uile post an neach-aithne sin sgàthanachadh ann an sruth a’ chlechdaiche." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "Cuir clàradh iomadach an comas" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "Bheir seo an comas dha na cleachdaichean gun clàraich iad cunntasan a bharrachd airson an cleachdadh ’nan duilleagan." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "Cuir OpenID an comas" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "Cuir an comas taic dha OpenID airson clàradh is clàradh a-steach." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "Cuir puist-d dha na rianairean do chlàraidhean ùra" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "Nuair a bhios seo an comas agus an siostam air a shuidheachadh air clàraidhean fosgailte, thèid post-d a chur dha na rianairean do gach clàradh ùr." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Duilleagan coimhearsnachd do dh’aoighean" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Dè na duilleagan coimhearsnachd a chì aoighean. Chì na cleachdaichean ionadail an dà dhuilleag an-còmhnaidh." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Postaichean gach cleachdaiche air duilleag na coimhearsnachd" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "Cuir taic ri post-d an comas" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Cuir an comas an taic ri post-d a thig ’na bhroinn airson pasganan IMAP a cheasnachadh agus freagairt le post-d." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "Chan urrainn dhuinn an taic ri post-d a chur an comas air sgàth ’s nach deach am mòideal IMAP aig PHP a stàladh." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "Cuir an taic ri OStatus an comas" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Cuir an comas a’ cho-chòrdalachd ri OStatus (StatusNet, GNU Social is msaa.) a thig ’na bhroinn. Bidh gach conaltradh slighe OStatus poblach." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Chan urrainn dhuinn an taic ri diaspora* a chur an comas on a chaidh Friendica a stàladh ann am fo-phasgan." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Cuir taic ri diaspora* an comas" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Cuir an comas a’ cho-chòrdalachd lìonraidh le diaspora* a thig ’na bhroinn airson conaltradh le frithealaichean diaspora*." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Dearbh SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Ma thogras tu, ’s urrainn dhut sgrùdadh teann nan teisteanasan a chur an comas. Is ciall dha seo nach urrainn dhut ceangal idir le làraichean le SSL a chaidh fhèin-shoidhneadh." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Cleachdaiche a’ phrogsaidh" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "Ainm-cleachdaiche dhan fhrithealaiche progsaidh." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL a’ phrogsaidh" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Ma tha thu airson ’s gun cleachd Friendica frithealaiche progsaidh airson ceangal ris an lìonra, cuir URL a’ phrogsaidh an-seo." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Crìoch-ùine an lìonraidh" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Luach ann an diogan. Is ciall dha 0 nach fhalbh an ùine air idir (cha mholamaid seo)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Eallach as motha sa chuibheas" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Eallach as motha air an t-siostam mus dèid dàil a chur air an lìbhrigeadh is air pròiseasadh cunbhalach – ’s e %d a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "A’ chuimhne as lugha" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "A’ chuimhne shaor as lugha ann an MB dhan obraiche. Bidh feum air inntrigeadh dha /proc/meminfo – is 0 a’ bhun-roghainn (à gnìomh)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Pisich na clàran o àm gu àm" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Pisich clàran mar an tasgadan is an ciutha-obrach gu cunbhalach" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Lorg dàimhean leantainn on luchd-aithne" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Ma tha seo an comas, thèid sùil a thoirt airson luchd-leantainn an luchd-aithne is an fheadhainn air a leanas iad." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Chan eil gin – à comas" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Luchd-aithne ionadail – thèid dàimhean leantainn an luchd-aithne ionadail a lorg." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Luchd co-luadair – thèid dàimhean leantainn an luchd-aithne ionadail agus aig an fheadhainn a rinn co-luadar le postaichean poblach a lorg." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Sioncronaich an luchd-aithne le frithealaiche an eòlaire" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Ma tha seo an comas, bheir an siostam sùil gu cunbhalach airson luchd-aithne ùr air frithealaiche an eòlaire a chaidh a mhìneachadh." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Lorg luchd-aithne o fhrithealaichean eile" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Làithean eadar ceasnachaidhean" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Lorg san eòlaire ionadail" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Lorg san eòlaire ionadail seach san eòlaire cho-naisgte. Nuair a nì thu lorg gu h-ionadail, thèid gach lorg a ghnìomhachadh san eòlaire cho-naisgte sa chùlaibh. Cuiridh seo piseach air na toraidhean luirg nuair a nithear an t-aon lorg a-rithist." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Foillsich fiosrachadh an fhrithealaiche" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5226,50 +5236,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Ma tha seo an comas, thèid dàta coitcheann mun fhrithealaiche ’s cleachdadh fhoillseachadh. Gabhaidh an dàta a-staigh ainm is tionndadh an fhrithealaiche, an àireamh de chleachdaichean le pròifilean poblach, an àireamh de phostaichean agus na pròtacalan is ceangladairean an comas. Faic the-federation.info airson barrachd fiosrachaidh." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Cuir sùil air tionndadh an upstream" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Cuiridh seo an comas gun dèid sùil a chur airson tionndaidhean dhe Friendica air GitHub. Nuair a bhios tionndadh ùr an, thèid innse dhut air foir-shealladh panail na rianachd." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Mùch tagaichean" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Mùch sealladh liosta nan tagaichean hais air deireadh nam post." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Sgioblaich an stòr-dàta" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Thoir air falbh nithean cèine, reacordan stòir-dhàta a tha ’nan dìlleachdanan agus seann-susbaint eile o chuid a chlàran-taice eile." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Faid-bheatha nan nithean cèine" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean cèine a sguabadh às. Thèid na nithean againn fhèin ’s na nithean a chaidh a chomharrachadh no fhaidhleadh a chumail an-còmhnaidh. Cuiridh 0 an giùlan seo à comas." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Faid-bheatha nan nithean gun tagairt" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5277,175 +5287,175 @@ msgid "" "items if set to 0." msgstr "Nuair a bhios sgioblachadh an stòir-dhàta an comas, mìnichidh seo na làithean mus dèid nithean gun tagairt (seo susbaint on ath-sheachadan mar as trice) a sguabadh às. ’S e 90 latha a tha sa bhun-roghainn. Ma shuidhicheas tu seo air 0, thèid luach faid-bheatha nan nithean cèine a chleachdadh mar bhun-roghainn." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Faid-bheatha dàta amh nan còmhraidhean" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Tha dàta nan còmhraidhean ’ga chleachdadh airson ActivityPub is OStatus agus a chùm dì-bhugachaidh. Bu chòir dha a bhith sàbhailte ma sguabas tu às às dèidh cola-deug. ’S e 90 latha a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "An àireamh as motha de bheachdan ri post" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Co mheud beachd a thèid a shealltainn do gach post? ’S e 100 a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "An àireamh as motha de bheachdan ri post air duilleag na sealltainn" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Co mheud beachd a thèid a shealltainn do gach post nuair a sheallar post fa leth? ’S e 1000 a tha sa bhun-roghainn." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Slighe shealadach" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Ma tha siostam cuingichte agad far nach urrainn dhan fhrithealaiche-lìn slighe temp an t-siostaim inntrigeadh, cuir a-steach slighe eile an-seo." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Na lorg ach sna tagaichean" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "Air siostaman mòra, ’s urrainn dhan lorg teacsa maille mhòr a chur air an t-siostam." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "Cruthaich cunntasan do chearcallan luchd-aithne nuair a thèid cunntas an lìonraidh àireamhachadh" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "Air siostaman far an bheil tòrr chearcallan luchd-aithne ’gan cleachdadh, faodaidh a’ cheist seo a bhith glè dhaor." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "An àireamh as motha de dh’obraichean co-shìnte" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Suidhich seo air %d air òstairean co-roinnte. Air siostaman nas motha, bidh luach %d math. Is %d a’ bhun-roghainn." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Cuir fastlane an comas" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Nuair a bhios seo an comas, cuiridh am fastlane obraiche a bharrachd air dòigh ma tha pròiseas air a bheil prìomhachas as àirde ’ga bhacadh le pròiseasan air a bheil prìomhachas ìosal." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5453,153 +5463,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Tar-chur ath-sheachadain dìreach" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Cuiridh seo an comas an tar-chur dìreach gu frithealaichean eile às aonais nam frithealaichean ath-sheachadain" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Sgòp an ath-sheachadain" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Tha taghadh eadar “na h-uile” is “tagaichean” agad. Is ciall dha “na h-uile” gun dèid gach post poblach fhaighinn. Is ciall dha “tagaichean” nach dèid ach postaichean le tagaichean sònraichte fhaighinn." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "À comas" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "na h-uile" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "tagaichean" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Tagaichean an fhrithealaiche" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Liosta de thagaichean airson fo-sgrìobhadh nan “tagaichean”, sgaraichte le cromagan." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Tagaichean an fhrithealaiche ’gan diùltadh" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Liosta da thagaichean a tha ’gan diùltadh, sgaraichte le cromagan." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Ceadaich tagaichean chleachdaichean" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Ma tha seo an comas, thèid na tagaichean o na lorgan air an sàbhaladh a chleachdadh airson fo-sgrìobhadh nan “tagaichean” a bharrachd air na “relay_server_tags”." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Tòisich air an imrich" @@ -6195,11 +6205,11 @@ msgstr "Tha ID an tachartais a dhìth." msgid "Failed to remove event" msgstr "Cha deach leinn an tachartas a thoirt air falbh" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Chan urrainn do thachartas crìochnachadh mus tòisich e." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Tha feum air tiotal is àm tòiseachaidh an tachartais." @@ -6291,7 +6301,7 @@ msgstr "Seall" msgid "Create New Event" msgstr "Cruthaich tachartas ùr" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "liosta" @@ -6951,7 +6961,7 @@ msgid "Actions" msgstr "Gnìomhan" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Staid" @@ -7123,33 +7133,33 @@ msgstr "Chan eil roghainn na coimhearsnachd ri fhaighinn." msgid "Not available." msgstr "Chan eil seo ri fhaighinn." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "Chan eil an cearcall seo ann" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "Cearcall: %s" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "An luchd-aithne agadsa" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Gabh a-staigh" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Falaich" @@ -7181,7 +7191,7 @@ msgid "Result Item" msgstr "Nì toraidh" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7194,179 +7204,179 @@ msgstr[3] "Mearachdan" msgid "Source activity" msgstr "Gnìomhachd bun-tùis" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Ion-chur bun-tùis" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (HTML amh)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (sia-dheicheach)" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (HTML amh)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Bodhaig nì" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Tagaichean nì" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (HTML amh)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Ion-chur bun-tùis (fòrmat diaspora*)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Ion-chur bun-tùis (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (HTML amh)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Ion-chur HTML amh" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "Ion-chur HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "HTML air a ghlanadh (amh)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "HTML air a ghlanadh (sia-dheicheach)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "HTML air a ghlanadh" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (HTML amh)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (dùmhlaichte)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Post air a dhì-chòdachadh" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "Arraigh a’ phuist ro leudachadh nan eintiteasan" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Post air iompachadh" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "Bodhaig air a h-iompachadh" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "Chan eil tuilleadan Twitter sa phasgan addon/." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Diagnosachd Babel" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Teacsa tùsail" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Bun-tùs Twitter / URL a’ tweet (feum air iuchair API)" @@ -7877,7 +7887,7 @@ msgstr "Faidhlichean" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Luchdaich suas" @@ -7898,14 +7908,14 @@ msgstr "Tha am faidhle nas motha na tha ceadaichte dhe %s" msgid "File upload failed." msgstr "Dh’fhàillig luchdadh suas an fhaidhle." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Cha b’ urrainn dhuinn an dealbh a phròiseasadh." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Dh’fhàillig le luchdadh suas an deilbh." @@ -8964,7 +8974,7 @@ msgstr "A bheil thu airson cead a thoirt dhan aplacaid seo airson na postaichean msgid "Unsupported or missing response type" msgstr "Seòrsa freagairte gun taic ris no a dhìth" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Dàta iarrtais neo-choileanta" @@ -8975,11 +8985,11 @@ msgid "" "close this window: %s" msgstr "Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "Dàta mì-dhligheach no cliant nach aithne dhuinn" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Seòrsa ceadachaidh gun taic ris no a dhìth" @@ -9104,21 +9114,21 @@ msgstr "Èisteachd: %s
" msgid "Attributed To: %s
" msgstr "Air a chur às leth: %s
" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "Chan eil an dealbh ri fhaighinn." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "Chan eil an dealbh air a bheil an id %s ri fhaighinn." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "Goireas mì-dhligheach air an taobh a-muigh leis an url %s." -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Dealbh mì-dhligheach air a bheil an id %s." @@ -9170,27 +9180,27 @@ msgstr "Chan eil neach-aithne ann." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "An loidhne-ama aig %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Na postaichean aig %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Na beachdan aig %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Tha an dealbh nas motha na tha ceadaichte dhe %s" @@ -9209,11 +9219,11 @@ msgid "" "administrator" msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Tha faidhle an deilbh falamh." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Seall an t-albam" @@ -10278,12 +10288,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" @@ -10681,181 +10691,189 @@ msgstr "Tagraichean luchd-ionaid" msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Chan eil an t-ùrlar a thagh thu ri fhaighinn." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Roghainnean coitcheann an ùrlair" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Roghainnean gnàthaichte an ùrlair" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Roghainnean an ùrlair" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Ùrlar taisbeanaidh:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Ùrlar mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "Seall an gleus “Cha toigh leam seo”" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Seall am putan “Cha toigh leam seo” agus freagairtean “Cha toigh leam seo” air postaichean is beachdan." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Seall cò rinn an co-roinneadh" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Seall a’ chiad neach a rinn co-roinneadh ’na ìomhaigheag agus teacsa air an nì a chaidh a cho-roinneadh." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -11020,7 +11038,7 @@ msgstr "" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "" @@ -11060,31 +11078,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "" @@ -12788,124 +12806,100 @@ msgstr "" msgid "Variations" msgstr "Fiamhan" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Soilleir (soilleirichte)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Dorcha (soilleirichte)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Dubh (soilleirichte)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "An aire" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Thoir sùil air ceadan an deilbh ma dh’fhaodas a h-uile cleachdaiche an dealbh fhaicinn" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Gnàthaichte" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Dìleabach" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Soilleirichte" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Tagh sgeama nan dathan" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Tagh soilleireachadh an sgeama" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Gorm" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Dearg" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Purpaidh" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Uaine" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Pinc" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Dèan lethbhreac no cuir ann sreang sgeama" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "’S urrainn dhut lethbhreac dhen t-sreang seo a dhèanamh airson an t-ùrlar agad a cho-roinneadh le càch. Nuair a chuireas tu rud ann an-seo, thèid sreang an sgeama a chur an sàs" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Dath cùlaibh bàr na seòladaireachd" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Dath ìomhaigheagan bàr na seòladaireachd " -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Dath nan ceanglaichean" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Suidhich dath a’ chùlaibh" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Trìd-dhoilleireachd cùlaibh na susbainte" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Suidhich dealbh a’ chùlaibh" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Stoidhle dealbh a’ chùlaibh" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "Fosgail duilleag an sgrìobhaidh an-còmhnaidh" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Fàg dealbh ’s dath a’ chùlaibh bàn do bhun-roghainnean an ùrlair" @@ -12945,19 +12939,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Gnàthaichte" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/gd/strings.php b/view/lang/gd/strings.php index 21856d68bb..3314ca351e 100644 --- a/view/lang/gd/strings.php +++ b/view/lang/gd/strings.php @@ -562,8 +562,6 @@ $a->strings['Moderation'] = 'Maorsainneachd'; $a->strings['Content and user moderation'] = 'Susbaint is maorsainneachd chleachdaichean'; $a->strings['Navigation'] = 'Seòladaireachd'; $a->strings['Site map'] = 'Mapa na làraich'; -$a->strings['Embedding disabled'] = 'Tha an leabachadh à comas'; -$a->strings['Embedded content'] = 'Susbaint leabaichte'; $a->strings['first'] = 'dhan toiseach'; $a->strings['prev'] = 'air ais'; $a->strings['next'] = 'air adhart'; @@ -726,7 +724,6 @@ $a->strings['No TLS detected'] = 'Cha do mhothaich sinn dha TLS'; $a->strings['TLS detected'] = 'Mhothaich sinn dha TLS'; $a->strings['ImageMagick PHP extension is not installed'] = 'Cha deach an tuilleadan ImageMagick aig PHP a stàladh'; $a->strings['ImageMagick PHP extension is installed'] = 'Chaidh an tuilleadan ImageMagick aig PHP a stàladh'; -$a->strings['ImageMagick supports GIF'] = 'Cuiridh ImageMagick taic ri GIF'; $a->strings['Database already in use.'] = 'Tha an stòr-dàta ’ga chleachdadh mu thràth.'; $a->strings['Could not connect to database.'] = 'Cha b’ urrainn dhuinn ceangal ris an stòr-dàta.'; $a->strings['Monday'] = 'DiLuain'; @@ -2445,16 +2442,8 @@ $a->strings['Notification from Friendica'] = 'Brath o Friendica'; $a->strings['Empty Post'] = 'Post falamh'; $a->strings['default'] = 'bunaiteach'; $a->strings['Variations'] = 'Fiamhan'; -$a->strings['Light (Accented)'] = 'Soilleir (soilleirichte)'; -$a->strings['Dark (Accented)'] = 'Dorcha (soilleirichte)'; -$a->strings['Black (Accented)'] = 'Dubh (soilleirichte)'; $a->strings['Note'] = 'An aire'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Thoir sùil air ceadan an deilbh ma dh’fhaodas a h-uile cleachdaiche an dealbh fhaicinn'; -$a->strings['Custom'] = 'Gnàthaichte'; -$a->strings['Legacy'] = 'Dìleabach'; -$a->strings['Accented'] = 'Soilleirichte'; -$a->strings['Select color scheme'] = 'Tagh sgeama nan dathan'; -$a->strings['Select scheme accent'] = 'Tagh soilleireachadh an sgeama'; $a->strings['Blue'] = 'Gorm'; $a->strings['Red'] = 'Dearg'; $a->strings['Purple'] = 'Purpaidh'; @@ -2471,4 +2460,5 @@ $a->strings['Set the background image'] = 'Suidhich dealbh a’ chùlaibh'; $a->strings['Background image style'] = 'Stoidhle dealbh a’ chùlaibh'; $a->strings['Always open Compose page'] = 'Fosgail duilleag an sgrìobhaidh an-còmhnaidh'; $a->strings['Leave background image and color empty for theme defaults'] = 'Fàg dealbh ’s dath a’ chùlaibh bàn do bhun-roghainnean an ùrlair'; +$a->strings['Custom'] = 'Gnàthaichte'; $a->strings['Quick Start'] = 'Grad-tòiseachadh'; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index dc24f803bd..a3cc38a848 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -4,7 +4,7 @@ # # Translators: # Balázs Meskó , 2024 -# Balázs Úr, 2020-2023 +# Balázs Úr, 2020-2024 # Balázs Úr , 2020 # Kastal András , 2018 # Kastal András , 2018 @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Balázs Meskó , 2024\n" +"Last-Translator: Balázs Úr, 2020-2024\n" "Language-Team: Hungarian (http://app.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,14 +43,14 @@ msgstr "Az elemet nem sikerült lekérni." msgid "Empty post discarded." msgstr "Az üres bejegyzés elvetve." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Az elem nem található." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -73,14 +73,14 @@ msgstr "Az elem nem található." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Hozzáférés megtagadva." @@ -245,7 +245,7 @@ msgstr "Üzenet-összegyűjtési hiba." msgid "Discard" msgstr "Elvetés" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Üzenetek" @@ -290,20 +290,20 @@ msgstr "Fénykép feltöltése" msgid "Insert web link" msgstr "Webhivatkozás beszúrása" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Kis türelmet" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -317,7 +317,7 @@ msgstr "Kis türelmet" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Elküldés" @@ -388,7 +388,7 @@ msgstr "A személyes jegyzetek csak az Ön számára láthatók." msgid "Save" msgstr "Mentés" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -401,99 +401,99 @@ msgid "User not found." msgstr "A felhasználó nem található." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Fényképalbumok" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Legutóbbi fényképek" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Új fényképek feltöltése" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "mindenki" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "A partner információi nem érhetők el" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Az album nem található." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Az album sikeresen törölve" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Az album üres volt." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Nem sikerült törölni a fényképet." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "egy fényképen" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s meg lett jelölve %2$s %3$s által" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Nyilvános hozzáférés megtagadva." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Nincsenek fényképek kijelölve" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "A legnagyobb elfogadott képméret %s" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Fényképek feltöltése" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Új album neve: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "vagy meglévő album kiválasztása:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Jogosultságok" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Album törlése" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -503,133 +503,133 @@ msgstr "Album törlése" msgid "Cancel" msgstr "Mégse" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Album szerkesztése" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Album eldobása" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Legújabb megjelenítése először" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Legrégebbi megjelenítése először" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Hozzáférés megtagadva. Az elemhez való hozzáférés korlátozva lehet." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "A fénykép nem érhető el" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Valóban törölni szeretné ezt a fényképet?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Fénykép törlése" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Fénykép szerkesztése" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Fénykép törlése" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Használat profilfényképként" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Személyes fénykép" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Teljes méret megtekintése" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Címkék: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Eltávolítandó címkék kiválasztása]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Új album neve" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Felirat" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Címke hozzáadása" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Ne forgassa el" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Forgatás jobbra" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Forgatás balra" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Ez Ön" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Hozzászólás" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Előnézet" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Betöltés…" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Kiválasztás" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -638,23 +638,23 @@ msgstr "Kiválasztás" msgid "Delete" msgstr "Törlés" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Tetszik" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Ezt kedvelem (átváltás)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Nem tetszik" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Ezt nem kedvelem (átváltás)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Térkép" @@ -795,18 +795,18 @@ msgid "All contacts" msgstr "Összes partner" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Követők" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Követés" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "Kölcsönösen ismerősök" @@ -998,7 +998,7 @@ msgstr "Nyelv megadása (elhagyható): " #: src/Console/User.php:267 msgid "Enter URL of an image to use as avatar (optional): " -msgstr "" +msgstr "Adja meg a profilképként használandó kép URL-jét (elhagyható): " #: src/Console/User.php:292 msgid "User is not pending." @@ -1084,7 +1084,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1530,11 +1530,11 @@ msgstr "Azoktól a partnerektől származó bejegyzések, akikkel kapcsolatba ke #: src/Content/Conversation/Factory/Channel.php:43 msgid "Discover" -msgstr "" +msgstr "Felfedezés" #: src/Content/Conversation/Factory/Channel.php:43 msgid "Posts from accounts that you don't follow, but that you might like." -msgstr "" +msgstr "Az olyan fiókokból származó bejegyzések, amelyeket nem követ, de kedvelheti azokat." #: src/Content/Conversation/Factory/Channel.php:44 msgid "What's Hot" @@ -1562,29 +1562,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Az Ön által követett fiókok által követett fiókokból származó bejegyzések" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "Csendes megosztók" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "Az olyan fiókokból származó bejegyzések, amelyeket követ, de nem hoznak létre bejegyzést túl gyakran" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "Képek" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "Képekkel rendelkező bejegyzések" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "Hang" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "Hanggal rendelkező bejegyzések" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "Videók" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "Videókkal rendelkező bejegyzések" @@ -1762,7 +1770,7 @@ msgid "" msgstr "Lehetővé teszi a névtelen látogatók számára a naptára és a nyilvános eseményei megtekintését. A partner születésnapi eseményei az Ön számára magánjellegűek." #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "Csoportok" @@ -1771,12 +1779,12 @@ msgstr "Csoportok" msgid "External link to group" msgstr "Külső hivatkozás a csoporthoz" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "kevesebb megjelenítése" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "több megjelenítése" @@ -1784,7 +1792,7 @@ msgstr "több megjelenítése" msgid "Create new group" msgstr "Új csoport létrehozása" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "esemény" @@ -1792,7 +1800,7 @@ msgstr "esemény" msgid "status" msgstr "állapot" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "fénykép" @@ -1802,36 +1810,36 @@ msgstr "fénykép" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Szál követése" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Állapot megtekintése" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Profil megtekintése" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Fényképek megtekintése" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Hálózati bejegyzések" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Partner megtekintése" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Személyes üzenet küldése" @@ -1867,7 +1875,7 @@ msgid "Languages" msgstr "Nyelvek" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Kapcsolódás vagy követés" @@ -1921,42 +1929,42 @@ msgstr "Ön által elkezdett beszélgetések" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Az Ön profiloldala" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Fényképek" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Az Ön fényképei" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "Az Ön médiával rendelkező beküldései" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Naptár" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "Az Ön naptára" @@ -2026,7 +2034,7 @@ msgstr "Címkék" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Partnerek" @@ -2065,15 +2073,15 @@ msgstr "Használati feltételek" msgid "Terms of Service of this Friendica instance" msgstr "Ezen Friendica példány használati feltételei" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Hálózat" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Ismerősökkel való beszélgetések" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Az Ön bejegyzései és beszélgetései" @@ -2102,7 +2110,7 @@ msgstr "Megjelölés olvasottként" msgid "Mark all system notifications as seen" msgstr "Összes rendszerértesítés megjelölése olvasottként" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Személyes levél" @@ -2124,15 +2132,15 @@ msgstr "Más oldalak kezelése" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Beállítások" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Fiókbeállítások" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Ismerősök és partnerek kezelése vagy szerkesztése" @@ -2170,14 +2178,6 @@ msgstr "Navigáció" msgid "Site map" msgstr "Oldaltérkép" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "A beágyazás letiltva" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Beágyazott tartalom" - #: src/Content/Pager.php:216 msgid "first" msgstr "első" @@ -2194,38 +2194,38 @@ msgstr "következő" msgid "last" msgstr "utolsó" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Kép vagy fénykép" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Hivatkozás a forráshoz" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 írta:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Titkosított tartalom" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Érvénytelen forrásprotokoll" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Érvénytelen hivatkozási protokoll" @@ -2308,90 +2308,90 @@ msgstr "Globális könyvtár" msgid "Local Directory" msgstr "Helyi könyvtár" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "Körök" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Mindenki" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "Nincs kapcsolat" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Kapcsolatok" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Összes partner" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protokollok" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Összes protokoll" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Mentett mappák" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Minden" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Kategóriák" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d partner közös" msgstr[1] "%d partner közös" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archívumok" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "Ezen a napon" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Személyek" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Szervezetek" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Hírek" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" -msgstr "" +msgstr "Továbbítók" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Fióktípusok" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Összes" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "Csatornák" @@ -2441,12 +2441,12 @@ msgstr[1] "Népszerű címkék (legutóbbi %d óra)" msgid "More Trending Tags" msgstr "További népszerű címkék" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "Beküldés csoportba" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Említés" @@ -2462,7 +2462,7 @@ msgid "Matrix:" msgstr "Mátrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2474,13 +2474,13 @@ msgstr "Hely:" msgid "Network:" msgstr "Hálózat:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Követés megszüntetése" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "Csoport megtekintése" @@ -2655,11 +2655,11 @@ msgstr "PDO vagy MySQLi PHP-modul" #: src/Core/Installer.php:411 msgid "Error: The IntlChar module is not installed." -msgstr "" +msgstr "Hiba: az IntlChar modul nincs telepítve." #: src/Core/Installer.php:414 msgid "IntlChar PHP module" -msgstr "" +msgstr "IntlChar PHP-modul" #: src/Core/Installer.php:422 msgid "Error, XML PHP module required but not installed." @@ -2853,67 +2853,63 @@ msgstr "Nincs TLS felismerve" msgid "TLS detected" msgstr "TLS felismerve" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "Az ImageMagick PHP-kiterjesztés nincs telepítve" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "Az ImageMagick PHP-kiterjesztés telepítve van" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "Az ImageMagick támogatja a GIF-et" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Az adatbázis már használatban van." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Nem sikerült kapcsolódni az adatbázishoz." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" -msgstr "" +msgstr "Nem meghatározott" #: src/Core/L10n.php:451 #, php-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Hétfő" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Kedd" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Szerda" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Csütörtök" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Péntek" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Szombat" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Vasárnap" @@ -3251,47 +3247,51 @@ msgstr "Kör neve: " msgid "Edit circles" msgstr "Körök szerkesztése" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Jóváhagyás" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Szervezet" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "Csoport" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Továbbítás" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Nem engedélyezett profil URL." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Tiltott tartomány" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "A kapcsolódási URL hiányzik." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "A várt %s hálózat nem egyezik a tényleges %s hálózattal" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "Úgy tűnik, hogy ez egy továbbító fiók. Ezeket nem követhetik a felhasználók." + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "A megadott profilcím nem biztosít elegendő információt." @@ -3339,12 +3339,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "Y. F j., l, H:i \\G\\M\\TP (e)" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Kezdődik:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Befejeződik:" @@ -3362,17 +3362,17 @@ msgid "today" msgstr "ma" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "hónap" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "hét" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "nap" @@ -3417,109 +3417,109 @@ msgstr "D H:i" msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Térkép megjelenítése" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Térkép elrejtése" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%s születésnapja" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Boldog születésnapot, %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" -msgstr "" +msgstr "%s (%s – %s): %s" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" -msgstr "" +msgstr "%s (%s): %s" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "A bejegyzésben felismert nyelvek:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "tevékenység" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "hozzászólás" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "bejegyzés" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "%s tiltva van" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "%s mellőzve van" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "A(z) %s helyről származó tartalom összecsukva" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Tartalom figyelmeztetés: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bájt" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d szavazat)" msgstr[1] "%2$s (%3$d%%, %1$d szavazat)" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d szavazat)" msgstr[1] "%2$s (%1$d szavazat)" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d szavazó. A szavazás vége: %s" msgstr[1] "%d szavazó. A szavazás vége: %s" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d szavazó." msgstr[1] "%d szavazó." -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Szavazás vége: %s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Megtekintés külön oldalon" @@ -3527,7 +3527,7 @@ msgstr "Megtekintés külön oldalon" msgid "[no subject]" msgstr "[nincs tárgy]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Falfényképek" @@ -3811,11 +3811,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "Hiba történt az alapértelmezett partnerkör létrehozásakor. Próbálja újra." -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Profilfényképek" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3823,7 +3823,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tKedves %1$s!\n\t\t\tA(z) %2$s adminisztrátora beállított egy fiókot Önnek." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3852,14 +3852,14 @@ msgid "" "\t\tIf you ever want to delete your account, you can do so at %1$s/settings/removeme\n" "\n" "\t\tThank you and welcome to %4$s." -msgstr "" +msgstr "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1$s\n\t\tBejelentkezési név:\t\t%2$s\n\t\tJelszó:\t\t%3$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy adjon hozzá profilfényképet, adjon hozzá néhány\n\t\tprofil „kulcsszót” (nagyon hasznos új ismerősök kereséséhez),\n\t\tvalamint talán azt, hogy mely országban él, ha nem szeretne annál\n\t\tpontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1$s/settings/removeme\n\n\t\tKöszönjük, és üdvözöljük a(z) %4$s oldalon." -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Regisztrációs részletek ehhez: %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3874,12 +3874,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja adminisztrátori jóváhagyásra vár.\n\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%4$s\n\t\t\tJelszó:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Regisztráció itt: %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3888,7 +3888,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja létrejött.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3917,12 +3917,12 @@ msgid "" "\t\t\tIf you ever want to delete your account, you can do so at %3$s/settings/removeme\n" "\n" "\t\t\tThank you and welcome to %2$s." -msgstr "" +msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%1$s\n\t\t\tJelszó:\t\t%5$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy adjon hozzá profilfényképet, adjon hozzá néhány\n\t\t\tprofil „kulcsszót” (nagyon hasznos új ismerősök kereséséhez),\n\t\t\tvalamint talán azt, hogy mely országban él, ha nem szeretne annál\n\t\t\tpontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3$s/settings/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a(z) %2$s oldalon." -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" -msgstr "" +msgstr "A meghatalmazásokkal rendelkező felhasználót nem lehet eltávolítani, először távolítsa el a meghatalmazott felhasználókat" #: src/Module/Admin/Addons/Details.php:65 msgid "Addon not found." @@ -3944,14 +3944,14 @@ msgid "Disable" msgstr "Letiltás" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Engedélyezés" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3991,12 +3991,12 @@ msgid "Addon %s failed to install." msgstr "A(z) „%s” bővítmény telepítése sikertelen." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Beállítások mentése" @@ -4191,8 +4191,8 @@ msgid "Enable Debugging" msgstr "Hibakeresés engedélyezése" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "Csak olvasható, mert egy környezeti változó állítja be" @@ -4353,269 +4353,269 @@ msgstr "Létrehozva" msgid "Priority" msgstr "Prioritás" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "A(z) %s nem érvényes bemenet a legnagyobb képmérethez" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Nincs különleges téma a mobil eszközökhöz" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s – (kísérleti)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Nincs közösségi oldal" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "Nincs közösségi oldal a látogatóknak" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Nyilvános beküldések ezen oldal felhasználóitól" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Nyilvános beküldések a föderált hálózatból" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Többfelhasználós példány" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Lezárva" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Jóváhagyást igényel" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Nyitott" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Ne ellenőrizze" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "a stabil verzió ellenőrzése" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "a fejlesztői verzió ellenőrzése" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "nincs" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Helyi partnerek" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Interaktorok" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Oldal" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Általános információk" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Felhasználók újra közzé tétele a könyvtárba" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Regisztráció" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Fájlfeltöltés" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Irányelvek" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Speciális" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Automatikusan felfedezett partnerkönyvtár" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Teljesítmény" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Feldolgozó" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Üzenettovábbítás" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Használja a „console relay” parancsot a parancssorban a továbbítók hozzáadásához vagy eltávolításához." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "A rendszer jelenleg nincs feliratkozva semmilyen továbbítóra sem." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "A rendszer jelenleg a következő továbbítókra van feliratkozva:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "Csomópont áthelyezése" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "A csomópont áthelyezése lehetővé teszi a csomópont DNS-tartományának megváltoztatását, valamint az összes meglévő felhasználó és bejegyzés megtartását. Ez a folyamat eltart egy ideig, és csak az áthelyezés konzolparanccsal indítható el az alábbi módon:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica könyvtár)# bin/console relocate https://uj-tartomany.hu" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Oldal neve" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Küldő e-mail-címe" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "Az az e-mail-cím, amelyet a kiszolgáló használhat az értesítési e-mailek kiküldéséhez." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "A rendszer szereplőjének neve" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "A belső rendszerfiók neve, amely az ActivityPub kérések végrehajtásához lesz használva. Ennek egy nem használt felhasználónévnek kell lennie. Ha be van állítva, akkor ez nem változtatható meg újra." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Reklámcsík vagy logó" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "E-mail reklámcsík vagy logó" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Böngészőikon" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Hivatkozás egy ikonra, amely a böngészőknél lesz használva." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Érintő ikon" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Hivatkozás egy ikonra, amely táblagépeknél és mobiltelefonoknál lesz használva." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "További információk" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Nyilvános kiszolgálóknál: itt adhat meg további információkat, amelyek a %s/servers oldalon lesznek felsorolva." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Rendszer nyelve" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Rendszer témája" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Alapértelmezett rendszertéma – a felhasználói profilok felülbírálhatják – alapértelmezett témabeállítások megváltoztatása." -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Mobilrendszer témája" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Téma a mobil eszközökhöz." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "SSL kényszerítése" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Az összes nem SSL kérés SSL-re kényszerítése – Figyelem: néhány rendszeren végtelen hurkokat eredményezhet." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Súgó bejegyzés megjelenítése a navigációs menüből" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Megjeleníti a súgóoldalak menübejegyzését a navigációs menüből. Ez mindig elérhető a „/help” közvetlen meghívásával." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Egyfelhasználós példány" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Legnagyobb képméret" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4623,35 +4623,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlátozás. A kívánt érték mögé k, m vagy g értékeket is írhat a KiB, MiB, GiB értékhez, ebben a sorrendben.\n\t\t\t\t\t\t\t\t\t\t\t\t\tA PHP.ini fájlban lévő upload_max_filesize értékét be kell állítani legalább a kívánt korlátra.\n\t\t\t\t\t\t\t\t\t\t\t\t\tJelenleg az upload_max_filesize %s (%s bájt) értékre van állítva." -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Legnagyobb képhossz" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "JPEG-képek minősége" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "A feltöltött JPEG-képek ezzel a minőségbeállítással lesznek elmentve [0-100]. Alapértelmezetten 100, ami teljes minőséget jelent." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Regisztrációs irányelv" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "Legtöbb felhasználó" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4659,157 +4659,167 @@ msgid "" "not when the policy is set to approval." msgstr "Ha meg van adva, akkor a regisztrációs házirend automatikusan lezárja a regisztrációt a megadott számú felhasználó elérésekor, és újra megnyitja a regisztrációt, ha a felhasználók száma a határérték alá csökken. Ez csak akkor működik, ha a házirend nyitottra vagy zártra van beállítva, de nem működik, ha a házirend jóváhagyásra van beállítva." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Legtöbb napi regisztráció" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Ha a regisztrációk megengedettek fent, akkor ez állítja be a naponta elfogadandó új felhasználói regisztrációk legnagyobb számát. Ha a regisztráció lezártra van állítva, akkor ennek a beállításnak nincs hatása." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Regisztrációs szöveg" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Szembetűnően lesz megjelenítve a regisztrációs oldalon. BBCode formázást is használhat itt." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Tiltott becenevek" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "A becenevek vesszővel elválasztott listája, amelyek tiltottak a regisztrációnál. Az előbeállítás az RFC 2142 szerinti szerepnevek listája." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Fiókok elhagyottak X nap után" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nem fogja pazarolni a rendszer erőforrásait a külső oldalak lekérdezésével az elhagyott fiókoknál. Adjon meg 0 értéket, hogy ne legyen időkorlát." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Engedélyezett ismerőstartományok" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Azon tartományok vesszővel elválasztott listája, amelyeknek engedélyezett ismeretséget létesíteni ezzel az oldallal. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Engedélyezett e-mail-tartományok" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Azon tartományok vesszővel elválasztott listája, amelyek engedélyezettek az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "Nem engedélyezett e-mail-tartományok" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "Azon tartományok vesszővel elválasztott listája, amelyek visszautasítottak az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak." + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Nincs OEmbed gazdag tartalom" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Megbízható harmadik fél tartományok" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Tartományok vesszővel elválasztott listája, amelyekről engedélyezett a tartalom bejegyzésekben való beágyazása, mint például az OEmbed használatával. A felsorolt tartományok összes altartománya is engedélyezve van." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Nyilvános tiltása" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Jelölje be az ezen az oldalon lévő összes, egyébként nyilvános személyes oldal nyilvános hozzáférésének tiltásához, hacsak jelenleg nincs bejelentkezve." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Közzététel kényszerítése" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Jelölje be, hogy ezen az oldalon az összes profil kényszerítetten fel legyen sorolva az oldal könyvtárában." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Ennek engedélyezése megsértheti az adatvédelmi rendeleteket, mint például a GDPR-t." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "Globális könyvtár URL" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "Az URL a globális könyvtárhoz. Ha ez nincs beállítva, akkor a globális könyvtár teljesen elérhetetlen lesz az alkalmazásoknak." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Alapértelmezetten személyes bejegyzések az új felhasználóknál" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi körre a nyilvános helyett." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Ne ágyazza be a bejegyzés tartalmát az e-mailes értesítésekbe" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Adatvédelmi intézkedésként ne ágyazza be egy bejegyzés, hozzászólás, személyes üzenet stb. tartalmát azokba az e-mailes értesítésekbe, amelyek erről az oldalról kerülnek kiküldésre." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Nyilvános hozzáférés letiltása az alkalmazások menüben felsorolt bővítményekhez" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "A jelölőnégyzet bejelölésével csak a tagok számára fogja korlátozni az alkalmazások menüben felsorolt bővítményeket." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4817,11 +4827,11 @@ msgid "" "while." msgstr "Ne cserélje ki a bejegyzésekben lévő helyileg kiszolgált személyes fényképeket a kép beágyazott másolatával. Ez azt jelenti, hogy a személyes fényképeket tartalmazó bejegyzéseket fogadó partnereknek hitelesíteniük kell magukat és be kell tölteniük minden egyes képet, ami eltarthat egy ideig." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Felnőtteknek szánt tartalom" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4830,339 +4840,339 @@ msgid "" "will be shown at the user registration page." msgstr "Állítsa be ezt annak közléséhez, hogy a csomópontját főként felnőtteknek szóló tartalomhoz használják, ami lehet, hogy nem alkalmas kiskorúak számára. Ez az információ közzé lesz téve a csomópont információiban, és használhatja például a globális könyvtár is, hogy kiszűrje a csomópontját a csatlakozáshoz felajánlott csomópontok listájából. Ezenkívül egy megjegyzés is meg lesz jelenítve ezzel kapcsolatban a felhasználó regisztrációs oldalán." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "Külső tartalom proxyzása" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Külső tartalom átirányítása a proxy funkción keresztül. Ezt például néhány OEmbed-hozzáférésnél és egyéb ritka esetekben használják." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" -msgstr "" +msgstr "Csak helyi keresés" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." -msgstr "" +msgstr "Letiltja a keresést a nem bejelentkezett felhasználók számára, így megakadályozza a keresőmotoroknak, hogy letiltsák a rendszerét." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" -msgstr "" +msgstr "Letiltott címkék a népszerű címkéknél" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." -msgstr "" +msgstr "Kettős keresztes címkék vesszővel elválasztott listája, amelyeket nem szabad megjeleníteni a népszerű címkékben." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "Partnerprofilképek gyorsítótárazása" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "A partnerek profilképeinek helyi tárolása. Ez nagyon sok tárhelyet használ, de növeli a teljesítményt." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Távoli önmaguk beállításának engedélyezése a felhasználóknak" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Ennek bejelölésével minden egyes felhasználó számára engedélyezett, hogy az egyes partnereket távoli önmagukként jelöljék meg a partner javítása párbeszédablakban. Ezen jelző beállítása egy partnernél a tartalom minden egyes beküldésének tükrözését okozza a felhasználók adatfolyamában." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" -msgstr "" +msgstr "Továbbító csatornák beállításának engedélyezése a felhasználóknak" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." -msgstr "" +msgstr "Ha engedélyezve van, akkor lehetőség van olyan továbbító felhasználók létrehozására, akik a felhasználó által meghatározott csatornákon alapuló tartalmak újbóli megosztására használhatók." -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" -msgstr "" +msgstr "A hírforrás lekérdezési gyakoriságának beállítása" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." -msgstr "" +msgstr "A legjobb hírforrás-lekérdezési gyakoriság automatikus felismerése és beállítása." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" -msgstr "" +msgstr "Legkisebb lekérdezési időköz" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." -msgstr "" +msgstr "Két lekérdezés közötti legkisebb időbeli távolság percben a levél- és hírforráspartnereknél. Az észszerű értékek 1 és 59 között vannak." -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "Többszörös regisztrációk engedélyezése" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "Lehetővé teszi a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "OpenID engedélyezése" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" -msgstr "" +msgstr "Teljes név ellenőrzésének engedélyezése" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." -msgstr "" +msgstr "Megakadályozza a felhasználókat abban, hogy olyan megjelenített névvel regisztráljanak, amelyben kevesebb mint két, szóközzel elválasztott rész van." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "E-mail küldése az adminisztrátoroknak új regisztrációkor" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "Ha engedélyezve van, és a rendszer nyitott regisztrációhoz van beállítva, akkor minden új regisztrációról e-mail lesz küldve az adminisztrátoroknak." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Közösségi oldalak a látogatók számára" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Mely közösségi oldalaknak kell elérhetőnek lenniük a látogatók számára. A helyi felhasználók mindig mindkét oldalt látják." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Felhasználónkénti bejegyzések a közösségi oldalon" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." -msgstr "" +msgstr "A felhasználónkénti bejegyzések legnagyobb száma a helyi közösségi oldalon. Ez akkor hasznos, ha egy bizonyos felhasználó elárasztja a helyi közösségi oldalt." -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" -msgstr "" +msgstr "Kiszolgálónkénti bejegyzések a közösségi oldalon" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." -msgstr "" +msgstr "A kiszolgálónkénti bejegyzések legnagyobb száma a globális közösségi oldalon. Ez akkor hasznos, ha egy bizonyos kiszolgálótól származó bejegyzések elárasztják a globális közösségi oldalt." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "Levelezési támogatás engedélyezése" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "OStatus támogatás engedélyezése" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás engedélyezése. Az OStatus hálózaton lévő összes kommunikáció nyilvános." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Diaspora támogatás engedélyezése" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "SSL ellenőrzése" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Ha szeretné, bekapcsolhatja a szigorú tanúsítvány-ellenőrzést. Ezt azt jelenti, hogy nem tud kapcsolódni (egyáltalán) az önaláírt SSL-t használó oldalakhoz." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy felhasználó" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "Felhasználónév a proxy-kiszolgálóhoz." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Ha olyan proxy-kiszolgálót szeretne használni, amelyet a Friendicának a hálózathoz való kapcsolódáshoz használnia kell, akkor itt adja meg a proxy URL-jét." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Hálózati időkorlát" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Az érték másodpercben van. Állítsa 0-ra a korlátlan időhöz (nem ajánlott)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Legnagyobb terhelésátlag" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "A legnagyobb rendszerterhelés, mielőtt a kézbesítési és lekérdezési folyamatok elhalasztásra kerülnek. Alapértelmezetten %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Legkevesebb memória" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "A legkevesebb szabad memória MB-ban a feldolgozónál. Hozzáférést igényel a /proc/meminfo fájlhoz. Alapértelmezetten 0 (kikapcsolva)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Táblák időszakos optimalizálása" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "A táblák időszakos optimalizálása, mint például a gyorsítótár és a feldolgozó várakozási sorának táblái." -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Követők vagy követések felfedezése a partnerekből" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Ha engedélyezve van, akkor a partnerek ellenőrizve lesznek a követő és követett partnereik számára." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Nincs: ki van kapcsolva." -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interaktorok: a helyi partnereink partnerei és a helyileg látható beküldésekkel kapcsolatba került partnerek lesznek felfedezve a követőik vagy követésiek számára." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" -msgstr "" +msgstr "Csak helyi adatokkal rendelkező partnerek vagy kiszolgálók frissítése" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." -msgstr "" +msgstr "Ha engedélyezve van, akkor a rendszer csak olyan partnerek és kiszolgálók változásait keresi, amelyek részt vesznek ezen a rendszeren, azáltal hogy vagy egy felhasználó partnerlistáján szerepelnek, vagy ha a partnertől származó bejegyzések vagy hozzászólások léteznek ezen a rendszeren." -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "A partnerek szinkronizálása a könyvtárkiszolgálóval" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Partnerek felfedezése más kiszolgálókról" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." -msgstr "" +msgstr "Más kiszolgálók időszakos lekérdezése olyan partnerek és kiszolgálók után, amelyekről tudnak. A rendszer Friendica, Mastodon és Hubzilla kiszolgálókat kérdez le. Kisebb gépeken tartsa kikapcsolva az adatbázis méretének és terhelésének csökkentése érdekében." -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Ismételt lekérdezések közti napok" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." -msgstr "" +msgstr "A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül az általa tudott partnereiért és kiszolgálóiért. Ez csak akkor van használatban, ha a felfedezés be van kapcsolva." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "A helyi könyvtár keresése" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "A helyi könyvtár keresése a globális könyvtár helyett. Helyi kereséskor minden egyes keresés a globális könyvtárban lesz végrehajtva a háttérben. Ez javítja a keresési eredményeket, ha a keresést megismétlik." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Kiszolgálóinformációk közzététele" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5170,50 +5180,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Ha engedélyezve van, akkor az általános kiszolgáló és használati adatok közzé lesznek téve. Az adatok tartalmazzák a kiszolgáló nevét és verzióját, a nyilvános profillal rendelkező felhasználók számát, a bejegyzések számát, valamint a engedélyezett protokollokat és összekötőket. A részletekért nézze meg a the-federation.info weboldalt." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Távoli verzió ellenőrzése" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Engedélyezi az új Friendica verziójának keresését a GitHubon. Ha új verzió érhető el, akkor tájékoztatva lesz az adminisztrátori panel áttekintőjében." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Címkék letiltása" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "A kettős keresztes címkék listája megjelenítésének letiltása a beküldések végénél." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Adatbázis tisztítása" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Régi távoli elemek, árva adatbázisrekordok és néhány egyéb segédtáblából származó régi tartalom eltávolítása." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Távoli elemek élettartama" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a távoli elemek törölve lesznek. A saját elemek, valamint a megjelölt és iktatott elemek mindig meg lesznek tartva. A 0 érték letiltja ezt a viselkedést." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Nem igényelt elemek élettartama" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5221,329 +5231,329 @@ msgid "" "items if set to 0." msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a nem igényelt távoli elemek (főleg a továbbításból származó tartalmak) törölve lesznek. Az alapértelmezett érték 90 nap. A távoli elemek általános élettartamértékének alapértelmezettje lesz, ha 0 értékre van állítva." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Nyers beszélgetési adatok élettartama" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "A beszélgetési adatok az ActivityPub és az OStatus hálózatoknál, valamint hibakeresési célokhoz vannak használva. Biztonságosan el lehet távolítani azokat 14 nap után. Alapértelmezetten 90 nap." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" -msgstr "" +msgstr "Oldalankénti elemek" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." -msgstr "" +msgstr "Oldalankénti elemek száma a folyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés)." -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" -msgstr "" +msgstr "Oldalankénti elemek száma mobil eszközöknél" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." -msgstr "" +msgstr "Oldalankénti elemek száma a folyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés) mobil eszközöknél." -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Ideiglenes mappa útvonala" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Ha korlátozott rendszere van, ahol a webkiszolgáló nem tudja elérni a rendszer ideiglenes mappájának útvonalát, akkor adjon meg egy másik útvonalat itt." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Keresés csak címkékben" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" -msgstr "" +msgstr "A keresési táblában lévő elemek legnagyobb életkora" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." -msgstr "" +msgstr "A keresési táblában lévő elemek legnagyobb életkora napokban. Az alacsonyabb értékek növelik a teljesítményt és csökkentik a lemezhasználatot. A 0 azt jelenti, hogy nincs életkori korlátozás." -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "Partnerkörönkénti számlálások előállítása a hálózatszám kiszámításakor" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnerköröket, a lekérdezés nagyon költséges lehet." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" -msgstr "" +msgstr "„Megtekintés” tevékenységek feldolgozása" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." -msgstr "" +msgstr "A „megtekintés” tevékenységeket többnyire a Peertube rendszerek hozzák létre. Alapértelmezetten nem kerülnek feldolgozásra teljesítménybeli okokból. Csak teljesítőképes rendszerben kapcsolja be ezt a beállítást." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" -msgstr "" +msgstr "Napok, amely után a partner archiválásra kerül" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." -msgstr "" +msgstr "Azon napok száma, amikor megpróbálunk tartalmat szállítani vagy a partner adatait frissíteni, mielőtt archiváljuk a partnert." -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Párhuzamos feldolgozók legnagyobb száma" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Osztott tárhelyszolgáltatóknál állítsa ezt %d értékre. Nagyobb rendszereknél érdemes a számot %d értékre állítani. Az alapértelmezett érték %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" -msgstr "" +msgstr "Feldolgozók legnagyobb terhelése" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." -msgstr "" +msgstr "A legnagyobb terhelés, amely minden egyes feldolgozófüggvény-hívás előtt várakozást okoz." -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Prioritásos sor engedélyezése" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Ha engedélyezve van, akkor a prioritásos sor mechanizmus további feldolgozót indít, ha a magasabb prioritással rendelkező folyamatokat blokkolják az alacsonyabb prioritású folyamatok." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" -msgstr "" +msgstr "Szétválasztott fogadó" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." -msgstr "" +msgstr "A bejövő ActivityPub-bejegyzések szétválasztása egy feldolgozófolyamaton keresztüli, háttérben történő feldolgozással. Ezt csak gyors rendszereken engedélyezze." -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" -msgstr "" +msgstr "Cron időköz" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." -msgstr "" +msgstr "Legkisebb időtartam percben a „Cron” feldolgozófeladat két hívása között." -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" -msgstr "" +msgstr "Feldolgozó halasztási korlátja" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." -msgstr "" +msgstr "Alapértelmezetten a rendszerek tizenötször próbálkoznak a kézbesítéssel, mielőtt eldobnák azt." -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" -msgstr "" +msgstr "Feldolgozó lekérési korlátja" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" " it. Only change it, when you know how to measure the performance of your " "system." -msgstr "" +msgstr "Az egyetlen lekérdezésben lekért feldolgozófeladatok száma. A magasabb értékeknek növelniük kellene a teljesítményt, a túl magas értékek viszont valószínűleg csökkentik azt. Csak akkor változtassa meg, ha tudja, hogy hogyan mérje a rendszere teljesítményét." -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Közvetlen továbbító-átvitel" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Engedélyezi a más kiszolgálókra való közvetlen átvitelt a továbbító kiszolgálók használata nélkül." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Továbbítás hatóköre" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Lehet „összes” vagy „címkék”. Az „összes” azt jelenti, hogy minden nyilvános bejegyzést meg kell kapni. A „címkék” jelentése, hogy csak a kijelölt címkékkel rendelkező bejegyzéseket kell megkapni." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Letiltva" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "összes" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "címkék" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Kiszolgálócímkék" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Kiszolgálócímkék megtagadása" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" -msgstr "" +msgstr "Címkék legnagyobb száma" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." -msgstr "" +msgstr "Egy bejegyzésben lévő címkék legnagyobb száma, mielőtt az kéretlen üzenetként visszautasításra kerülne. A bejegyzésnek legalább egy hivatkozást kell tartalmaznia. A feliratkozott fiókokból származó bejegyzések nem kerülnek visszautasításra." -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Felhasználói címkék engedélyezése" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Ha engedélyezve van, akkor a mentett keresésekből származó címkék lesznek használva a „címkék” feliratkozásnál a „relay_server_tags” címkéken kívül." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" -msgstr "" +msgstr "Fel nem ismert nyelvek megtagadása" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." -msgstr "" +msgstr "Ha engedélyezve van, akkor a fel nem ismert nyelveket tartalmazó bejegyzések visszautasításra kerülnek." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" -msgstr "" +msgstr "Nyelvi minőség" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." -msgstr "" +msgstr "A bejegyzés elfogadásához szükséges legkisebb nyelvi minőség." -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" -msgstr "" +msgstr "Nyelvek száma a nyelvfelismeréshez" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." -msgstr "" +msgstr "A rendszer felismeri a bejegyzésenkénti nyelvek listáját. Csak akkor kerül elfogadásra az üzenet, ha a kívánt nyelvek szerepelnek a listán. Minél magasabb a szám, annál több bejegyzést lesz tévesen felismerve." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" -msgstr "" +msgstr "Csatorna legnagyobb életkora" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." -msgstr "" +msgstr "Ez határozza meg azon elemek legnagyobb életkorát órákban kifejezve, amelyeket meg kell jeleníteni a csatornákon. Ez hatással van a csatorna teljesítményére." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" -msgstr "" +msgstr "Csatornabejegyzések legnagyobb száma" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." -msgstr "" +msgstr "Teljesítményi okokból a csatornák külön táblát használnak a tartalom tárolására. Minél magasabb az érték, annál lassabbak a csatornák." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" -msgstr "" +msgstr "Interakció-pontszám napjai" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." -msgstr "" +msgstr "Az interakció-pontszám kiszámításához használt napok száma." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" -msgstr "" +msgstr "Szerzőnkénti bejegyzések legnagyobb száma" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." -msgstr "" +msgstr "Az oldalankénti bejegyzések szerző szerinti legnagyobb száma, ha a partner gyakorisága „Csak néhány bejegyzés megjelenítése” értékre van állítva. Ha több bejegyzés van, akkor a legtöbb interakcióval rendelkező bejegyzés kerül megjelenítésre." -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" -msgstr "" +msgstr "Megosztó interakciós napjai" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." -msgstr "" +msgstr "Az utolsó interakció azon napjainak száma, amelyek annak meghatározására szolgálnak, hogy mely megosztók legyenek használva a „megosztók megosztói” csatornához." -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Áthelyezés indítása" @@ -6131,11 +6141,11 @@ msgstr "Az eseményazonosító hiányzik." msgid "Failed to remove event" msgstr "Nem sikerült eltávolítani az eseményt" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Az esemény címe és a kezdési idő kötelező." @@ -6227,7 +6237,7 @@ msgstr "Nézet" msgid "Create New Event" msgstr "Új esemény létrehozása" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "lista" @@ -6875,7 +6885,7 @@ msgid "Actions" msgstr "Műveletek" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Állapot" @@ -7047,33 +7057,33 @@ msgstr "A közösségi beállítás nem érhető el." msgid "Not available." msgstr "Nem érhető el." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "Nincs ilyen kör" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "Kör: %s" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." -msgstr "" +msgstr "Hiba %d (%s) az idővonal lekérése során." -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "A hálózati hírforrás nem érhető el." -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Saját partnerek" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Tartalmazás" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Elrejtés" @@ -7105,7 +7115,7 @@ msgid "Result Item" msgstr "Eredményelem" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7116,179 +7126,179 @@ msgstr[1] "Hibák" msgid "Source activity" msgstr "Forrástevékenység" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Forrás bevitele" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hexa)" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Elem törzse" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Elem címkéi" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Forrás bevitele (Diaspora formátum)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Forrás bevitele (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Nyers HTML bevitel" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "HTML bevitel" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "HTML megtisztítva (nyers)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "HTML megtisztítva (hexa)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "HTML megtisztítva" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (tömör)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Dekódolt bejegyzés" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "A bejegyzéstömb az entitások kiterjesztése előtt" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Bejegyzés átalakítva" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "Átalakított törzs" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "A Twitter bővítmény hiányzik az „addon/” mappából." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Babel diagnosztika" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Forrásszöveg" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)" @@ -7797,7 +7807,7 @@ msgstr "Fájlok" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Feltöltés" @@ -7818,14 +7828,14 @@ msgstr "A fájl meghaladja a beállított %s méretkorlátot" msgid "File upload failed." msgstr "A fájl feltöltése sikertelen." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Nem lehet feldolgozni a képet." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "A kép feltöltése sikertelen." @@ -8535,7 +8545,7 @@ msgstr "A jelentett partner URL-je." #: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 msgid "Channel Relay" -msgstr "" +msgstr "Csatornatovábbítás" #: src/Module/Moderation/Summary.php:77 msgid "Registered users" @@ -8858,7 +8868,7 @@ msgstr "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegy msgid "Unsupported or missing response type" msgstr "Nem támogatott vagy hiányzó választípus" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Befejezetlen kérésadat" @@ -8869,11 +8879,11 @@ msgid "" "close this window: %s" msgstr "Másolja be a következő hitelesítési kódot az alkalmazásába, és zárja be ezt az ablakot: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "Érvénytelen adatok vagy ismeretlen ügyfél" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Nem támogatott vagy hiányzó felhatalmazástípus" @@ -8998,21 +9008,21 @@ msgstr "Közönség: %s
" msgid "Attributed To: %s
" msgstr "Neki tulajdonítható: %s
" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "A fénykép nem érhető el." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "A(z) %s azonosítóval rendelkező fénykép nem érhető el." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "Érvénytelen külső erőforrás a(z) %s URL-lel." -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." @@ -9064,27 +9074,27 @@ msgstr "Nincsenek partnerek." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "%s idővonala" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "%s bejegyzései" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "%s hozzászólásai" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "A kép meghaladja a beállított %s méretkorlátot" @@ -9103,11 +9113,11 @@ msgid "" "administrator" msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "A képfájl üres." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Album megtekintése" @@ -9283,7 +9293,7 @@ msgstr "A meghívási kódja: " #: src/Module/Register.php:158 msgid "Your Display Name (as you would like it to be displayed on this system" -msgstr "" +msgstr "A megjelenített neve (ahogyan szeretné, hogy megjelenjen ezen a rendszeren)" #: src/Module/Register.php:159 msgid "" @@ -9359,11 +9369,11 @@ msgstr "Adja meg a megegyező e-mail-címet a második mezőben." #: src/Module/Register.php:291 msgid "Nickname cannot start with a digit." -msgstr "" +msgstr "A becenév nem kezdődhet számmal." #: src/Module/Register.php:293 msgid "Nickname can only contain US-ASCII characters." -msgstr "" +msgstr "A becenév csak US-ASCII karaktereket tartalmazhat." #: src/Module/Register.php:322 msgid "The additional account was created." @@ -9698,7 +9708,7 @@ msgstr "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával. msgid "" "Account for a service that automatically shares content based on user " "defined channels." -msgstr "" +msgstr "Fiók egy olyan szolgáltatáshoz, amely automatikusan megosztja a tartalmat a felhasználó által meghatározott csatornák alapján." #: src/Module/Settings/Account.php:443 msgid "Personal Page Subtypes" @@ -9859,7 +9869,7 @@ msgstr "Legtöbb ismerőskérés naponta:" #: src/Module/Settings/Account.php:575 msgid "(to prevent spam abuse)" -msgstr "(a levélszeméttel való visszaélés elkerüléséhez)" +msgstr "(a kéretlen üzenettel való visszaélés elkerüléséhez)" #: src/Module/Settings/Account.php:577 msgid "Allow your profile to be searchable globally?" @@ -10153,114 +10163,114 @@ msgstr "Nincsenek bővítménybeállítások meghatározva" msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." -msgstr "" +msgstr "Ez az oldal használható azon csatornák meghatározásához, amelyeket a fiókja automatikusan meg fog osztani." #: src/Module/Settings/Channels.php:147 msgid "This page can be used to define your own channels." -msgstr "" +msgstr "Ez az oldal használható a saját csatornák meghatározásához." #: src/Module/Settings/Channels.php:176 msgid "Publish" -msgstr "" +msgstr "Közzététel" #: src/Module/Settings/Channels.php:176 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." -msgstr "" +msgstr "Ha ki van választva, akkor a csatorna eredményei újra megosztásra kerülnek. Ez csak a nyilvános idővonalról vagy a felhasználó által meghatározott körökből származó nyilvános ActivityPub-bejegyzéseknél működik." #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" -msgstr "" +msgstr "Címke" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Leírás" #: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Access Key" -msgstr "" +msgstr "Hívóbetű" #: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Circle/Channel" -msgstr "" +msgstr "Kör vagy csatorna" #: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Include Tags" -msgstr "" +msgstr "Címkék felvétele" #: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 msgid "Exclude Tags" -msgstr "" +msgstr "Címkék kizárása" #: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 msgid "Minimum Size" -msgstr "" +msgstr "Legkisebb méret" #: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 msgid "Maximum Size" -msgstr "" +msgstr "Legnagyobb méret" #: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 msgid "Full Text Search" -msgstr "" +msgstr "Teljes szöveges keresés" #: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 msgid "Select all languages that you want to see in this channel." -msgstr "" +msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne ezen a csatornán." #: src/Module/Settings/Channels.php:198 msgid "Delete channel" -msgstr "" +msgstr "Csatorna törlése" #: src/Module/Settings/Channels.php:198 msgid "Check to delete this entry from the channel list" -msgstr "" +msgstr "Jelölje be a bejegyzés csatornalistából való törléséhez" #: src/Module/Settings/Channels.php:205 msgid "Short name for the channel. It is displayed on the channels widget." -msgstr "" +msgstr "A csatorna rövid neve. Ez a csatornák felületi elemen jelenik meg." #: src/Module/Settings/Channels.php:206 msgid "This should describe the content of the channel in a few word." -msgstr "" +msgstr "Ennek néhány szóban le kell írnia a csatorna tartalmát." #: src/Module/Settings/Channels.php:207 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." -msgstr "" +msgstr "Ha hívóbetűn keresztül szeretne hozzáférni ehhez a csatornához, akkor itt határozhatja meg azt. Figyeljen arra, hogy ne használjon már használatban lévőt." #: src/Module/Settings/Channels.php:208 msgid "Select a circle or channel, that your channel should be based on." -msgstr "" +msgstr "Válasszon egy kört vagy csatornát, amelyen a csatornájának alapulnia kell." #: src/Module/Settings/Channels.php:209 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." -msgstr "" +msgstr "Címkék vesszővel elválasztott listája. Egy bejegyzés akkor lesz használva, ha a felsorolt címkék bármelyikét tartalmazza." #: src/Module/Settings/Channels.php:210 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." -msgstr "" +msgstr "Címkék vesszővel elválasztott listája. Ha egy bejegyzés ezen címkék bármelyikét tartalmazza, akkor nem lesz része ennek a csatornának." #: src/Module/Settings/Channels.php:211 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." -msgstr "" +msgstr "Legkisebb bejegyzésméret. Hagyja üresen, ha nincs legkisebb méret. A méret hivatkozások, csatolt bejegyzések, említések vagy kettős keresztes címkék nélkül kerül kiszámításra." #: src/Module/Settings/Channels.php:212 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." -msgstr "" +msgstr "Legnagyobb bejegyzésméret. Hagyja üresen, ha nincs legnagyobb méret. A méret hivatkozások, csatolt bejegyzések, említések vagy kettős keresztes címkék nélkül kerül kiszámításra." #: src/Module/Settings/Channels.php:213 #, php-format @@ -10268,23 +10278,23 @@ msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " "MariaDB. See the help for a complete list of operators and additional " "keywords: %s" -msgstr "" +msgstr "A törzs keresési kifejezései. Támogatja a MariaDB „logikai módú” operátorait. Nézze meg a súgóban az operátorok és a további kulcsszavak teljes listáját: %s" #: src/Module/Settings/Channels.php:214 msgid "Check to display images in the channel." -msgstr "" +msgstr "Jelölje be a csatornában lévő képek megjelenítéséhez." #: src/Module/Settings/Channels.php:215 msgid "Check to display videos in the channel." -msgstr "" +msgstr "Jelölje be a csatornában lévő videók megjelenítéséhez." #: src/Module/Settings/Channels.php:216 msgid "Check to display audio in the channel." -msgstr "" +msgstr "Jelölje be a csatornában lévő hangok megjelenítéséhez." #: src/Module/Settings/Channels.php:221 msgid "Add new entry to the channel list" -msgstr "" +msgstr "Új bejegyzés hozzáadása a csatornalistához" #: src/Module/Settings/Channels.php:222 msgid "Add" @@ -10292,15 +10302,15 @@ msgstr "Hozzáadás" #: src/Module/Settings/Channels.php:224 msgid "Current Entries in the channel list" -msgstr "" +msgstr "Jelenlegi bejegyzések a csatornalistában" #: src/Module/Settings/Channels.php:227 msgid "Delete entry from the channel list" -msgstr "" +msgstr "Bejegyzés törlése a csatornalistáról" #: src/Module/Settings/Channels.php:228 msgid "Delete entry from the channel list?" -msgstr "" +msgstr "Törli a bejegyzést a csatornalistáról?" #: src/Module/Settings/Connectors.php:120 msgid "Failed to connect with email account using the settings provided." @@ -10573,181 +10583,189 @@ msgstr "Lehetséges meghatalmazottak" msgid "No entries." msgstr "Nincsenek bejegyzések." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "A választott téma nem érhető el." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (nem támogatott)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "Nincs előnézet" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "Nincs kép" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "Kis kép" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "Nagy kép" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Megjelenítési beállítások" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Általános témabeállítások" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Egyéni témabeállítások" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Tartalombeállítások" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Témabeállítások" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "Idővonalak" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Megjelenítés témája:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Mobil téma:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Oldalanként megjelenítendő elemek száma:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Legfeljebb 100 elem" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Oldalanként megjelenítendő elemek száma, ha mobil eszközről nézik:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Böngésző frissítése N másodpercenként" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Legalább 10 másodperc. A -1 beírása letiltja." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "Hangulatjelek megjelenítése" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Ha engedélyezve van, akkor a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Végtelen görgetés" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Új elemek automatikus lekérése az oldal végének elérésekor." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "Intelligens szálkezelés engedélyezése" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "A nem odatartozó szálbehúzások automatikus elnyomásának engedélyezése." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "A nem tetszik funkció megjelenítése" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "A nem tetszik gomb és a nem tetszik reakciók megjelenítése a bejegyzéseknél és a hozzászólásoknál." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Az újramegosztó megjelenítése" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "Érzékeny tartalom megjelenítése" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "Ha engedélyezve van, akkor az „érzékenyként” megjelölt bejegyzésekben lévő képek nem lesznek elhomályosítva." + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Maradjon helyi" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" -msgstr "" +msgstr "A bejegyzéstörlés jelölőnégyzet megjelenítése" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." -msgstr "" +msgstr "Jelölőnégyzet megjelenítése a bejegyzés törléséhez a hálózat oldalán." -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" -msgstr "" +msgstr "Az eseménylista megjelenítése" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." -msgstr "" +msgstr "A születésnapi emlékeztető és az eseménylista megjelenítése a hálózat oldalán." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "Hivatkozás-előnézeti mód" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "A hivatkozás előnézetének megjelenése, amely minden egyes hivatkozással rendelkező bejegyzéshez hozzá van adva." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" -msgstr "" +msgstr "Könyvjelző" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." -msgstr "" +msgstr "Azon idővonalak engedélyezése, amelyeket a csatornák felületi elemben szeretne látni. Azon idővonalak könyvjelzőzése, amelyeket a felső menüben szeretne látni." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "Csatorna nyelvei:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne a csatornáiban." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "A hét kezdete:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "Alapértelmezett naptárnézet:" @@ -10912,7 +10930,7 @@ msgstr "(Profilok kereséséhez lesz használva, sosem látható másoknak)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "A kép méretének csökkentése [%s] sikertelen." @@ -10952,31 +10970,31 @@ msgstr "Kép használata, ahogy van" msgid "Missing uploaded image." msgstr "Hiányzó feltöltött kép." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Profilfénykép beállításai" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Jelenlegi profilfénykép" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Fénykép feltöltése:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "vagy" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "ezen lépés kihagyása" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "fénykép kiválasztása a fényképalbumából" @@ -10984,11 +11002,11 @@ msgstr "fénykép kiválasztása a fényképalbumából" msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." -msgstr "" +msgstr "Ellenőrzési hiba történt. Győződjön meg arról, hogy az eltávolítani kívánt fiókkal van-e bejelentkezve, és próbálja meg újra." #: src/Module/Settings/RemoveMe.php:76 msgid "If this error persists, please contact your administrator." -msgstr "" +msgstr "Ha ez a hiba továbbra is fennáll, akkor vegye fel a kapcsolatot az adminisztrátorral." #: src/Module/Settings/RemoveMe.php:90 #: src/Navigation/Notifications/Repository/Notify.php:471 @@ -11013,7 +11031,7 @@ msgstr "A felhasználó-azonosító %d" #: src/Module/Settings/RemoveMe.php:105 msgid "Your account has been successfully removed. Bye bye!" -msgstr "" +msgstr "A fiókja sikeresen el lett távolítva. Viszlát!" #: src/Module/Settings/RemoveMe.php:130 msgid "Remove My Account" @@ -12141,7 +12159,7 @@ msgid "" "Display Name:\t%s\n" "Site Location:\t%s\n" "Login Name:\t%s (%s)" -msgstr "" +msgstr "Megjelenített név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)" #: src/Navigation/Notifications/Repository/Notify.php:485 #, php-format @@ -12327,7 +12345,7 @@ msgstr "Idézett megosztás" #: src/Object/Post.php:429 msgid "Quote Share" -msgstr "Idéző megosztás" +msgstr "Idézett megosztás" #: src/Object/Post.php:432 msgid "Reshare this" @@ -12368,16 +12386,16 @@ msgstr "Megosztás külső szolgáltatásokon keresztül" #: src/Object/Post.php:520 msgid "Unknown parent" -msgstr "" +msgstr "Ismeretlen szülő" #: src/Object/Post.php:524 #, php-format msgid "in reply to %s" -msgstr "" +msgstr "válasz a következőre: %s" #: src/Object/Post.php:526 msgid "Parent is probably private or not federated." -msgstr "" +msgstr "A szülő valószínűleg személyes vagy nem föderált." #: src/Object/Post.php:550 msgid "to" @@ -12452,7 +12470,7 @@ msgstr "Megtekintette: %s" #: src/Object/Post.php:701 #, php-format msgid "Read by: %s" -msgstr "" +msgstr "Olvasta: %s" #: src/Object/Post.php:706 #, php-format @@ -12482,7 +12500,7 @@ msgstr "Nem vett részt: %s" #: src/Object/Post.php:731 #, php-format msgid "Commented by: %s" -msgstr "" +msgstr "Hozzászólt: %s" #: src/Object/Post.php:736 #, php-format @@ -12492,11 +12510,11 @@ msgstr "Reagált ezzel: %s: %s" #: src/Object/Post.php:759 #, php-format msgid "Quote shared by: %s" -msgstr "" +msgstr "Idézetten osztott meg: %s" #: src/Protocol/ActivityPub/Receiver.php:568 msgid "Chat" -msgstr "" +msgstr "Csevegés" #: src/Protocol/Delivery.php:547 msgid "(no subject)" @@ -12676,124 +12694,100 @@ msgstr "slackr" msgid "Variations" msgstr "Variációk" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Világos (hangsúlyos)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Sötét (hangsúlyos)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Fekete (hangsúlyos)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Jegyzet" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Ellenőrizze a kép jogosultságait, hogy minden felhasználó képes-e megtekinteni a képet." -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Egyéni" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Örökölt" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Hangsúlyos" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Színséma kiválasztása" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Sémahangsúly kiválasztása" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Kék" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Piros" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Lila" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Zöld" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Rózsaszín" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Sémakarakterlánc másolása vagy beillesztése" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Lemásolhatja ezt a karakterláncot, hogy megossza a témáját másokkal. Ide beillesztve alkalmazza a sémakarakterláncot" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Navigációs sáv háttérszíne" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Navigációs sáv ikonszíne " -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Hivatkozás színe" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Háttérszín beállítása" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Tartalom hátterének átlátszatlansága" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "A háttérkép beállítása" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Háttérkép stílusa" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "Mindig az írás oldal megnyitása" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Az új bejegyzés gomb mindig az írás oldalt nyitja meg a modális űrlap helyett. Ha ez le van tiltva, akkor az írás oldal a hivatkozásra való középső kattintással vagy a modális űrlapról érhető el." -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Bejelentkezési oldal háttérképe" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Bejelentkezési oldal háttérszíne" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Hagyja üresen a háttérképet és színt a téma alapértelmezettjéhez" @@ -12833,19 +12827,35 @@ msgstr "Mozaik" msgid "Repeat image to fill the screen." msgstr "Kép ismétlése a képernyő kitöltéséhez." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Kihagyás a fő tartalomhoz" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Vissza a tetejére" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Egyéni" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Vendég" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Látogató" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 24df56d936..daa4a143bd 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -270,6 +270,7 @@ $a->strings['Password changed.'] = 'A jelszó megváltoztatva.'; $a->strings['Enter user name: '] = 'Felhasználónév megadása: '; $a->strings['Enter user email address: '] = 'Felhasználó e-mail-címének megadása: '; $a->strings['Enter a language (optional): '] = 'Nyelv megadása (elhagyható): '; +$a->strings['Enter URL of an image to use as avatar (optional): '] = 'Adja meg a profilképként használandó kép URL-jét (elhagyható): '; $a->strings['User is not pending.'] = 'A felhasználó nincs függőben.'; $a->strings['User has already been marked for deletion.'] = 'A felhasználó már meg lett jelölve törlésre.'; $a->strings['Type "yes" to delete %s'] = 'Írja be a „yes” szót %s törléséhez'; @@ -419,12 +420,16 @@ $a->strings['%s from %s'] = '%s tőle: %s'; $a->strings['View in context'] = 'Megtekintés környezetben'; $a->strings['For you'] = 'Önnek'; $a->strings['Posts from contacts you interact with and who interact with you'] = 'Azoktól a partnerektől származó bejegyzések, akikkel kapcsolatba kerül és akik kapcsolatba kerülnek Önnel'; +$a->strings['Discover'] = 'Felfedezés'; +$a->strings['Posts from accounts that you don\'t follow, but that you might like.'] = 'Az olyan fiókokból származó bejegyzések, amelyeket nem követ, de kedvelheti azokat.'; $a->strings['What\'s Hot'] = 'Mi a menő'; $a->strings['Posts with a lot of interactions'] = 'Sok interakcióval rendelkező bejegyzések'; $a->strings['Posts in %s'] = 'Bejegyzések ebben: %s'; $a->strings['Posts from your followers that you don\'t follow'] = 'Az olyan követőitől származó bejegyzések, akiket nem követ'; $a->strings['Sharers of sharers'] = 'Megosztók megosztói'; $a->strings['Posts from accounts that are followed by accounts that you follow'] = 'Az Ön által követett fiókok által követett fiókokból származó bejegyzések'; +$a->strings['Quiet sharers'] = 'Csendes megosztók'; +$a->strings['Posts from accounts that you follow but who don\'t post very often'] = 'Az olyan fiókokból származó bejegyzések, amelyeket követ, de nem hoznak létre bejegyzést túl gyakran'; $a->strings['Images'] = 'Képek'; $a->strings['Posts with images'] = 'Képekkel rendelkező bejegyzések'; $a->strings['Audio'] = 'Hang'; @@ -557,8 +562,6 @@ $a->strings['Moderation'] = 'Moderálás'; $a->strings['Content and user moderation'] = 'Tartalom- és felhasználómoderálás'; $a->strings['Navigation'] = 'Navigáció'; $a->strings['Site map'] = 'Oldaltérkép'; -$a->strings['Embedding disabled'] = 'A beágyazás letiltva'; -$a->strings['Embedded content'] = 'Beágyazott tartalom'; $a->strings['first'] = 'első'; $a->strings['prev'] = 'előző'; $a->strings['next'] = 'következő'; @@ -611,6 +614,7 @@ $a->strings['On this date'] = 'Ezen a napon'; $a->strings['Persons'] = 'Személyek'; $a->strings['Organisations'] = 'Szervezetek'; $a->strings['News'] = 'Hírek'; +$a->strings['Relays'] = 'Továbbítók'; $a->strings['Account Types'] = 'Fióktípusok'; $a->strings['All'] = 'Összes'; $a->strings['Channels'] = 'Csatornák'; @@ -673,6 +677,8 @@ $a->strings['Apache mod_rewrite module'] = 'Apache mod_rewrite modul'; $a->strings['Error: PDO or MySQLi PHP module required but not installed.'] = 'Hiba: a PDO vagy a MySQLi PHP-modul szükséges, de nincs telepítve.'; $a->strings['Error: The MySQL driver for PDO is not installed.'] = 'Hiba: a PDO-hoz szükséges MySQL illesztőprogram nincs telepítve.'; $a->strings['PDO or MySQLi PHP module'] = 'PDO vagy MySQLi PHP-modul'; +$a->strings['Error: The IntlChar module is not installed.'] = 'Hiba: az IntlChar modul nincs telepítve.'; +$a->strings['IntlChar PHP module'] = 'IntlChar PHP-modul'; $a->strings['Error, XML PHP module required but not installed.'] = 'Hiba: az XML PHP-modul szükséges, de nincs telepítve.'; $a->strings['XML PHP module'] = 'XML PHP-modul'; $a->strings['libCurl PHP module'] = 'libCurl PHP-modul'; @@ -716,9 +722,10 @@ $a->strings['No TLS detected'] = 'Nincs TLS felismerve'; $a->strings['TLS detected'] = 'TLS felismerve'; $a->strings['ImageMagick PHP extension is not installed'] = 'Az ImageMagick PHP-kiterjesztés nincs telepítve'; $a->strings['ImageMagick PHP extension is installed'] = 'Az ImageMagick PHP-kiterjesztés telepítve van'; -$a->strings['ImageMagick supports GIF'] = 'Az ImageMagick támogatja a GIF-et'; $a->strings['Database already in use.'] = 'Az adatbázis már használatban van.'; $a->strings['Could not connect to database.'] = 'Nem sikerült kapcsolódni az adatbázishoz.'; +$a->strings['Undetermined'] = 'Nem meghatározott'; +$a->strings['%s (%s)'] = '%s (%s)'; $a->strings['Monday'] = 'Hétfő'; $a->strings['Tuesday'] = 'Kedd'; $a->strings['Wednesday'] = 'Szerda'; @@ -824,6 +831,7 @@ $a->strings['Blocked domain'] = 'Tiltott tartomány'; $a->strings['Connect URL missing.'] = 'A kapcsolódási URL hiányzik.'; $a->strings['The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page.'] = 'A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon.'; $a->strings['Expected network %s does not match actual network %s'] = 'A várt %s hálózat nem egyezik a tényleges %s hálózattal'; +$a->strings['This seems to be a relay account. They can\'t be followed by users.'] = 'Úgy tűnik, hogy ez egy továbbító fiók. Ezeket nem követhetik a felhasználók.'; $a->strings['The profile address specified does not provide adequate information.'] = 'A megadott profilcím nem biztosít elegendő információt.'; $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve.'; $a->strings['An author or name was not found.'] = 'Egy szerző vagy név nem található.'; @@ -856,6 +864,8 @@ $a->strings['Show map'] = 'Térkép megjelenítése'; $a->strings['Hide map'] = 'Térkép elrejtése'; $a->strings['%s\'s birthday'] = '%s születésnapja'; $a->strings['Happy Birthday %s'] = 'Boldog születésnapot, %s'; +$a->strings['%s (%s - %s): %s'] = '%s (%s – %s): %s'; +$a->strings['%s (%s): %s'] = '%s (%s): %s'; $a->strings['Detected languages in this post:\n%s'] = 'A bejegyzésben felismert nyelvek:\n%s'; $a->strings['activity'] = 'tevékenység'; $a->strings['comment'] = 'hozzászólás'; @@ -962,6 +972,61 @@ $a->strings[' the administrator of %2$s has set up an account for you.'] = ' Kedves %1$s! A(z) %2$s adminisztrátora beállított egy fiókot Önnek.'; +$a->strings[' + The login details are as follows: + + Site Location: %1$s + Login Name: %2$s + Password: %3$s + + You may change your password from your account "Settings" page after logging + in. + + Please take a few moments to review the other account settings on that page. + + You may also wish to add some basic information to your default profile + (on the "Profiles" page) so that other people can easily find you. + + We recommend adding a profile photo, adding some profile "keywords" + (very useful in making new friends) - and perhaps what country you live in; + if you do not wish to be more specific than that. + + We fully respect your right to privacy, and none of these items are necessary. + If you are new and do not know anybody here, they may help + you to make some new and interesting friends. + + If you ever want to delete your account, you can do so at %1$s/settings/removeme + + Thank you and welcome to %4$s.'] = ' + A bejelentkezés részletei a következők: + + Oldal címe: %1$s + Bejelentkezési név: %2$s + Jelszó: %3$s + + A jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután + bejelentkezett. + + Szánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon. + + Érdemes lehet néhány alapvető információt is hozzáadnia az + alapértelmezett profiljához (a „Profilok” oldalon), azért hogy más + emberek egyszerűen megtalálják Önt. + + Azt ajánljuk, hogy adjon hozzá profilfényképet, adjon hozzá néhány + profil „kulcsszót” (nagyon hasznos új ismerősök kereséséhez), + valamint talán azt, hogy mely országban él, ha nem szeretne annál + pontosabbat megadni. + + Teljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos + jogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit + sem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes + ismerőst találni. + + Ha bármikor törölni szeretné a fiókját, akkor megteheti azt a + következő címen: %1$s/settings/removeme + + Köszönjük, és üdvözöljük a(z) %4$s oldalon.'; $a->strings['Registration details for %s'] = 'Regisztrációs részletek ehhez: %s'; $a->strings[' Dear %1$s, @@ -990,6 +1055,62 @@ $a->strings[' Kedves %1$s! Köszönjük, hogy regisztrált itt: %2$s. A fiókja létrejött. '; +$a->strings[' + The login details are as follows: + + Site Location: %3$s + Login Name: %1$s + Password: %5$s + + You may change your password from your account "Settings" page after logging + in. + + Please take a few moments to review the other account settings on that page. + + You may also wish to add some basic information to your default profile + (on the "Profiles" page) so that other people can easily find you. + + We recommend adding a profile photo, adding some profile "keywords" (very useful + in making new friends) - and perhaps what country you live in; if you do not wish + to be more specific than that. + + We fully respect your right to privacy, and none of these items are necessary. + If you are new and do not know anybody here, they may help + you to make some new and interesting friends. + + If you ever want to delete your account, you can do so at %3$s/settings/removeme + + Thank you and welcome to %2$s.'] = ' + A bejelentkezés részletei a következők: + + Oldal címe: %3$s + Bejelentkezési név: %1$s + Jelszó: %5$s + + A jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután + bejelentkezett. + + Szánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon. + + Érdemes lehet néhány alapvető információt is hozzáadnia az + alapértelmezett profiljához (a „Profilok” oldalon), azért hogy más + emberek egyszerűen megtalálják Önt. + + Azt ajánljuk, hogy adjon hozzá profilfényképet, adjon hozzá néhány + profil „kulcsszót” (nagyon hasznos új ismerősök kereséséhez), + valamint talán azt, hogy mely országban él, ha nem szeretne annál + pontosabbat megadni. + + Teljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos + jogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit + sem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes + ismerőst találni. + + Ha bármikor törölni szeretné a fiókját, akkor megteheti azt a + következő címen: %3$s/settings/removeme + + Köszönjük, és üdvözöljük a(z) %2$s oldalon.'; +$a->strings['User with delegates can\'t be removed, please remove delegate users first'] = 'A meghatalmazásokkal rendelkező felhasználót nem lehet eltávolítani, először távolítsa el a meghatalmazott felhasználókat'; $a->strings['Addon not found.'] = 'A bővítmény nem található.'; $a->strings['Addon %s disabled.'] = 'A(z) „%s” bővítmény letiltva.'; $a->strings['Addon %s enabled.'] = 'A(z) „%s” bővítmény engedélyezve.'; @@ -1181,6 +1302,8 @@ $a->strings['Allowed friend domains'] = 'Engedélyezett ismerőstartományok'; $a->strings['Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains'] = 'Azon tartományok vesszővel elválasztott listája, amelyeknek engedélyezett ismeretséget létesíteni ezzel az oldallal. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett.'; $a->strings['Allowed email domains'] = 'Engedélyezett e-mail-tartományok'; $a->strings['Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains'] = 'Azon tartományok vesszővel elválasztott listája, amelyek engedélyezettek az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett.'; +$a->strings['Disallowed email domains'] = 'Nem engedélyezett e-mail-tartományok'; +$a->strings['Comma separated list of domains which are rejected as email addresses for registrations to this site. Wildcards are accepted.'] = 'Azon tartományok vesszővel elválasztott listája, amelyek visszautasítottak az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak.'; $a->strings['No OEmbed rich content'] = 'Nincs OEmbed gazdag tartalom'; $a->strings['Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.'] = 'Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról.'; $a->strings['Trusted third-party domains'] = 'Megbízható harmadik fél tartományok'; @@ -1204,19 +1327,34 @@ $a->strings['Explicit Content'] = 'Felnőtteknek szánt tartalom'; $a->strings['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.'] = 'Állítsa be ezt annak közléséhez, hogy a csomópontját főként felnőtteknek szóló tartalomhoz használják, ami lehet, hogy nem alkalmas kiskorúak számára. Ez az információ közzé lesz téve a csomópont információiban, és használhatja például a globális könyvtár is, hogy kiszűrje a csomópontját a csatlakozáshoz felajánlott csomópontok listájából. Ezenkívül egy megjegyzés is meg lesz jelenítve ezzel kapcsolatban a felhasználó regisztrációs oldalán.'; $a->strings['Proxify external content'] = 'Külső tartalom proxyzása'; $a->strings['Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.'] = 'Külső tartalom átirányítása a proxy funkción keresztül. Ezt például néhány OEmbed-hozzáférésnél és egyéb ritka esetekben használják.'; +$a->strings['Only local search'] = 'Csak helyi keresés'; +$a->strings['Blocks search for users who are not logged in to prevent crawlers from blocking your system.'] = 'Letiltja a keresést a nem bejelentkezett felhasználók számára, így megakadályozza a keresőmotoroknak, hogy letiltsák a rendszerét.'; +$a->strings['Blocked tags for trending tags'] = 'Letiltott címkék a népszerű címkéknél'; +$a->strings['Comma separated list of hashtags that shouldn\'t be displayed in the trending tags.'] = 'Kettős keresztes címkék vesszővel elválasztott listája, amelyeket nem szabad megjeleníteni a népszerű címkékben.'; $a->strings['Cache contact avatars'] = 'Partnerprofilképek gyorsítótárazása'; $a->strings['Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.'] = 'A partnerek profilképeinek helyi tárolása. Ez nagyon sok tárhelyet használ, de növeli a teljesítményt.'; $a->strings['Allow Users to set remote_self'] = 'Távoli önmaguk beállításának engedélyezése a felhasználóknak'; $a->strings['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.'] = 'Ennek bejelölésével minden egyes felhasználó számára engedélyezett, hogy az egyes partnereket távoli önmagukként jelöljék meg a partner javítása párbeszédablakban. Ezen jelző beállítása egy partnernél a tartalom minden egyes beküldésének tükrözését okozza a felhasználók adatfolyamában.'; +$a->strings['Allow Users to set up relay channels'] = 'Továbbító csatornák beállításának engedélyezése a felhasználóknak'; +$a->strings['If enabled, it is possible to create relay users that are used to reshare content based on user defined channels.'] = 'Ha engedélyezve van, akkor lehetőség van olyan továbbító felhasználók létrehozására, akik a felhasználó által meghatározott csatornákon alapuló tartalmak újbóli megosztására használhatók.'; +$a->strings['Adjust the feed poll frequency'] = 'A hírforrás lekérdezési gyakoriságának beállítása'; +$a->strings['Automatically detect and set the best feed poll frequency.'] = 'A legjobb hírforrás-lekérdezési gyakoriság automatikus felismerése és beállítása.'; +$a->strings['Minimum poll interval'] = 'Legkisebb lekérdezési időköz'; +$a->strings['Minimal distance in minutes between two polls for mail and feed contacts. Reasonable values are between 1 and 59.'] = 'Két lekérdezés közötti legkisebb időbeli távolság percben a levél- és hírforráspartnereknél. Az észszerű értékek 1 és 59 között vannak.'; $a->strings['Enable multiple registrations'] = 'Többszörös regisztrációk engedélyezése'; $a->strings['Enable users to register additional accounts for use as pages.'] = 'Lehetővé teszi a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz.'; $a->strings['Enable OpenID'] = 'OpenID engedélyezése'; $a->strings['Enable OpenID support for registration and logins.'] = 'Az OpenID támogatás engedélyezése a regisztrációnál és a bejelentkezéseknél.'; +$a->strings['Enable full name check'] = 'Teljes név ellenőrzésének engedélyezése'; +$a->strings['Prevents users from registering with a display name with fewer than two parts separated by spaces.'] = 'Megakadályozza a felhasználókat abban, hogy olyan megjelenített névvel regisztráljanak, amelyben kevesebb mint két, szóközzel elválasztott rész van.'; $a->strings['Email administrators on new registration'] = 'E-mail küldése az adminisztrátoroknak új regisztrációkor'; $a->strings['If enabled and the system is set to an open registration, an email for each new registration is sent to the administrators.'] = 'Ha engedélyezve van, és a rendszer nyitott regisztrációhoz van beállítva, akkor minden új regisztrációról e-mail lesz küldve az adminisztrátoroknak.'; $a->strings['Community pages for visitors'] = 'Közösségi oldalak a látogatók számára'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Mely közösségi oldalaknak kell elérhetőnek lenniük a látogatók számára. A helyi felhasználók mindig mindkét oldalt látják.'; $a->strings['Posts per user on community page'] = 'Felhasználónkénti bejegyzések a közösségi oldalon'; +$a->strings['The maximum number of posts per user on the local community page. This is useful, when a single user floods the local community page.'] = 'A felhasználónkénti bejegyzések legnagyobb száma a helyi közösségi oldalon. Ez akkor hasznos, ha egy bizonyos felhasználó elárasztja a helyi közösségi oldalt.'; +$a->strings['Posts per server on community page'] = 'Kiszolgálónkénti bejegyzések a közösségi oldalon'; +$a->strings['The maximum number of posts per server on the global community page. This is useful, when posts from a single server flood the global community page.'] = 'A kiszolgálónkénti bejegyzések legnagyobb száma a globális közösségi oldalon. Ez akkor hasznos, ha egy bizonyos kiszolgálótól származó bejegyzések elárasztják a globális közösségi oldalt.'; $a->strings['Enable Mail support'] = 'Levelezési támogatás engedélyezése'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'A beépített levelezési támogatás engedélyezése az IMAP-mappák lekérdezéséhez és az e-mailben történő válaszhoz.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'A levelezési támogatást nem lehet engedélyezni, mert a PHP IMAP-modulja nincs telepítve.'; @@ -1244,10 +1382,14 @@ $a->strings['If enabled, contacts are checked for their followers and following $a->strings['None - deactivated'] = 'Nincs: ki van kapcsolva.'; $a->strings['Local contacts - contacts of our local contacts are discovered for their followers/followings.'] = 'Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára.'; $a->strings['Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.'] = 'Interaktorok: a helyi partnereink partnerei és a helyileg látható beküldésekkel kapcsolatba került partnerek lesznek felfedezve a követőik vagy követésiek számára.'; +$a->strings['Only update contacts/servers with local data'] = 'Csak helyi adatokkal rendelkező partnerek vagy kiszolgálók frissítése'; +$a->strings['If enabled, the system will only look for changes in contacts and servers that engaged on this system by either being in a contact list of a user or when posts or comments exists from the contact on this system.'] = 'Ha engedélyezve van, akkor a rendszer csak olyan partnerek és kiszolgálók változásait keresi, amelyek részt vesznek ezen a rendszeren, azáltal hogy vagy egy felhasználó partnerlistáján szerepelnek, vagy ha a partnertől származó bejegyzések vagy hozzászólások léteznek ezen a rendszeren.'; $a->strings['Synchronize the contacts with the directory server'] = 'A partnerek szinkronizálása a könyvtárkiszolgálóval'; $a->strings['if enabled, the system will check periodically for new contacts on the defined directory server.'] = 'Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón.'; $a->strings['Discover contacts from other servers'] = 'Partnerek felfedezése más kiszolgálókról'; +$a->strings['Periodically query other servers for contacts and servers that they know of. The system queries Friendica, Mastodon and Hubzilla servers. Keep it deactivated on small machines to decrease the database size and load.'] = 'Más kiszolgálók időszakos lekérdezése olyan partnerek és kiszolgálók után, amelyekről tudnak. A rendszer Friendica, Mastodon és Hubzilla kiszolgálókat kérdez le. Kisebb gépeken tartsa kikapcsolva az adatbázis méretének és terhelésének csökkentése érdekében.'; $a->strings['Days between requery'] = 'Ismételt lekérdezések közti napok'; +$a->strings['Number of days after which a server is requeried for their contacts and servers it knows of. This is only used when the discovery is activated.'] = 'A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül az általa tudott partnereiért és kiszolgálóiért. Ez csak akkor van használatban, ha a felfedezés be van kapcsolva.'; $a->strings['Search the local directory'] = 'A helyi könyvtár keresése'; $a->strings['Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated.'] = 'A helyi könyvtár keresése a globális könyvtár helyett. Helyi kereséskor minden egyes keresés a globális könyvtárban lesz végrehajtva a háttérben. Ez javítja a keresési eredményeket, ha a keresést megismétlik.'; $a->strings['Publish server information'] = 'Kiszolgálóinformációk közzététele'; @@ -1268,16 +1410,36 @@ $a->strings['Maximum numbers of comments per post'] = 'Bejegyzésenkénti hozzá $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon'; $a->strings['How many comments should be shown on the single view for each post? Default value is 1000.'] = 'Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000.'; +$a->strings['Items per page'] = 'Oldalankénti elemek'; +$a->strings['Number of items per page in stream pages (network, community, profile/contact statuses, search).'] = 'Oldalankénti elemek száma a folyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés).'; +$a->strings['Items per page for mobile devices'] = 'Oldalankénti elemek száma mobil eszközöknél'; +$a->strings['Number of items per page in stream pages (network, community, profile/contact statuses, search) for mobile devices.'] = 'Oldalankénti elemek száma a folyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés) mobil eszközöknél.'; $a->strings['Temp path'] = 'Ideiglenes mappa útvonala'; $a->strings['If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.'] = 'Ha korlátozott rendszere van, ahol a webkiszolgáló nem tudja elérni a rendszer ideiglenes mappájának útvonalát, akkor adjon meg egy másik útvonalat itt.'; $a->strings['Only search in tags'] = 'Keresés csak címkékben'; $a->strings['On large systems the text search can slow down the system extremely.'] = 'Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert.'; +$a->strings['Maximum age of items in the search table'] = 'A keresési táblában lévő elemek legnagyobb életkora'; +$a->strings['Maximum age of items in the search table in days. Lower values will increase the performance and reduce disk usage. 0 means no age restriction.'] = 'A keresési táblában lévő elemek legnagyobb életkora napokban. Az alacsonyabb értékek növelik a teljesítményt és csökkentik a lemezhasználatot. A 0 azt jelenti, hogy nincs életkori korlátozás.'; $a->strings['Generate counts per contact circle when calculating network count'] = 'Partnerkörönkénti számlálások előállítása a hálózatszám kiszámításakor'; $a->strings['On systems with users that heavily use contact circles the query can be very expensive.'] = 'Olyan rendszereken, ahol a felhasználók nagymértékben használják a partnerköröket, a lekérdezés nagyon költséges lehet.'; +$a->strings['Process "view" activities'] = '„Megtekintés” tevékenységek feldolgozása'; +$a->strings['"view" activities are mostly geberated by Peertube systems. Per default they are not processed for performance reasons. Only activate this option on performant system.'] = 'A „megtekintés” tevékenységeket többnyire a Peertube rendszerek hozzák létre. Alapértelmezetten nem kerülnek feldolgozásra teljesítménybeli okokból. Csak teljesítőképes rendszerben kapcsolja be ezt a beállítást.'; +$a->strings['Days, after which a contact is archived'] = 'Napok, amely után a partner archiválásra kerül'; +$a->strings['Number of days that we try to deliver content or to update the contact data before we archive a contact.'] = 'Azon napok száma, amikor megpróbálunk tartalmat szállítani vagy a partner adatait frissíteni, mielőtt archiváljuk a partnert.'; $a->strings['Maximum number of parallel workers'] = 'Párhuzamos feldolgozók legnagyobb száma'; $a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = 'Osztott tárhelyszolgáltatóknál állítsa ezt %d értékre. Nagyobb rendszereknél érdemes a számot %d értékre állítani. Az alapértelmezett érték %d.'; +$a->strings['Maximum load for workers'] = 'Feldolgozók legnagyobb terhelése'; +$a->strings['Maximum load that causes a cooldown before each worker function call.'] = 'A legnagyobb terhelés, amely minden egyes feldolgozófüggvény-hívás előtt várakozást okoz.'; $a->strings['Enable fastlane'] = 'Prioritásos sor engedélyezése'; $a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = 'Ha engedélyezve van, akkor a prioritásos sor mechanizmus további feldolgozót indít, ha a magasabb prioritással rendelkező folyamatokat blokkolják az alacsonyabb prioritású folyamatok.'; +$a->strings['Decoupled receiver'] = 'Szétválasztott fogadó'; +$a->strings['Decouple incoming ActivityPub posts by processing them in the background via a worker process. Only enable this on fast systems.'] = 'A bejövő ActivityPub-bejegyzések szétválasztása egy feldolgozófolyamaton keresztüli, háttérben történő feldolgozással. Ezt csak gyors rendszereken engedélyezze.'; +$a->strings['Cron interval'] = 'Cron időköz'; +$a->strings['Minimal period in minutes between two calls of the "Cron" worker job.'] = 'Legkisebb időtartam percben a „Cron” feldolgozófeladat két hívása között.'; +$a->strings['Worker defer limit'] = 'Feldolgozó halasztási korlátja'; +$a->strings['Per default the systems tries delivering for 15 times before dropping it.'] = 'Alapértelmezetten a rendszerek tizenötször próbálkoznak a kézbesítéssel, mielőtt eldobnák azt.'; +$a->strings['Worker fetch limit'] = 'Feldolgozó lekérési korlátja'; +$a->strings['Number of worker tasks that are fetched in a single query. Higher values should increase the performance, too high values will mostly likely decrease it. Only change it, when you know how to measure the performance of your system.'] = 'Az egyetlen lekérdezésben lekért feldolgozófeladatok száma. A magasabb értékeknek növelniük kellene a teljesítményt, a túl magas értékek viszont valószínűleg csökkentik azt. Csak akkor változtassa meg, ha tudja, hogy hogyan mérje a rendszere teljesítményét.'; $a->strings['Direct relay transfer'] = 'Közvetlen továbbító-átvitel'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Engedélyezi a más kiszolgálókra való közvetlen átvitelt a továbbító kiszolgálók használata nélkül.'; $a->strings['Relay scope'] = 'Továbbítás hatóköre'; @@ -1289,8 +1451,26 @@ $a->strings['Server tags'] = 'Kiszolgálócímkék'; $a->strings['Comma separated list of tags for the "tags" subscription.'] = 'Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz.'; $a->strings['Deny Server tags'] = 'Kiszolgálócímkék megtagadása'; $a->strings['Comma separated list of tags that are rejected.'] = 'Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva.'; +$a->strings['Maximum amount of tags'] = 'Címkék legnagyobb száma'; +$a->strings['Maximum amount of tags in a post before it is rejected as spam. The post has to contain at least one link. Posts from subscribed accounts will not be rejected.'] = 'Egy bejegyzésben lévő címkék legnagyobb száma, mielőtt az kéretlen üzenetként visszautasításra kerülne. A bejegyzésnek legalább egy hivatkozást kell tartalmaznia. A feliratkozott fiókokból származó bejegyzések nem kerülnek visszautasításra.'; $a->strings['Allow user tags'] = 'Felhasználói címkék engedélyezése'; $a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ha engedélyezve van, akkor a mentett keresésekből származó címkék lesznek használva a „címkék” feliratkozásnál a „relay_server_tags” címkéken kívül.'; +$a->strings['Deny undetected languages'] = 'Fel nem ismert nyelvek megtagadása'; +$a->strings['If enabled, posts with undetected languages will be rejected.'] = 'Ha engedélyezve van, akkor a fel nem ismert nyelveket tartalmazó bejegyzések visszautasításra kerülnek.'; +$a->strings['Language Quality'] = 'Nyelvi minőség'; +$a->strings['The minimum language quality that is required to accept the post.'] = 'A bejegyzés elfogadásához szükséges legkisebb nyelvi minőség.'; +$a->strings['Number of languages for the language detection'] = 'Nyelvek száma a nyelvfelismeréshez'; +$a->strings['The system detects a list of languages per post. Only if the desired languages are in the list, the message will be accepted. The higher the number, the more posts will be falsely detected.'] = 'A rendszer felismeri a bejegyzésenkénti nyelvek listáját. Csak akkor kerül elfogadásra az üzenet, ha a kívánt nyelvek szerepelnek a listán. Minél magasabb a szám, annál több bejegyzést lesz tévesen felismerve.'; +$a->strings['Maximum age of channel'] = 'Csatorna legnagyobb életkora'; +$a->strings['This defines the maximum age in hours of items that should be displayed in channels. This affects the channel performance.'] = 'Ez határozza meg azon elemek legnagyobb életkorát órákban kifejezve, amelyeket meg kell jeleníteni a csatornákon. Ez hatással van a csatorna teljesítményére.'; +$a->strings['Maximum number of channel posts'] = 'Csatornabejegyzések legnagyobb száma'; +$a->strings['For performance reasons, the channels use a dedicated table to store content. The higher the value the slower the channels.'] = 'Teljesítményi okokból a csatornák külön táblát használnak a tartalom tárolására. Minél magasabb az érték, annál lassabbak a csatornák.'; +$a->strings['Interaction score days'] = 'Interakció-pontszám napjai'; +$a->strings['Number of days that are used to calculate the interaction score.'] = 'Az interakció-pontszám kiszámításához használt napok száma.'; +$a->strings['Maximum number of posts per author'] = 'Szerzőnkénti bejegyzések legnagyobb száma'; +$a->strings['Maximum number of posts per page by author if the contact frequency is set to "Display only few posts". If there are more posts, then the post with the most interactions will be displayed.'] = 'Az oldalankénti bejegyzések szerző szerinti legnagyobb száma, ha a partner gyakorisága „Csak néhány bejegyzés megjelenítése” értékre van állítva. Ha több bejegyzés van, akkor a legtöbb interakcióval rendelkező bejegyzés kerül megjelenítésre.'; +$a->strings['Sharer interaction days'] = 'Megosztó interakciós napjai'; +$a->strings['Number of days of the last interaction that are used to define which sharers are used for the "sharers of sharers" channel.'] = 'Az utolsó interakció azon napjainak száma, amelyek annak meghatározására szolgálnak, hogy mely megosztók legyenek használva a „megosztók megosztói” csatornához.'; $a->strings['Start Relocation'] = 'Áthelyezés indítása'; $a->strings['Storage backend, %s is invalid.'] = 'Tároló háttérprogram, a(z) %s érvénytelen.'; $a->strings['Storage backend %s error: %s'] = 'Tároló háttérprogram (%s) hiba: %s'; @@ -1639,6 +1819,7 @@ $a->strings['Community option not available.'] = 'A közösségi beállítás ne $a->strings['Not available.'] = 'Nem érhető el.'; $a->strings['No such circle'] = 'Nincs ilyen kör'; $a->strings['Circle: %s'] = 'Kör: %s'; +$a->strings['Error %d (%s) while fetching the timeline.'] = 'Hiba %d (%s) az idővonal lekérése során.'; $a->strings['Network feed not available.'] = 'A hálózati hírforrás nem érhető el.'; $a->strings['Own Contacts'] = 'Saját partnerek'; $a->strings['Include'] = 'Tartalmazás'; @@ -1992,6 +2173,7 @@ $a->strings['%s total report'] = [ 1 => '%s jelentés összesen', ]; $a->strings['URL of the reported contact.'] = 'A jelentett partner URL-je.'; +$a->strings['Channel Relay'] = 'Csatornatovábbítás'; $a->strings['Registered users'] = 'Regisztrált felhasználók'; $a->strings['Pending registrations'] = 'Függőben lévő regisztrációk'; $a->strings['%s user blocked'] = [ @@ -2164,6 +2346,7 @@ $a->strings['Note for the admin'] = 'Jegyzet az adminisztrátornak'; $a->strings['Leave a message for the admin, why you want to join this node'] = 'Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni'; $a->strings['Membership on this site is by invitation only.'] = 'Ezen az oldalon a tagság csak meghívás alapján van.'; $a->strings['Your invitation code: '] = 'A meghívási kódja: '; +$a->strings['Your Display Name (as you would like it to be displayed on this system'] = 'A megjelenített neve (ahogyan szeretné, hogy megjelenjen ezen a rendszeren)'; $a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):'; $a->strings['Please repeat your e-mail address:'] = 'Ismételje meg az e-mail-címét:'; $a->strings['New Password:'] = 'Új jelszó:'; @@ -2180,6 +2363,8 @@ $a->strings['Password doesn\'t match.'] = 'A jelszó nem egyezik.'; $a->strings['Please enter your password.'] = 'Adja meg a jelszavát.'; $a->strings['You have entered too much information.'] = 'Túl sok információt adott meg.'; $a->strings['Please enter the identical mail address in the second field.'] = 'Adja meg a megegyező e-mail-címet a második mezőben.'; +$a->strings['Nickname cannot start with a digit.'] = 'A becenév nem kezdődhet számmal.'; +$a->strings['Nickname can only contain US-ASCII characters.'] = 'A becenév csak US-ASCII karaktereket tartalmazhat.'; $a->strings['The additional account was created.'] = 'A további fiók létre lett hozva.'; $a->strings['Registration successful. Please check your email for further instructions.'] = 'A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért.'; $a->strings['Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login.'] = 'Nem sikerült elküldeni az e-mail üzenetet. Itt vannak a fiók részletei:
Bejelentkezés: %s
Jelszó: %s

A jelszavát bejelentkezés után változtathatja meg.'; @@ -2251,6 +2436,7 @@ $a->strings['Contact CSV file upload error'] = 'Partner CSV-fájl feltöltési h $a->strings['Importing Contacts done'] = 'A partnerek importálása kész'; $a->strings['Relocate message has been send to your contacts'] = 'Az áthelyezési üzenet el lett küldve a partnereknek'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával.'; +$a->strings['Account for a service that automatically shares content based on user defined channels.'] = 'Fiók egy olyan szolgáltatáshoz, amely automatikusan megosztja a tartalmat a felhasználó által meghatározott csatornák alapján.'; $a->strings['Personal Page Subtypes'] = 'Személyes oldal altípusai'; $a->strings['Community Group Subtypes'] = 'Közösségi csoport altípusai'; $a->strings['Account for a personal profile.'] = 'Egy személyes profil fiókja.'; @@ -2285,7 +2471,7 @@ $a->strings['Default Post Location:'] = 'Alapértelmezett bejegyzésküldési he $a->strings['Use Browser Location:'] = 'Böngésző helyének használata:'; $a->strings['Security and Privacy Settings'] = 'Biztonsági és adatvédelmi beállítások'; $a->strings['Maximum Friend Requests/Day:'] = 'Legtöbb ismerőskérés naponta:'; -$a->strings['(to prevent spam abuse)'] = '(a levélszeméttel való visszaélés elkerüléséhez)'; +$a->strings['(to prevent spam abuse)'] = '(a kéretlen üzenettel való visszaélés elkerüléséhez)'; $a->strings['Allow your profile to be searchable globally?'] = 'Engedélyezi, hogy a profilja globálisan kereshető legyen?'; $a->strings['Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not.'] = 'Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem.'; $a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?'; @@ -2350,8 +2536,39 @@ $a->strings['If you have moved this profile from another server, and some of you $a->strings['Resend relocate message to contacts'] = 'Áthelyezési üzenet küldése a partnereknek'; $a->strings['Addon Settings'] = 'Bővítménybeállítások'; $a->strings['No Addon settings configured'] = 'Nincsenek bővítménybeállítások meghatározva'; +$a->strings['This page can be used to define the channels that will automatically be reshared by your account.'] = 'Ez az oldal használható azon csatornák meghatározásához, amelyeket a fiókja automatikusan meg fog osztani.'; +$a->strings['This page can be used to define your own channels.'] = 'Ez az oldal használható a saját csatornák meghatározásához.'; +$a->strings['Publish'] = 'Közzététel'; +$a->strings['When selected, the channel results are reshared. This only works for public ActivityPub posts from the public timeline or the user defined circles.'] = 'Ha ki van választva, akkor a csatorna eredményei újra megosztásra kerülnek. Ez csak a nyilvános idővonalról vagy a felhasználó által meghatározott körökből származó nyilvános ActivityPub-bejegyzéseknél működik.'; +$a->strings['Label'] = 'Címke'; $a->strings['Description'] = 'Leírás'; +$a->strings['Access Key'] = 'Hívóbetű'; +$a->strings['Circle/Channel'] = 'Kör vagy csatorna'; +$a->strings['Include Tags'] = 'Címkék felvétele'; +$a->strings['Exclude Tags'] = 'Címkék kizárása'; +$a->strings['Minimum Size'] = 'Legkisebb méret'; +$a->strings['Maximum Size'] = 'Legnagyobb méret'; +$a->strings['Full Text Search'] = 'Teljes szöveges keresés'; +$a->strings['Select all languages that you want to see in this channel.'] = 'Válassza ki az összes nyelvet, amelyet látni szeretne ezen a csatornán.'; +$a->strings['Delete channel'] = 'Csatorna törlése'; +$a->strings['Check to delete this entry from the channel list'] = 'Jelölje be a bejegyzés csatornalistából való törléséhez'; +$a->strings['Short name for the channel. It is displayed on the channels widget.'] = 'A csatorna rövid neve. Ez a csatornák felületi elemen jelenik meg.'; +$a->strings['This should describe the content of the channel in a few word.'] = 'Ennek néhány szóban le kell írnia a csatorna tartalmát.'; +$a->strings['When you want to access this channel via an access key, you can define it here. Pay attention to not use an already used one.'] = 'Ha hívóbetűn keresztül szeretne hozzáférni ehhez a csatornához, akkor itt határozhatja meg azt. Figyeljen arra, hogy ne használjon már használatban lévőt.'; +$a->strings['Select a circle or channel, that your channel should be based on.'] = 'Válasszon egy kört vagy csatornát, amelyen a csatornájának alapulnia kell.'; +$a->strings['Comma separated list of tags. A post will be used when it contains any of the listed tags.'] = 'Címkék vesszővel elválasztott listája. Egy bejegyzés akkor lesz használva, ha a felsorolt címkék bármelyikét tartalmazza.'; +$a->strings['Comma separated list of tags. If a post contain any of these tags, then it will not be part of nthis channel.'] = 'Címkék vesszővel elválasztott listája. Ha egy bejegyzés ezen címkék bármelyikét tartalmazza, akkor nem lesz része ennek a csatornának.'; +$a->strings['Minimum post size. Leave empty for no minimum size. The size is calculated without links, attached posts, mentions or hashtags.'] = 'Legkisebb bejegyzésméret. Hagyja üresen, ha nincs legkisebb méret. A méret hivatkozások, csatolt bejegyzések, említések vagy kettős keresztes címkék nélkül kerül kiszámításra.'; +$a->strings['Maximum post size. Leave empty for no maximum size. The size is calculated without links, attached posts, mentions or hashtags.'] = 'Legnagyobb bejegyzésméret. Hagyja üresen, ha nincs legnagyobb méret. A méret hivatkozások, csatolt bejegyzések, említések vagy kettős keresztes címkék nélkül kerül kiszámításra.'; +$a->strings['Search terms for the body, supports the "boolean mode" operators from MariaDB. See the help for a complete list of operators and additional keywords: %s'] = 'A törzs keresési kifejezései. Támogatja a MariaDB „logikai módú” operátorait. Nézze meg a súgóban az operátorok és a további kulcsszavak teljes listáját: %s'; +$a->strings['Check to display images in the channel.'] = 'Jelölje be a csatornában lévő képek megjelenítéséhez.'; +$a->strings['Check to display videos in the channel.'] = 'Jelölje be a csatornában lévő videók megjelenítéséhez.'; +$a->strings['Check to display audio in the channel.'] = 'Jelölje be a csatornában lévő hangok megjelenítéséhez.'; +$a->strings['Add new entry to the channel list'] = 'Új bejegyzés hozzáadása a csatornalistához'; $a->strings['Add'] = 'Hozzáadás'; +$a->strings['Current Entries in the channel list'] = 'Jelenlegi bejegyzések a csatornalistában'; +$a->strings['Delete entry from the channel list'] = 'Bejegyzés törlése a csatornalistáról'; +$a->strings['Delete entry from the channel list?'] = 'Törli a bejegyzést a csatornalistáról?'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve'; @@ -2438,10 +2655,18 @@ $a->strings['Display the Dislike feature'] = 'A nem tetszik funkció megjelenít $a->strings['Display the Dislike button and dislike reactions on posts and comments.'] = 'A nem tetszik gomb és a nem tetszik reakciók megjelenítése a bejegyzéseknél és a hozzászólásoknál.'; $a->strings['Display the resharer'] = 'Az újramegosztó megjelenítése'; $a->strings['Display the first resharer as icon and text on a reshared item.'] = 'Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél.'; +$a->strings['Display sensitive content'] = 'Érzékeny tartalom megjelenítése'; +$a->strings['If enabled, pictures in posts marked as "sensitive" will not be blurred.'] = 'Ha engedélyezve van, akkor az „érzékenyként” megjelölt bejegyzésekben lévő képek nem lesznek elhomályosítva.'; $a->strings['Stay local'] = 'Maradjon helyi'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ.'; +$a->strings['Show the post deletion checkbox'] = 'A bejegyzéstörlés jelölőnégyzet megjelenítése'; +$a->strings['Display the checkbox for the post deletion on the network page.'] = 'Jelölőnégyzet megjelenítése a bejegyzés törléséhez a hálózat oldalán.'; +$a->strings['DIsplay the event list'] = 'Az eseménylista megjelenítése'; +$a->strings['Display the birthday reminder and event list on the network page.'] = 'A születésnapi emlékeztető és az eseménylista megjelenítése a hálózat oldalán.'; $a->strings['Link preview mode'] = 'Hivatkozás-előnézeti mód'; $a->strings['Appearance of the link preview that is added to each post with a link.'] = 'A hivatkozás előnézetének megjelenése, amely minden egyes hivatkozással rendelkező bejegyzéshez hozzá van adva.'; +$a->strings['Bookmark'] = 'Könyvjelző'; +$a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Azon idővonalak engedélyezése, amelyeket a csatornák felületi elemben szeretne látni. Azon idővonalak könyvjelzőzése, amelyeket a felső menüben szeretne látni.'; $a->strings['Channel languages:'] = 'Csatorna nyelvei:'; $a->strings['Select all languages that you want to see in your channels.'] = 'Válassza ki az összes nyelvet, amelyet látni szeretne a csatornáiban.'; $a->strings['Beginning of week:'] = 'A hét kezdete:'; @@ -2505,10 +2730,13 @@ $a->strings['Upload Picture:'] = 'Fénykép feltöltése:'; $a->strings['or'] = 'vagy'; $a->strings['skip this step'] = 'ezen lépés kihagyása'; $a->strings['select a photo from your photo albums'] = 'fénykép kiválasztása a fényképalbumából'; +$a->strings['There was a validation error, please make sure you\'re logged in with the account you want to remove and try again.'] = 'Ellenőrzési hiba történt. Győződjön meg arról, hogy az eltávolítani kívánt fiókkal van-e bejelentkezve, és próbálja meg újra.'; +$a->strings['If this error persists, please contact your administrator.'] = 'Ha ez a hiba továbbra is fennáll, akkor vegye fel a kapcsolatot az adminisztrátorral.'; $a->strings['[Friendica System Notify]'] = '[Friendica rendszerértesítés]'; $a->strings['User deleted their account'] = 'A felhasználó törölte a fiókját'; $a->strings['On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'] = 'Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből.'; $a->strings['The user id is %d'] = 'A felhasználó-azonosító %d'; +$a->strings['Your account has been successfully removed. Bye bye!'] = 'A fiókja sikeresen el lett távolítva. Viszlát!'; $a->strings['Remove My Account'] = 'Saját fiók eltávolítása'; $a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható.'; $a->strings['Please enter your password for verification:'] = 'Adja meg a jelszavát az ellenőrzéshez:'; @@ -2760,6 +2988,11 @@ $a->strings['Please visit %s if you wish to make any changes to this relationsh $a->strings['registration request'] = 'regisztrációs kérés'; $a->strings['You\'ve received a registration request from \'%1$s\' at %2$s'] = 'Kapott egy regisztrációs kérést „%1$s” partnertől itt: %2$s'; $a->strings['You\'ve received a [url=%1$s]registration request[/url] from %2$s.'] = 'Kapott egy %2$s által elküldött [url=%1$s]regisztrációs kérést[/url].'; +$a->strings['Display Name: %s +Site Location: %s +Login Name: %s (%s)'] = 'Megjelenített név: %s +Oldal címe: %s +Bejelentkezési név: %s (%s)'; $a->strings['Please visit %s to approve or reject the request.'] = 'Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához.'; $a->strings['new registration'] = 'új regisztráció'; $a->strings['You\'ve received a new registration from \'%1$s\' at %2$s'] = 'Kapott egy új regisztrációs kérést „%1$s” partnertől itt: %2$s'; @@ -2801,7 +3034,7 @@ $a->strings['Toggle pin status'] = 'Kitűzés állapotának átváltása'; $a->strings['Pinned'] = 'Kitűzve'; $a->strings['Add tag'] = 'Címke hozzáadása'; $a->strings['Quote share this'] = 'Idézett megosztás'; -$a->strings['Quote Share'] = 'Idéző megosztás'; +$a->strings['Quote Share'] = 'Idézett megosztás'; $a->strings['Reshare this'] = 'Újra megosztás'; $a->strings['Reshare'] = 'Újra megosztás'; $a->strings['Cancel your Reshare'] = 'Újra megosztás megszakítása'; @@ -2811,6 +3044,9 @@ $a->strings['Comment this item on your system'] = 'Hozzászólás az elemhez a s $a->strings['Remote comment'] = 'Távoli hozzászólás'; $a->strings['Share via ...'] = 'Megosztás ezen keresztül…'; $a->strings['Share via external services'] = 'Megosztás külső szolgáltatásokon keresztül'; +$a->strings['Unknown parent'] = 'Ismeretlen szülő'; +$a->strings['in reply to %s'] = 'válasz a következőre: %s'; +$a->strings['Parent is probably private or not federated.'] = 'A szülő valószínűleg személyes vagy nem föderált.'; $a->strings['to'] = 'ide:'; $a->strings['via'] = 'ezen keresztül:'; $a->strings['Wall-to-Wall'] = 'Falról-falra'; @@ -2830,12 +3066,16 @@ $a->strings['Show more'] = 'Több megjelenítése'; $a->strings['Show fewer'] = 'Kevesebb megjelenítése'; $a->strings['Reshared by: %s'] = 'Újra megosztotta: %s'; $a->strings['Viewed by: %s'] = 'Megtekintette: %s'; +$a->strings['Read by: %s'] = 'Olvasta: %s'; $a->strings['Liked by: %s'] = 'Kedvelte: %s'; $a->strings['Disliked by: %s'] = 'Nem kedvelte: %s'; $a->strings['Attended by: %s'] = 'Részt vett: %s'; $a->strings['Maybe attended by: %s'] = 'Talán részt vett: %s'; $a->strings['Not attended by: %s'] = 'Nem vett részt: %s'; +$a->strings['Commented by: %s'] = 'Hozzászólt: %s'; $a->strings['Reacted with %s by: %s'] = 'Reagált ezzel: %s: %s'; +$a->strings['Quote shared by: %s'] = 'Idézetten osztott meg: %s'; +$a->strings['Chat'] = 'Csevegés'; $a->strings['(no subject)'] = '(nincs tárgy)'; $a->strings['%s is now following %s.'] = '%s mostantól követi %s partnert.'; $a->strings['following'] = 'követés'; @@ -2877,16 +3117,8 @@ $a->strings['darkzero'] = 'sötét nulla'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'Variációk'; -$a->strings['Light (Accented)'] = 'Világos (hangsúlyos)'; -$a->strings['Dark (Accented)'] = 'Sötét (hangsúlyos)'; -$a->strings['Black (Accented)'] = 'Fekete (hangsúlyos)'; $a->strings['Note'] = 'Jegyzet'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Ellenőrizze a kép jogosultságait, hogy minden felhasználó képes-e megtekinteni a képet.'; -$a->strings['Custom'] = 'Egyéni'; -$a->strings['Legacy'] = 'Örökölt'; -$a->strings['Accented'] = 'Hangsúlyos'; -$a->strings['Select color scheme'] = 'Színséma kiválasztása'; -$a->strings['Select scheme accent'] = 'Sémahangsúly kiválasztása'; $a->strings['Blue'] = 'Kék'; $a->strings['Red'] = 'Piros'; $a->strings['Purple'] = 'Lila'; @@ -2916,6 +3148,7 @@ $a->strings['Mosaic'] = 'Mozaik'; $a->strings['Repeat image to fill the screen.'] = 'Kép ismétlése a képernyő kitöltéséhez.'; $a->strings['Skip to main content'] = 'Kihagyás a fő tartalomhoz'; $a->strings['Back to top'] = 'Vissza a tetejére'; +$a->strings['Custom'] = 'Egyéni'; $a->strings['Guest'] = 'Vendég'; $a->strings['Visitor'] = 'Látogató'; $a->strings['Alignment'] = 'Igazítás'; diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index f72c311b0d..3973dd91f3 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Sveinn í Felli , 2014,2016,2018\n" "Language-Team: Icelandic (http://app.transifex.com/Friendica/friendica/language/is/)\n" @@ -46,14 +46,14 @@ msgstr "" msgid "Empty post discarded." msgstr "Tóm færsla eytt." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Atriði fannst ekki." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -76,14 +76,14 @@ msgstr "Atriði fannst ekki." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Heimild ekki veitt." @@ -248,7 +248,7 @@ msgstr "Ekki tókst að sækja skilaboð." msgid "Discard" msgstr "Henda" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Skilaboð" @@ -293,20 +293,20 @@ msgstr "Hlaða upp mynd" msgid "Insert web link" msgstr "Setja inn vefslóð" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Hinkraðu aðeins" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -320,7 +320,7 @@ msgstr "Hinkraðu aðeins" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Senda inn" @@ -391,7 +391,7 @@ msgstr "" msgid "Save" msgstr "Vista" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -404,99 +404,99 @@ msgid "User not found." msgstr "" #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Myndabækur" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Nýlegar myndir" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Hlaða upp nýjum myndum" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "allir" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Tengiliða upplýsingar ekki til" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Myndabók finnst ekki." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "mynd" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s var merkt í %2$s af %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Opinber aðgangur ekki veittur." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Engar myndir valdar" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Hlaða upp myndum" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nýtt nafn myndbókar:" -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Ekki sýna færslu fyrir þessari upphölun" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Aðgangsheimildir" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Fjarlægja myndabók" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -506,133 +506,133 @@ msgstr "Fjarlægja myndabók" msgid "Cancel" msgstr "Hætta við" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Breyta myndbók" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Birta nýjast fyrst" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Birta elsta fyrst" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Skoða mynd" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Mynd ekki til" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Fjarlægja mynd" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Birta mynd" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Breyta mynd" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Nota sem forsíðu mynd" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Skoða í fullri stærð" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Merki:" -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nýtt nafn myndbókar" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Yfirskrift" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Bæta við merki" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Ekki snúa" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Snúa réttsælis (hægri)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Snúa rangsælis (vinstri)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Þetta ert þú" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Athugasemd" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Forskoðun" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Velja" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -641,23 +641,23 @@ msgstr "Velja" msgid "Delete" msgstr "Eyða" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mér líkar þetta (kveikja/slökkva)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Mér líkar þetta ekki (kveikja/slökkva)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Landakort" @@ -798,18 +798,18 @@ msgid "All contacts" msgstr "" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1087,7 +1087,7 @@ msgstr "RSS / Atom" msgid "Email" msgstr "Tölvupóstur" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1565,29 +1565,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1765,7 +1773,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1774,12 +1782,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "birta meira" @@ -1787,7 +1795,7 @@ msgstr "birta meira" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "atburður" @@ -1795,7 +1803,7 @@ msgstr "atburður" msgid "status" msgstr "staða" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "mynd" @@ -1805,36 +1813,36 @@ msgstr "mynd" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s merkti %2$s's %3$s með %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Fylgja þræði" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Skoða stöðu" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Skoða forsíðu" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Skoða myndir" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Færslur á neti" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Skoða tengilið" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Senda einkaboð" @@ -1870,7 +1878,7 @@ msgid "Languages" msgstr "" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Tengjast/fylgja" @@ -1924,42 +1932,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Forsíða" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Forsíðan þín" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Myndir" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Myndirnar þínar" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Dagatal" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2029,7 +2037,7 @@ msgstr "Merki" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Tengiliðir" @@ -2068,15 +2076,15 @@ msgstr "Þjónustuskilmálar" msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Samfélag" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Samtöl frá vinum" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Samtölin þín" @@ -2105,7 +2113,7 @@ msgstr "Merka sem séð" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Einka skilaboð" @@ -2127,15 +2135,15 @@ msgstr "Sýsla með aðrar síður" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Stillingar" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Stillingar aðgangsreiknings" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Sýsla með vini og tengiliði" @@ -2173,14 +2181,6 @@ msgstr "Yfirsýn" msgid "Site map" msgstr "Yfirlit um vefsvæði" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Innfelling ekki leyfð" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Innbyggt efni" - #: src/Content/Pager.php:216 msgid "first" msgstr "fremsta" @@ -2197,38 +2197,38 @@ msgstr "næsta" msgid "last" msgstr "síðasta" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Mynd" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Smelltu til að opna/loka" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 skrifaði:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Dulritað efni" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "" @@ -2311,90 +2311,90 @@ msgstr "Alheimstengiliðaskrá" msgid "Local Directory" msgstr "Staðvær mappa" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Allir tengiliðir" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Vistaðar möppur" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Allt" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Flokkar" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d tengiliður sameiginlegur" msgstr[1] "%d tengiliðir sameiginlegir" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Safnskrár" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Fréttir" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Gerðir notendaaðganga" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2444,12 +2444,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2465,7 +2465,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2477,13 +2477,13 @@ msgstr "Staðsetning:" msgid "Network:" msgstr "Netkerfi:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2856,27 +2856,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Gagnagrunnur er þegar í notkun." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Gat ekki tengst gagnagrunn." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2886,37 +2882,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Mánudagur" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Þriðjudagur" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Miðvikudagur" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Fimmtudagur" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Föstudagur" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Laugardagur" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Sunnudagur" @@ -3254,47 +3250,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Samþykkja" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Óleyfileg forsíðu slóð." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Útilokað lén" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Tengislóð vantar." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." @@ -3342,12 +3342,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Byrjar:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Endar:" @@ -3365,17 +3365,17 @@ msgid "today" msgstr "í dag" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "mánuður" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "vika" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "dagur" @@ -3420,109 +3420,109 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Birta kort" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Fela kort" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Afmælisdagur %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Til hamingju með afmælið %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "virkni" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "senda" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Viðvörun vegna innihalds: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bæti" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Skoða á sérstakri síðu" @@ -3530,7 +3530,7 @@ msgstr "Skoða á sérstakri síðu" msgid "[no subject]" msgstr "[ekkert efni]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Veggmyndir" @@ -3814,11 +3814,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Forsíðumyndir" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3826,7 +3826,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3857,12 +3857,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Nýskráningar upplýsingar fyrir %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3877,12 +3877,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3891,7 +3891,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3922,7 +3922,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3947,14 +3947,14 @@ msgid "Disable" msgstr "Gera óvirkt" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Virkja" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3994,12 +3994,12 @@ msgid "Addon %s failed to install." msgstr "" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Vista stillingar" @@ -4194,8 +4194,8 @@ msgid "Enable Debugging" msgstr "" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4356,269 +4356,269 @@ msgstr "Búið til" msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (á tilraunastigi)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Lokað" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Þarf samþykki" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Opið" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Vefur" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Nýskráning" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Hlaða upp skrá" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Stefna" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Flóknari" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Afköst" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nafn vefsvæðis" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Tölvupóstfang sendanda" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Borði/Merki" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Táknmynd flýtivísunar" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Viðbótarupplýsingar" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Tungumál kerfis" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Þema kerfis" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Þvinga SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Mesta stærð mynda" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4626,35 +4626,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "JPEG myndgæði" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Stefna varðandi nýskráningar" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4662,157 +4662,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Texti við nýskráningu" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Yfirgefnir notendur eftir x daga" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Leyfð lén vina" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Leyfð tölvupóstfangalén" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Loka á opinberar færslur" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Skylda að vera í tengiliðalista" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Hindra opið aðgengi að viðbótum í forritavalmyndinni." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Ef hakað er í þetta verður aðgengi að viðbótum í forritavalmyndinni takmarkað við meðlimi." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4820,11 +4830,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4833,339 +4843,339 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Leyfa Diaspora tengingar" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Sannreyna SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy notandi" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Proxy slóð" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Net tími útrunninn" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Mesta meðaltals álag" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5173,50 +5183,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Líftími fjartengdra atriða" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5224,175 +5234,175 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5400,153 +5410,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Óvirkt" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "allt" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "merki" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "" @@ -6134,11 +6144,11 @@ msgstr "" msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "" @@ -6230,7 +6240,7 @@ msgstr "Skoða" msgid "Create New Event" msgstr "Stofna nýjan atburð" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "listi" @@ -6878,7 +6888,7 @@ msgid "Actions" msgstr "Aðgerðir" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Staða" @@ -7050,33 +7060,33 @@ msgstr "" msgid "Not available." msgstr "Ekki tiltækt." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7108,7 +7118,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7119,179 +7129,179 @@ msgstr[1] "" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Hrátt HTML-ílag" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "HTML Input" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Frumtexti" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7800,7 +7810,7 @@ msgstr "Skrár" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Senda inn" @@ -7821,14 +7831,14 @@ msgstr "Skrá fer leyfileg takmörk sem eru %s" msgid "File upload failed." msgstr "Skráar upphlöðun mistókst." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Ekki mögulegt afgreiða mynd" -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Ekki hægt að hlaða upp mynd." @@ -8861,7 +8871,7 @@ msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengili msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8872,11 +8882,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -9001,21 +9011,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9067,27 +9077,27 @@ msgstr "Enginn tengiliður" #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Tímalína fyrir %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Færslur frá %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Athugasemdir frá %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "" @@ -9106,11 +9116,11 @@ msgid "" "administrator" msgstr "" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Mynda skrá er tóm." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Skoða myndabók" @@ -10173,12 +10183,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" @@ -10576,181 +10586,189 @@ msgstr "" msgid "No entries." msgstr "Engar færslur." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (ekki stutt)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Birtingarstillingar" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Stillingar efnis" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Þemastillingar" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Útlits þema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Farsímaþema" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Upphaf viku:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10915,7 +10933,7 @@ msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Myndar minnkun [%s] tókst ekki." @@ -10955,31 +10973,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "eða" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "sleppa þessu skrefi" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "velja mynd í myndabókum" @@ -12679,124 +12697,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12836,19 +12830,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/is/strings.php b/view/lang/is/strings.php index 7eb0e5d46a..c85a377be4 100644 --- a/view/lang/is/strings.php +++ b/view/lang/is/strings.php @@ -236,8 +236,6 @@ $a->strings['Admin'] = 'Stjórnandi'; $a->strings['Site setup and configuration'] = 'Uppsetning og stillingar vefsvæðis'; $a->strings['Navigation'] = 'Yfirsýn'; $a->strings['Site map'] = 'Yfirlit um vefsvæði'; -$a->strings['Embedding disabled'] = 'Innfelling ekki leyfð'; -$a->strings['Embedded content'] = 'Innbyggt efni'; $a->strings['first'] = 'fremsta'; $a->strings['prev'] = 'á undan'; $a->strings['next'] = 'næsta'; diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index c4566c274d..846f891bf7 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: fabrixxm , 2013-2015,2017-2022\n" "Language-Team: Italian (http://app.transifex.com/Friendica/friendica/language/it/)\n" @@ -47,14 +47,14 @@ msgstr "L'oggetto non può essere recuperato." msgid "Empty post discarded." msgstr "Messaggio vuoto scartato." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Elemento non trovato." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -77,14 +77,14 @@ msgstr "Elemento non trovato." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Permesso negato." @@ -249,7 +249,7 @@ msgstr "Errore recuperando il messaggio." msgid "Discard" msgstr "Scarta" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Messaggi" @@ -294,20 +294,20 @@ msgstr "Carica foto" msgid "Insert web link" msgstr "Inserisci collegamento web" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Attendi" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -321,7 +321,7 @@ msgstr "Attendi" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Invia" @@ -393,7 +393,7 @@ msgstr "Le note personali sono visibili solo da te." msgid "Save" msgstr "Salva" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -406,99 +406,99 @@ msgid "User not found." msgstr "Utente non trovato." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Album foto" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Foto recenti" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Carica nuove foto" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "tutti" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "I dati di questo contatto non sono disponibili" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Album non trovato." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album eliminato con successo" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "L'album era vuoto." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Eliminazione della foto non riuscita." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "una foto" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s è stato taggato in %2$s da %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Accesso negato." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Nessuna foto selezionata" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Carica foto" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nome nuovo album: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "o seleziona un album esistente:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Non creare un messaggio per questo upload" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Permessi" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Rimuovi album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -508,133 +508,133 @@ msgstr "Rimuovi album" msgid "Cancel" msgstr "Annulla" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Modifica album" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Elimina Album" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Mostra nuove foto per prime" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Mostra vecchie foto per prime" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Vedi foto" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Foto non disponibile" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Vuoi veramente cancellare questa foto?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Rimuovi foto" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Vedi foto" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Modifica foto" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Elimina foto" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Usa come foto del profilo" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Foto privata" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Vedi dimensione intera" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Tag: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Seleziona tag da rimuovere]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nuovo nome dell'album" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Titolo" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Aggiungi tag" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Non ruotare" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Ruota a destra" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Ruota a sinistra" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Questo sei tu" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Commento" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Anteprima" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Caricamento..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Seleziona" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -643,23 +643,23 @@ msgstr "Seleziona" msgid "Delete" msgstr "Rimuovi" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Mi Piace" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mi piace (clic per cambiare)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Non Mi Piace" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Non mi piace (clic per cambiare)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Mappa" @@ -800,18 +800,18 @@ msgid "All contacts" msgstr "Tutti i contatti" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Seguaci" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Seguendo" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1089,7 +1089,7 @@ msgstr "RSS / Atom" msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1579,29 +1579,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1779,7 +1787,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1788,12 +1796,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "mostra meno" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "mostra di più" @@ -1801,7 +1809,7 @@ msgstr "mostra di più" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "l'evento" @@ -1809,7 +1817,7 @@ msgstr "l'evento" msgid "status" msgstr "stato" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "foto" @@ -1819,36 +1827,36 @@ msgstr "foto" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Segui la discussione" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Visualizza stato" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Visualizza profilo" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Visualizza foto" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Messaggi della Rete" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Mostra contatto" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Invia messaggio privato" @@ -1884,7 +1892,7 @@ msgid "Languages" msgstr "Lingue" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Connetti/segui" @@ -1938,42 +1946,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profilo" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Pagina del tuo profilo" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Foto" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Le tue foto" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "I tuoi messaggi con media" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Calendario" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2043,7 +2051,7 @@ msgstr "Tags:" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Contatti" @@ -2082,15 +2090,15 @@ msgstr "Termini di Servizio" msgid "Terms of Service of this Friendica instance" msgstr "Termini di Servizio di questa istanza Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Rete" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Conversazioni dai tuoi amici" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "I tuoi messaggi e le tue conversazioni" @@ -2119,7 +2127,7 @@ msgstr "Segna come letto" msgid "Mark all system notifications as seen" msgstr "Segna tutte le notifiche di sistema come viste" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Posta privata" @@ -2141,15 +2149,15 @@ msgstr "Gestisci altre pagine" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Impostazioni" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Parametri account" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Gestisci/modifica amici e contatti" @@ -2187,14 +2195,6 @@ msgstr "Navigazione" msgid "Site map" msgstr "Mappa del sito" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Embed disabilitato" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Contenuto incorporato" - #: src/Content/Pager.php:216 msgid "first" msgstr "primo" @@ -2211,38 +2211,38 @@ msgstr "succ" msgid "last" msgstr "ultimo" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Immagine/foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Collegamento all'originale" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 ha scritto:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Contenuto criptato" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Protocollo sorgente non valido" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Protocollo collegamento non valido" @@ -2326,49 +2326,49 @@ msgstr "Elenco globale" msgid "Local Directory" msgstr "Elenco Locale" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Chiunque" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Relazioni" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Tutti i contatti" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protocolli" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Tutti i Protocolli" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Cartelle Salvate" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Tutto" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Categorie" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2376,41 +2376,41 @@ msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" msgstr[2] "%d contatti in comune" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archivi" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Persone" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Organizzazioni" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Notizie" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Tipi di Account" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Tutto" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2462,12 +2462,12 @@ msgstr[2] "Etichette di Tendenza (ultime %d ore)" msgid "More Trending Tags" msgstr "Più Etichette di Tendenza" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Menzione" @@ -2483,7 +2483,7 @@ msgid "Matrix:" msgstr "Matrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2495,13 +2495,13 @@ msgstr "Posizione:" msgid "Network:" msgstr "Rete:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Smetti di seguire" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2874,27 +2874,23 @@ msgstr "TLS non rlevato" msgid "TLS detected" msgstr "TLS rilevato" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "L'estensione PHP ImageMagick non è installata" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "L'estensione PHP ImageMagick è installata" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick supporta i GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Database già in uso." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr " Impossibile collegarsi con il database." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2904,37 +2900,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Lunedì" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Martedì" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Mercoledì" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Giovedì" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Venerdì" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Sabato" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Domenica" @@ -3272,47 +3268,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Approva" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organizzazione" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Relay" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Indirizzo profilo non permesso." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Dominio bloccato" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Il contatto non può essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." @@ -3360,12 +3360,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l F d, Y \\@ g:i A \\G\\M\\TP (e)" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Inizia:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Finisce:" @@ -3383,17 +3383,17 @@ msgid "today" msgstr "oggi" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "mese" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "settimana" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "giorno" @@ -3438,76 +3438,76 @@ msgstr "D G:i" msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Mostra mappa" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Nascondi mappa" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Lingue rilevate in questo messaggio:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "attività" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "commento" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "messaggio" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Avviso contenuto: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3515,7 +3515,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3523,7 +3523,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3531,7 +3531,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3539,12 +3539,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Vedi in una pagina separata" @@ -3552,7 +3552,7 @@ msgstr "Vedi in una pagina separata" msgid "[no subject]" msgstr "[nessun oggetto]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Foto della bacheca" @@ -3838,11 +3838,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Foto del profilo" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3850,7 +3850,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tCaro/a %1$s,\n\t\t\tl'amministratore di %2$s ha impostato un account per te." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3881,12 +3881,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3901,12 +3901,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tGentile %1$s,\n\t\t\t\tGrazie di esserti registrato/a su %2$s. Il tuo account è in attesa di approvazione dall'amministratore.\n\n\t\t\tI tuoi dettagli di login sono i seguenti:\n\n\t\t\tIndirizzo del Sito:\t%3$s\n\t\t\tNome Utente:\t\t%4$s\n\t\t\tPassword:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Registrazione su %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3915,7 +3915,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tCaro/a %1$s,\n\t\t\t\tGrazie per esserti registrato/a su %2$s. Il tuo account è stato creato.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3946,7 +3946,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3971,14 +3971,14 @@ msgid "Disable" msgstr "Disabilita" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Abilita" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4018,12 +4018,12 @@ msgid "Addon %s failed to install." msgstr "Installazione del componente aggiuntivo %s non riuscita." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Salva Impostazioni" @@ -4226,8 +4226,8 @@ msgid "Enable Debugging" msgstr "Abilita Debugging" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4388,269 +4388,269 @@ msgstr "Creato" msgid "Priority" msgstr "Priorità" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Nessun tema speciale per i dispositivi mobili" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Sperimentale)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Nessuna pagina Comunità" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Messaggi pubblici dagli utenti di questo sito" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Messaggi pubblici dalla rete federata" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Messaggi pubblici dagli utenti di questo sito e dalla rete federata" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Istanza multi utente" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Chiusa" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Richiede l'approvazione" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Aperta" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Non controllare" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "controlla la versione stabile" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "controlla la versione di sviluppo" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "niente" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Contatti locali" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Interlocutori" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Sito" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Informazioni Generali" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Ripubblica gli utenti sulla directory" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registrazione" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Caricamento file" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Politiche" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avanzate" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Elenco Contatti Scoperto Automaticamente" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Relay Messaggio" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Usa il comando \"console relay\" da riga di comando per aggiungere o rimuovere i relay." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "Il sistema non è iscritto a nessun relay al momento." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "Il sistema è iscritto ai seguenti relay:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nome del sito" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Mittente email" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "L'indirizzo email che il tuo server dovrà usare per inviare notifiche via email." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Nome dell'attore di sistema" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Nomina un account interno del sistema che venga utilizzato per le richieste ActivityPub. Questo dev'essere un nome utente non utilizzato. Una volta impostato, non potrà essere cambiato." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "Intestazione/Logo Email" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Icona shortcut" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Collegamento ad un'icona che verrà usata dai browser." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Icona touch" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Collegamento ad un'icona che verrà usata dai tablet e i telefonini." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Informazioni aggiuntive" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Per server pubblici: puoi aggiungere informazioni extra che verranno mostrate su %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Lingua di sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Tema di sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Tema mobile di sistema" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Tema per dispositivi mobili" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Forza SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forza tutte le richieste non SSL su SSL - Attenzione: su alcuni sistemi può portare a loop senza fine" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Mostra la voce Guida nel menu di navigazione" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Istanza a singolo utente" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Massima dimensione immagini" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4658,35 +4658,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Massima lunghezza immagine" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Qualità immagini JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Politica di registrazione" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4694,157 +4694,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Massime registrazioni giornaliere" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Testo registrazione" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Sarà mostrato ben visibile nella pagina di registrazione. Puoi usare BBCode." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Nomi utente Vietati" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Lista separata da virgola di nomi utente che sono vietati nella registrazione. Il valore preimpostato è una lista di nomi di ruoli secondo RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Account abbandonati dopo x giorni" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Domini amici consentiti" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Vuoto per accettare qualsiasi dominio." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Nessun contenuto ricco da OEmbed" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Non mostrare il contenuto ricco (p.e. PDF), tranne che dai domini elencati di seguito." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Domini fidati di terze parti" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Elenco separato da virgola di domini per i quali è consentita l'incorporazione del loro contenuto in messaggi come OEmbed. Anche tutti i sottodomini dei domini elencati sono consentiti." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Forza pubblicazione" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi nell'elenco di questo sito." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Abilitare questo potrebbe violare leggi sulla privacy come il GDPR" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "URL della directory globale" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Messaggi privati come impostazioni predefinita per i nuovi utenti" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Non includere il contenuto dei messaggi nelle notifiche via email" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Non include il contenuti del messaggio/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Disabilita l'accesso pubblico ai plugin raccolti nel menu apps." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Selezionando questo box si limiterà ai soli membri l'accesso ai componenti aggiuntivi nel menu applicazioni" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Non inglobare immagini private nei messaggi" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4852,11 +4862,11 @@ msgid "" "while." msgstr "Non sostituire le foto locali nei messaggi con una copia incorporata dell'immagine. Questo significa che i contatti che riceveranno i messaggi contenenti foto private dovranno autenticarsi e caricare ogni immagine, cosa che può richiedere un po' di tempo." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Contenuto Esplicito" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4865,339 +4875,339 @@ msgid "" "will be shown at the user registration page." msgstr "Imposta questo per avvisare che il tuo noto è usato principalmente per contenuto esplicito che potrebbe non essere adatto a minori. Questa informazione sarà pubblicata nella pagina di informazioni sul noto e potrà essere usata, per esempio nella directory globale, per filtrare il tuo nodo dalla lista di nodi su cui registrarsi. In più, una nota sarà mostrata nella pagina di registrazione." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Permetti agli utenti di impostare 'io remoto'" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Selezionando questo, a tutti gli utenti sarà permesso di impostare qualsiasi contatto come 'io remoto' nella pagina di modifica del contatto. Impostare questa opzione fa si che tutti i messaggi di quel contatto vengano ripetuti nello stream dell'utente." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Pagina comunità per i visitatori" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Quale pagina comunità verrà mostrata ai visitatori. Gli utenti locali vedranno sempre entrambe le pagine." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Messaggi per utente nella pagina Comunità" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Il supporto a Diaspora non può essere abilitato perché Friendica è stato installato in una sottocartella." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Abilita il supporto a Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Verifica SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Utente Proxy" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL Proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Timeout rete" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Massimo carico medio" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Carico massimo del sistema prima che i processi di invio e richiesta siano rinviati - predefinito %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Memoria Minima" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minima memoria libera in MB per il worker. Necessita di avere accesso a /proc/meminfo - default 0 (disabilitato)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Ottimizza le tabelle periodicamente" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Ottimizza periodicamente le tabelle come la cache e la coda dei worker" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Scopri seguiti/seguaci dai contatti" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Se abilitato, ad ogni contatto saranno controllati i propri seguaci e le persone seguite." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Nessuno - disattivato" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Contatti locali - contatti che i nostri contatti locali hanno scoperto con i loro seguaci/persone seguite." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interlocutori - contatti dei tuoi contatti locali e contatti che hanno interagito sui messaggi visibili localmente saranno analizzati per i loro seguaci/seguiti" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Sincronizza i contatti con il server directory" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Se abilitato, il sistema controllerà periodicamente nuovi contatti sulle directory server indicate." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Trova contatti dagli altri server" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Giorni tra le richieste" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Cerca la directory locale" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Cerca nella directory locale invece che nella directory globale. Durante la ricerca a livello locale, ogni ricerca verrà eseguita sulla directory globale in background. Ciò migliora i risultati della ricerca quando la ricerca viene ripetuta." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Pubblica informazioni server" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5205,50 +5215,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Se abilitato, saranno pubblicate le informazioni sul server e i dati di utilizzo. Le informazioni contengono nome e versione del server, numero di utenti con profilo pubblico, numero di messaggi e quali protocolli e connettori sono stati attivati.\nVedi the-federation.info per dettagli." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Controlla versione upstream" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Abilita il controllo di nuove versioni di Friendica su Github. Se sono disponibili nuove versioni, ne sarai informato nel pannello Panoramica dell'amministrazione." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Sopprimi Tags" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Non mostra la lista di hashtag in coda al messaggio" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Pulisci database" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Rimuove i i vecchi elementi remoti, i record del database orfani e il vecchio contenuto da alcune tabelle di supporto." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Durata della vita di oggetti remoti" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce quali elementi remoti saranno cancellati. I propri elementi e quelli marcati preferiti o salvati in cartelle saranno sempre mantenuti. Il valore 0 disabilita questa funzionalità." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Durata della vita di oggetti non reclamati" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5256,175 +5266,175 @@ msgid "" "items if set to 0." msgstr "Quando la pulizia del database è abilitata, questa impostazione definisce dopo quanti giorni gli elementi remoti non reclamanti (principalmente il contenuto dai relay) sarà cancellato. Il valore di default è 90 giorni. Se impostato a 0, verrà utilizzato il valore della durata della vita degli elementi remoti." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Durata della vita di dati di conversazione grezzi" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "I dati di conversazione sono usati per ActivityPub e OStatus, come anche per necessità di debug. Dovrebbe essere sicuro rimuoverli dopo 14 giorni. Il default è 90 giorni." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Numero massimo di commenti per messaggio" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Quanti commenti devono essere mostrati per ogni messaggio? Default : 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "Numero massimo di commenti per messaggio sulla pagina di visualizzazione" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Quanti commenti devono essere mostrati sulla pagina dedicata per ogni messaggio? Il valore predefinito è 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Percorso file temporanei" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Se si dispone di un sistema ristretto in cui il server web non può accedere al percorso temporaneo di sistema, inserire un altro percorso qui." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Cerca solo nei tag" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Massimo numero di lavori in parallelo" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Con hosting condiviso, imposta a %d. Su sistemi più grandi, vanno bene valori come %d. Il valore di default è %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Abilita fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Quando abilitato, il meccanismo di fastlane avvia processi aggiuntivi se processi con priorità più alta sono bloccati da processi con priorità più bassa." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5432,153 +5442,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Trasferimento relay diretto" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Abilita il trasferimento diretto agli altri server senza utilizzare i server relay." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Ambito del relay" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Può essere \"tutto\" o \"etichette\". \"tutto\" significa che ogni messaggio pubblico può essere ricevuto. \"etichette\" significa che solo i messaggi con le etichette selezionate saranno ricevuti." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Disabilitato" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "tutti" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Tags server" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Lista separata da virgola di etichette per la sottoscrizione \"etichette\"." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Etichette Negate del Server" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Lista separata da virgola di etichette che vengono rifiutate." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Permetti tag utente" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Se abilitato, le etichette delle ricerche salvate saranno usate per la sottoscrizione \"etichette\" in aggiunta ai \"server_etichette\"." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Inizia il Trasloco" @@ -6170,11 +6180,11 @@ msgstr "" msgid "Failed to remove event" msgstr "Rimozione evento fallita." -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Un evento non può finire prima di iniziare." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Titolo e ora di inizio dell'evento sono richiesti." @@ -6266,7 +6276,7 @@ msgstr "Mostra" msgid "Create New Event" msgstr "Crea un nuovo evento" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "lista" @@ -6920,7 +6930,7 @@ msgid "Actions" msgstr "Azioni" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Stato" @@ -7092,33 +7102,33 @@ msgstr "Opzione Comunità non disponibile" msgid "Not available." msgstr "Non disponibile." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Propri Contatti" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Includi" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Nascondi" @@ -7150,7 +7160,7 @@ msgid "Result Item" msgstr "Oggetto Ritornato" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7162,179 +7172,179 @@ msgstr[2] "Errori" msgid "Source activity" msgstr "Sorgente attività" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Sorgente" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Item Body" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Item Tags" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Source input (Diaspora format)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Sorgente (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Sorgente HTML grezzo" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "Sorgente HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "HTML Purificato (raw)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "HTML Purificato (hex)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "HTML Purificato" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compatto)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Messaggio decodificato" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "Pubblica array prima di espandere le entità" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Messaggio convertito" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "Corpo del testo convertito" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "Il componente aggiuntivo Twitter è assente dalla cartella addon/ ." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Diagnostica Babel" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Testo sorgente" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Sorgente Twitter / URL Tweet (richiede chiave API)" @@ -7844,7 +7854,7 @@ msgstr "File" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Carica" @@ -7865,14 +7875,14 @@ msgstr "Il file supera la dimensione massima di %s" msgid "File upload failed." msgstr "Caricamento del file non riuscito." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Impossibile caricare l'immagine." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Caricamento immagine fallito." @@ -8918,7 +8928,7 @@ msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai conta msgid "Unsupported or missing response type" msgstr "Tipo di risposta mancante o non supportato" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Dati richiesta incompleti" @@ -8929,11 +8939,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Tipo di concessione mancante o non supportato" @@ -9058,21 +9068,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "La Foto con id %s non è disponibile." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Foto con id %s non valida." @@ -9124,27 +9134,27 @@ msgstr "Nessun contatto." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "la timeline di %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "il messaggio di %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "il commento di %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "La dimensione dell'immagine supera il limite di %s" @@ -9163,11 +9173,11 @@ msgid "" "administrator" msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Il file dell'immagine è vuoto." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Sfoglia l'album" @@ -10231,12 +10241,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Descrizione" @@ -10634,181 +10644,189 @@ msgstr "Delegati Potenziali" msgid "No entries." msgstr "Nessuna voce." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Il tema che hai scelto non è disponibile." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Non supportato)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Opzioni Generali Tema" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Opzioni Personalizzate Tema" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Opzioni Contenuto" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Impostazioni tema" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Scroll infinito" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Recupero automatico di nuovi oggetti quando viene raggiunta la fine della pagina." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Mostra chi ha condiviso" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Mostra chi ha condiviso per primo come icona e testo su un oggetto ricondiviso." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Rimani in locale" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "Non andare sul sistema remoto mentre segui il collegamento di un contatto." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Inizio della settimana:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10973,7 +10991,7 @@ msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Il ridimensionamento dell'immagine [%s] è fallito." @@ -11013,31 +11031,31 @@ msgstr "Usa immagine così com'è" msgid "Missing uploaded image." msgstr "Immagine caricata mancante." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Impostazioni Immagine di Profilo" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Immagine del profilo attuale" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Carica Foto:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "salta questo passaggio" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "seleziona una foto dai tuoi album" @@ -12739,124 +12757,100 @@ msgstr "slackr" msgid "Variations" msgstr "Varianti" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Chiaro (Con accenti)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Scuro (Con accenti)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Nero (Con accenti)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Controlla i permessi dell'immagine che tutti gli utenti possano vederla" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Personalizzato" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Precedente" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Con accenti" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Seleziona lo schema colori" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Seleziona accento schema" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Blu" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Rosso" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Viola" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Copia o incolla stringa di schema" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puoi copiare questa stringa per condividere il tuo tema con altri. Incollarla qui applica la stringa di schema" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Colore di sfondo barra di navigazione" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Colore icona barra di navigazione" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Colore collegamento" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Imposta il colore di sfondo" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Trasparenza sfondo contenuto" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Imposta l'immagine di sfondo" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Stile immagine di sfondo" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Immagine di sfondo per la pagina di accesso" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Colore di sfondo della pagina di accesso" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Lascia l'immagine e il colore di sfondo vuoti per usare le impostazioni predefinite del tema" @@ -12896,19 +12890,35 @@ msgstr "Mosaico" msgid "Repeat image to fill the screen." msgstr "Ripete l'immagine per riempire lo schermo." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Salta al contenuto principale" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Torna all'inizio" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Personalizzato" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Ospite" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Visitatore" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index eec81aecca..3588ef14a2 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -406,8 +406,6 @@ $a->strings['Admin'] = 'Amministrazione'; $a->strings['Site setup and configuration'] = 'Configurazione del sito'; $a->strings['Navigation'] = 'Navigazione'; $a->strings['Site map'] = 'Mappa del sito'; -$a->strings['Embedding disabled'] = 'Embed disabilitato'; -$a->strings['Embedded content'] = 'Contenuto incorporato'; $a->strings['first'] = 'primo'; $a->strings['prev'] = 'prec'; $a->strings['next'] = 'succ'; @@ -560,7 +558,6 @@ $a->strings['No TLS detected'] = 'TLS non rlevato'; $a->strings['TLS detected'] = 'TLS rilevato'; $a->strings['ImageMagick PHP extension is not installed'] = 'L\'estensione PHP ImageMagick non è installata'; $a->strings['ImageMagick PHP extension is installed'] = 'L\'estensione PHP ImageMagick è installata'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick supporta i GIF'; $a->strings['Database already in use.'] = 'Database già in uso.'; $a->strings['Could not connect to database.'] = ' Impossibile collegarsi con il database.'; $a->strings['Monday'] = 'Lunedì'; @@ -2305,16 +2302,8 @@ $a->strings['darkzero'] = 'darkzero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'Varianti'; -$a->strings['Light (Accented)'] = 'Chiaro (Con accenti)'; -$a->strings['Dark (Accented)'] = 'Scuro (Con accenti)'; -$a->strings['Black (Accented)'] = 'Nero (Con accenti)'; $a->strings['Note'] = 'Note'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Controlla i permessi dell\'immagine che tutti gli utenti possano vederla'; -$a->strings['Custom'] = 'Personalizzato'; -$a->strings['Legacy'] = 'Precedente'; -$a->strings['Accented'] = 'Con accenti'; -$a->strings['Select color scheme'] = 'Seleziona lo schema colori'; -$a->strings['Select scheme accent'] = 'Seleziona accento schema'; $a->strings['Blue'] = 'Blu'; $a->strings['Red'] = 'Rosso'; $a->strings['Purple'] = 'Viola'; @@ -2342,6 +2331,7 @@ $a->strings['Mosaic'] = 'Mosaico'; $a->strings['Repeat image to fill the screen.'] = 'Ripete l\'immagine per riempire lo schermo.'; $a->strings['Skip to main content'] = 'Salta al contenuto principale'; $a->strings['Back to top'] = 'Torna all\'inizio'; +$a->strings['Custom'] = 'Personalizzato'; $a->strings['Guest'] = 'Ospite'; $a->strings['Visitor'] = 'Visitatore'; $a->strings['Alignment'] = 'Allineamento'; diff --git a/view/lang/ja/messages.po b/view/lang/ja/messages.po index 3922f46f24..2d86ced2f5 100644 --- a/view/lang/ja/messages.po +++ b/view/lang/ja/messages.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: XMPPはいいぞ, 2021\n" "Language-Team: Japanese (http://app.transifex.com/Friendica/friendica/language/ja/)\n" @@ -43,14 +43,14 @@ msgstr "項目を取得できませんでした。" msgid "Empty post discarded." msgstr "空の投稿は破棄されました。" -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "見つかりませんでした。" -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -73,14 +73,14 @@ msgstr "見つかりませんでした。" #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "必要な権限が有りません。" @@ -245,7 +245,7 @@ msgstr "メッセージの収集に失敗しました。" msgid "Discard" msgstr "捨てる" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "メッセージ" @@ -290,20 +290,20 @@ msgstr "写真をアップロード" msgid "Insert web link" msgstr "webリンクを挿入" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "お待ち下さい" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -317,7 +317,7 @@ msgstr "お待ち下さい" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "送信する" @@ -387,7 +387,7 @@ msgstr "個人メモは自分自身によってのみ見えます。" msgid "Save" msgstr "保存する" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -400,99 +400,99 @@ msgid "User not found." msgstr "ユーザーが見つかりません。" #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "フォトアルバム" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "最近の写真" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "新しい写真をアップロード" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "みなさん" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "コンタクト情報は利用できません" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "アルバムが見つかりません。" -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "アルバムを削除しました" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "アルバムは空でした。" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "写真を削除できませんでした" -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "写真" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$sが%2$sで%3$sによってタグ付けされました" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "パブリックアクセスが拒否されました。" -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "写真が選択されていません" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "写真をアップロードする" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "新しいアルバム名:" -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "または既存のアルバムを選択:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "このアップロードのステータス投稿を表示しません" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "許可" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "このフォトアルバムとそのすべての写真を本当に削除しますか?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "アルバムを削除" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -502,133 +502,133 @@ msgstr "アルバムを削除" msgid "Cancel" msgstr "キャンセル" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "アルバムを編集" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "アルバムを削除" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "新しいもの順に表示" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "最も古いものを最初に表示" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "写真を見る" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "アクセス拒否。この項目へのアクセスは制限される場合があります。" -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "写真は利用できません" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "この写真を本当に削除しますか?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "写真を削除" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "写真を見る" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "写真を編集する" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "写真を削除" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "プロフィール写真として使用" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "プライベート写真" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "フルサイズを表示" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "タグ:" -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[削除するタグを選択]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "新しいアルバム名" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "キャプション" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "タグを追加する" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "例:@ bob、@ Barbara_Jensen、@ jim @ example.com、#California、#camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "回転させないでください" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "CWを回転(右)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "CCWを回転(左)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "これはあなたです" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "コメント" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "プレビュー" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "読み込み中…" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "選択" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -637,23 +637,23 @@ msgstr "選択" msgid "Delete" msgstr "削除" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "いいね" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "私はこれが好きです(トグル)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "嫌い" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "気に入らない(トグル)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "地図" @@ -794,18 +794,18 @@ msgid "All contacts" msgstr "すべてのコンタクト" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "フォロワー" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "フォロー中" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1083,7 +1083,7 @@ msgstr "RSS / Atom" msgid "Email" msgstr "Eメール" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "ディアスポラ" @@ -1549,29 +1549,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1749,7 +1757,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1758,12 +1766,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "もっと見せる" @@ -1771,7 +1779,7 @@ msgstr "もっと見せる" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "イベント" @@ -1779,7 +1787,7 @@ msgstr "イベント" msgid "status" msgstr "ステータス" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "写真" @@ -1789,36 +1797,36 @@ msgstr "写真" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s が %2$s の %3$s を %4$s としてタグ付けしました" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "このスレッドをフォロー" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "ステータスを見る" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "プロフィールを見る" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "写真を見る" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "ネットワーク投稿" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "コンタクトを見る" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "PMを送る" @@ -1854,7 +1862,7 @@ msgid "Languages" msgstr "言語" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "つながる/フォローする" @@ -1908,42 +1916,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "プロフィール" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "あなたのプロフィールページ" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "写真" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "あなたの写真" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "カレンダー" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2013,7 +2021,7 @@ msgstr "タグ" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "コンタクト" @@ -2052,15 +2060,15 @@ msgstr "利用規約" msgid "Terms of Service of this Friendica instance" msgstr "このFriendicaインスタンスの利用規約" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "ネットワーク" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "友達からの会話" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "あなたの投稿と会話" @@ -2089,7 +2097,7 @@ msgstr "既読にする" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "プライベートメール" @@ -2111,15 +2119,15 @@ msgstr "他のページを管理する" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "設定" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "アカウント設定" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "友達とコンタクトを管理/編集する" @@ -2157,14 +2165,6 @@ msgstr "ナビゲーション" msgid "Site map" msgstr "サイトマップ" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "埋め込みが無効です" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "埋め込みコンテンツ" - #: src/Content/Pager.php:216 msgid "first" msgstr "最初" @@ -2181,38 +2181,38 @@ msgstr "次" msgid "last" msgstr "最終" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "画像/写真" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "クリックして開閉" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 の投稿:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "暗号化されたコンテンツ" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "無効なソースプロトコル" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "無効なリンクプロトコル" @@ -2294,89 +2294,89 @@ msgstr "グローバルディレクトリ" msgid "Local Directory" msgstr "ローカルディレクトリ" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "関係" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "すべてのコンタクト" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "プロトコル" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "すべてのプロトコル" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "保存されたフォルダー" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "すべて" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "カテゴリー" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "共通の %d 件のコンタクト" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "アーカイブ" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "ニュース" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "アカウントの種類" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2424,12 +2424,12 @@ msgstr[0] "トレンドタグ(過去%d時間)" msgid "More Trending Tags" msgstr "よりトレンドのタグ" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2445,7 +2445,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2457,13 +2457,13 @@ msgstr "ロケーション:" msgid "Network:" msgstr "ネットワーク:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "フォロー解除" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2836,27 +2836,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP拡張機能がインストールされていません" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP拡張機能がインストールされています" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagickはGIFをサポートします" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "データベースはすでに使用されています。" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "データベースに接続できません。" -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2866,37 +2862,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "月曜" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "火曜日" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "水曜日" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "木曜日" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "金曜日" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "土曜日" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "日曜日" @@ -3234,47 +3230,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "承認する" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "組織" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "中継" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "許可されていないプロフィールURL。" -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "ブロックされたドメイン" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "接続URLがありません。" -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "コンタクトを追加できませんでした。ページの \"設定\" -> \"ソーシャルネットワーク\" で、関連するネットワーク認証情報を確認してください。" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "指定されたプロフィールアドレスは、適切な情報を提供しません。" @@ -3322,12 +3322,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "開始:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "終了:" @@ -3345,17 +3345,17 @@ msgid "today" msgstr "今日" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "月" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "週間" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "日" @@ -3400,105 +3400,105 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "地図を表示" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "地図を隠す" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%sの誕生日" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "ハッピーバースデー %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "アクティビティ" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "投稿" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "コンテンツの警告: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "バイト" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "個別のページで見る" @@ -3506,7 +3506,7 @@ msgstr "個別のページで見る" msgid "[no subject]" msgstr "[件名なし]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "ウォール写真" @@ -3788,11 +3788,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "プロフィール写真" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3800,7 +3800,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3831,12 +3831,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "%s の登録の詳細" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3851,12 +3851,12 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s さん、\n\t\t\t\t%2$s に登録していただきありがとうございます。アカウントは管理者による承認待ちです。\n\n\t\t\tログインの詳細は次のとおりです。\n\n\t\t\tサイトの場所:\t%3$s\n\t\t\tログイン名:\t\t%4$s\n\t\t\tパスワード:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "%s登録" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3865,7 +3865,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t%1$sさん、\n\t\t\t\t%2$sで登録していただきありがとうございます。アカウントが作成されました。\n\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3896,7 +3896,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3921,14 +3921,14 @@ msgid "Disable" msgstr "無効にする" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "有効にする" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3968,12 +3968,12 @@ msgid "Addon %s failed to install." msgstr "アドオン %s のインストールに失敗しました。" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "設定を保存" @@ -4160,8 +4160,8 @@ msgid "Enable Debugging" msgstr "デバッグを有効にする" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4322,269 +4322,269 @@ msgstr "作成した" msgid "Priority" msgstr "優先度" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "モバイルデバイス向けの特別なテーマはありません" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s (実験的)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "コミュニティページなし" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "このサイトのユーザーからの一般公開投稿" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "フェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "ローカルユーザーとフェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "マルチユーザーインスタンス" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "閉まっている" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "承認が必要" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "開いた" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "チェックしない" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "安定版を確認してください" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "開発バージョンを確認する" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "サイト" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "ユーザーをディレクトリに再公開する" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "登録" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "ファイルのアップロード" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "ポリシー" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "詳細" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "自動検出されたコンタクトディレクトリ" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "性能" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "ワーカー" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "メッセージ中継" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "サイト名" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "送信者のメール" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "サーバーが通知メールの送信に使用するメールアドレス。" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "バナー/ロゴ" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "ショートカットアイコン" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "ブラウザーに使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "タッチアイコン" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "タブレットやモバイルで使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "追加情報" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "パブリックサーバーの場合:追加の情報をここに追加して、 %s/servers にリストできます。" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "システム言語" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "システムテーマ" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "モバイルシステムのテーマ" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "モバイルデバイスのテーマ" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "SSLを強制する" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "すべての非SSL要求をSSLに強制する-注意:一部のシステムでは、無限ループにつながる可能性があります。" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "シングルユーザーインスタンス" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "指定されたユーザーに対してこのインスタンスをマルチユーザーまたはシングルユーザーにします" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "最大画像サイズ" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4592,35 +4592,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "最大画像長" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "アップロードされた画像の最長辺のピクセル単位の最大長。デフォルトは-1で、制限がないことを意味します。" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "JPEG画像品質" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "アップロードされたJPEGSは、この品質設定[0-100]で保存されます。デフォルトは100で、完全な品質です。" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "登録ポリシー" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4628,157 +4628,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "毎日の最大登録数" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "上記で登録が許可されている場合、これは1日に受け入れる新しいユーザー登録の最大数を設定します。レジスタがクローズに設定されている場合、この設定は効果がありません。" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "登録テキスト" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "登録ページに目立つように表示されます。ここでBBCodeを使用できます。" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "禁止されたニックネーム" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "登録が禁止されているニックネームのカンマ区切りリスト。プリセットは、RFC 2142に基づくロール名のリストです。" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "x日の間 放置されたアカウント" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "放置アカウントの外部サイトについてポーリングを停止しシステムリソースを節約します。時間制限なしの場合は0を入力します。" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "許可された友達ドメイン" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "このサイトとの友達関係を確立できるドメインのカンマ区切りリスト。ワイルドカードが使用できます。すべてのドメインを許可するには空白にしてください。" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "許可されたメールドメイン" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが使用できます。すべてのドメインを許可するには空白にしてください。" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "OEmbed リッチコンテンツなし" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "以下にリストされているドメインを除き、リッチコンテンツ(埋め込みPDFなど)を表示しないでください。" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "一般公開をブロック" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "このサイトの一般公開済み個人ページを除き、すべてのページで非ログイン状態のアクセスをブロックするには、ここをチェックします。" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "公開を強制する" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "このサイトのすべてのプロフィールがサイトディレクトリにリストされるように強制するには、チェックします。" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "これを有効にすると、GDPRなどのプライバシー法に違反する可能性があります。" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "グローバルディレクトリURL" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "グローバルディレクトリへのURL。これが設定されていない場合、グローバルディレクトリはアプリケーションで全く利用できなくなります。" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "新規ユーザー向けの 既定のプライベート投稿" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "メール通知に投稿本文を含めないでください" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "プライバシー対策として、このサイトから送信されるメール通知に投稿/コメント/プライベートメッセージなどのコンテンツを含めないでください。" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "アプリメニューにリストされているアドオンへの公開アクセスを許可しません。" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "このチェックボックスをオンにすると、アプリメニューにリストされているアドオンがメンバーのみに制限されます。" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "投稿にプライベート画像を埋め込まないでください" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4786,11 +4796,11 @@ msgid "" "while." msgstr "投稿内のローカルでホストされているプライベート写真を画像の埋め込みコピーで置き換えないでください。つまり、プライベート写真を含む投稿を受け取ったコンタクトは、各画像を認証して読み込む必要があり、時間がかかる場合があります。" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "明示的なコンテンツ" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4799,339 +4809,339 @@ msgid "" "will be shown at the user registration page." msgstr "これを設定して、このノードが主に未成年者には適さない可能性のある露骨なコンテンツを目的とすることを通知します。この情報はノード情報で公開され、たとえばグローバルディレクトリによって使用され、参加するノードのリストからノードをフィルタリングします。さらに、これに関するメモがユーザー登録ページに表示されます。" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "ユーザーがremote_selfを設定できるようにする" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "これをチェックすると、すべてのユーザーがコンタクトの修復ダイアログですべてのコンタクトをremote_selfとしてマークできます。コンタクトにこのフラグを設定すると、ユーザーストリームでそのコンタクトのすべての投稿がミラーリングされます。" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "訪問者向けのコミュニティページ" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "訪問者が利用できるコミュニティページ。ローカルユーザーには常に両方のページが表示されます。" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "コミュニティページのユーザーごとの投稿" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Friendicaがサブディレクトリにインストールされたため、Diasporaサポートを有効にできません。" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Diasporaサポートを有効にする" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "SSLを検証する" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "必要に応じて、厳密な証明書チェックをオンにすることができます。これは、自己署名SSLサイトに(まったく)接続できないことを意味します。" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "プロキシユーザー" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "プロキシURL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "ネットワークタイムアウト" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "値は秒単位です。無制限の場合は0に設定します(推奨されません)。" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "最大負荷平均" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "このシステム 負荷/Load を超えると、配信・ポーリングプロセスの実行は延期されます。 - 既定の値は%dです。" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "最小限のメモリ" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "ワーカーの最小空きメモリ(MB)。 / proc / meminfoへのアクセスが必要-デフォルトは0(無効)。" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "他のサーバーからコンタクトを発見する" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "再クエリの間隔" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "ローカルディレクトリを検索する" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "グローバルディレクトリではなくローカルディレクトリを検索します。ローカルで検索する場合、すべての検索はバックグラウンドでグローバルディレクトリで実行されます。これにより、同じ検索を繰り返した場合の検索結果が改善されます。" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "サーバー情報を公開する" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5139,50 +5149,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "有効にすると、一般的なサーバーと使用状況データが公開されます。データには、サーバーの名前とバージョン、パブリックプロフィールを持つユーザーの数、投稿の数、およびアクティブ化されたプロトコルとコネクタが含まれます。詳細については、 the-federation.info をご覧ください。" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "アップストリームバージョンを確認する" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "githubで新しいFriendicaバージョンのチェックを有効にします。新しいバージョンがある場合は、管理パネルの概要で通知されます。" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "タグを非表示" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "投稿の最後にハッシュタグのリストを表示しないようにします。" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "データベースを消去" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "古いリモート項目、孤立したデータベースレコード、および古いコンテンツを他のヘルパーテーブルから削除します。" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "リモート項目の寿命" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "データベースのクリーンアップが有効な場合、これはリモート項目が削除されるまでの日数を定義します。自身の項目、およびマークまたはファイルされた項目は常に保持されます。 0はこの動作を無効にします。" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "請求されていない項目の寿命" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5190,175 +5200,175 @@ msgid "" "items if set to 0." msgstr "データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Raw会話データの寿命" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "会話データは、ActivityPubおよびOStatusに使用されるほか、デバッグにも使用されます。 14日後に削除しても安全です。デフォルトは90日です。" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "投稿あたりのコメントの最大数" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "各投稿に表示されるコメントの数は?デフォルト値は100です。" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "一時パス" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Webサーバーがシステムの一時パスにアクセスできない制限されたシステムがある場合は、ここに別のパスを入力します。" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "タグでのみ検索" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "大規模なシステムでは、テキスト検索によりシステムの速度が著しく低下する可能性があります。" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "並列ワーカーの最大数" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "共有ホスティング事業者では、これを%dに設定します。大規模なシステムでは、 %dの値は素晴らしいでしょう。既定の値は%dです。" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "fastlaneを有効にする" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "有効にすると、優先度の高いプロセスが優先度の低いプロセスによってブロックされた場合、fastlaneメカニズムは追加のワーカーを開始します。" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5366,153 +5376,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "直接中継転送" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "中継サーバーを使用せずに他のサーバーに直接転送できるようにします" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "中継スコープ" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "\"all \"または\"tags \"にすることができます。 「すべて」は、すべての一般公開投稿を受信することを意味します。 「タグ」は、選択したタグのある投稿のみを受信することを意味します。" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "無効" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "すべて" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "タグ" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "サーバータグ" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "\"tags \"サブスクリプションのタグのコンマ区切りリスト。" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "ユーザータグを許可する" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "有効にすると、保存された検索のタグが、\"relay_server_tags \"に加えて\"tags \"サブスクリプションに使用されます。" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "再配置を開始" @@ -6096,11 +6106,11 @@ msgstr "" msgid "Failed to remove event" msgstr "イベントを削除できませんでした" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "イベントは開始する前に終了できません。" -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "イベントのタイトルと開始時間が必要です。" @@ -6192,7 +6202,7 @@ msgstr "表示する" msgid "Create New Event" msgstr "新しいイベントを作成" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "リスト" @@ -6834,7 +6844,7 @@ msgid "Actions" msgstr "操作" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "状態" @@ -7006,33 +7016,33 @@ msgstr "コミュニティオプションは利用できません。" msgid "Not available." msgstr "利用不可。" -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7064,7 +7074,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7074,179 +7084,179 @@ msgstr[0] "エラー" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "ソース入力" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode :: toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode :: convert(生のHTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode :: convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode :: convert => HTML :: toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode :: toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode :: toMarkdown => Markdown :: convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode :: toMarkdown => Markdown :: toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode :: toMarkdown => Markdown :: convert => HTML :: toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "項目本体" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "項目タグ" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "ソース入力(Diaspora形式)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown :: convert(生のHTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown :: convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown :: toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "生のHTML入力" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "HTML入力" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML :: toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML :: toBBCode => BBCode :: convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML :: toBBCode => BBCode :: convert(生のHTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML :: toBBCode => BBCode :: toPlaintext" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML :: toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML :: toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "HTML :: toPlaintext(コンパクト)" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "ソーステキスト" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "マークダウン" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7754,7 +7764,7 @@ msgstr "ファイル" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "アップロードする" @@ -7775,14 +7785,14 @@ msgstr "ファイルサイズ上限 %s を超えています。" msgid "File upload failed." msgstr "アップロードが失敗しました。" -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "画像を処理できません。" -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "画像アップロードに失敗しました。" @@ -8802,7 +8812,7 @@ msgstr "このアプリケーションによる、あなたの投稿・コンタ msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8813,11 +8823,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -8942,21 +8952,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "ID%sの写真は利用できません" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "ID %s の写真が無効です。" @@ -9008,27 +9018,27 @@ msgstr "コンタクトはありません。" #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "%sのタイムライン" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "%sの投稿" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "%sのコメント" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "画像サイズ上限 %s を超えています。" @@ -9047,11 +9057,11 @@ msgid "" "administrator" msgstr "サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "画像ファイルが空です。" -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "アルバムを見る" @@ -10113,12 +10123,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "説明" @@ -10516,181 +10526,189 @@ msgstr "移譲先の候補" msgid "No entries." msgstr "エントリは有りません。" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "選択したテーマは使用できません。" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s (サポートされていません)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "ディスプレイの設定" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "一般的なテーマ設定" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "カスタムテーマ設定" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "コンテンツ設定" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "テーマ設定" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "ディスプレイテーマ:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "モバイルテーマ:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "ページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "最大100項目" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "モバイルデバイスから表示したときにページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "xx秒ごとにブラウザーを更新する" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "10秒以上。 -1を入力して無効にします。" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "無限スクロール" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "ページの最後に到達したとき、新規項目を自動取得する" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "週の始まり:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10855,7 +10873,7 @@ msgstr "(プロフィールの検索に使用され、他のユーザーには #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "画像サイズの縮小[ %s ]に失敗しました。" @@ -10895,31 +10913,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "プロフィール画像をアップロード" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "または" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "このステップを飛ばす" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "フォトアルバムから写真を選択する" @@ -12617,124 +12635,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "スキーム文字列のコピーまたは貼り付け" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "この文字列をコピーして、テーマを他の人と共有できます。ここに貼り付けると、スキーム文字列が適用されます" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "ナビゲーションバーの背景色" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12774,19 +12768,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/ja/strings.php b/view/lang/ja/strings.php index 713a34e444..fd8daa9621 100644 --- a/view/lang/ja/strings.php +++ b/view/lang/ja/strings.php @@ -381,8 +381,6 @@ $a->strings['Admin'] = '管理者'; $a->strings['Site setup and configuration'] = 'サイトのセットアップと構成'; $a->strings['Navigation'] = 'ナビゲーション'; $a->strings['Site map'] = 'サイトマップ'; -$a->strings['Embedding disabled'] = '埋め込みが無効です'; -$a->strings['Embedded content'] = '埋め込みコンテンツ'; $a->strings['first'] = '最初'; $a->strings['prev'] = '前の'; $a->strings['next'] = '次'; @@ -506,7 +504,6 @@ $a->strings['Error message from Curl when fetching'] = '取得時のCurlから $a->strings['Url rewrite is working'] = 'URLの書き換えが機能しています'; $a->strings['ImageMagick PHP extension is not installed'] = 'ImageMagick PHP拡張機能がインストールされていません'; $a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP拡張機能がインストールされています'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagickはGIFをサポートします'; $a->strings['Database already in use.'] = 'データベースはすでに使用されています。'; $a->strings['Could not connect to database.'] = 'データベースに接続できません。'; $a->strings['Monday'] = '月曜'; diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index ffca9d5d1a..39245f64f2 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Casper , 2019-2020\n" "Language-Team: Dutch (http://app.transifex.com/Friendica/friendica/language/nl/)\n" @@ -50,14 +50,14 @@ msgstr "Item kan niet worden opgehaald." msgid "Empty post discarded." msgstr "Lege post weggegooid." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Item niet gevonden." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -80,14 +80,14 @@ msgstr "Item niet gevonden." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Toegang geweigerd" @@ -252,7 +252,7 @@ msgstr "Fout bij het verzamelen van berichten." msgid "Discard" msgstr "Verwerpen" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Privéberichten" @@ -297,20 +297,20 @@ msgstr "Foto uploaden" msgid "Insert web link" msgstr "Voeg een webadres in" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Even geduld" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -324,7 +324,7 @@ msgstr "Even geduld" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Verstuur" @@ -395,7 +395,7 @@ msgstr "" msgid "Save" msgstr "Bewaren" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -408,99 +408,99 @@ msgid "User not found." msgstr "Gebruiker niet gevonden." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Fotoalbums" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Recente foto's" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "iedereen" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Contactinformatie niet beschikbaar" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Album niet gevonden" -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album succesvol gedeeld" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Het album was leeg" -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Foto verwijderen mislukt." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "een foto" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s is gelabeld in %2$s door %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Niet vrij toegankelijk" -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Upload foto's" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nieuwe albumnaam: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "Of selecteer bestaand album:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Toon geen bericht op je tijdlijn van deze upload" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Rechten" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Verwijder album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -510,133 +510,133 @@ msgstr "Verwijder album" msgid "Cancel" msgstr "Annuleren" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Album wijzigen" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Album verwijderen" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Toon niewste eerst" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Toon oudste eerst" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Bekijk foto" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Foto is niet beschikbaar" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Wil je echt deze foto verwijderen?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Verwijder foto" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Bekijk foto" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Bewerk foto" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Foto verwijderen" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Gebruik als profielfoto" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Privé foto" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Bekijk in volledig formaat" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Labels: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Selecteer tags om te verwijderen]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nieuwe albumnaam" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Onderschrift" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Een label toevoegen" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Niet roteren" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Roteren met de klok mee (rechts)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Roteren tegen de klok in (links)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Dit ben jij" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Reacties" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Voorvertoning" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Aan het laden..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Kies" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -645,23 +645,23 @@ msgstr "Kies" msgid "Delete" msgstr "Verwijder" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Vind ik leuk" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Kaart" @@ -802,18 +802,18 @@ msgid "All contacts" msgstr "Alle contacten" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Volgers" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Volgend" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1091,7 +1091,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1569,29 +1569,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1769,7 +1777,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1778,12 +1786,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "toon meer" @@ -1791,7 +1799,7 @@ msgstr "toon meer" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "gebeurtenis" @@ -1799,7 +1807,7 @@ msgstr "gebeurtenis" msgid "status" msgstr "status" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "foto" @@ -1809,36 +1817,36 @@ msgstr "foto" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s labelde %3$s van %2$s met %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Gesprek volgen" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Bekijk status" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Bekijk profiel" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Bekijk foto's" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Netwerkberichten" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Bekijk contact" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Stuur een privébericht" @@ -1874,7 +1882,7 @@ msgid "Languages" msgstr "" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Verbind/Volg" @@ -1928,42 +1936,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profiel" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Jouw profiel pagina" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Foto's" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Jouw foto's" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Kalender" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2033,7 +2041,7 @@ msgstr "Labels" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Contacten" @@ -2072,15 +2080,15 @@ msgstr "Gebruiksvoorwaarden" msgid "Terms of Service of this Friendica instance" msgstr "Gebruiksvoorwaarden op deze Friendica server" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Netwerk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Gesprekken van je vrienden" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Jouw berichten en gesprekken" @@ -2109,7 +2117,7 @@ msgstr "Als 'gelezen' markeren" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Privéberichten" @@ -2131,15 +2139,15 @@ msgstr "Andere pagina's beheren" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Instellingen" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Account instellingen" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Beheer/Wijzig vrienden en contacten" @@ -2177,14 +2185,6 @@ msgstr "Navigatie" msgid "Site map" msgstr "Sitemap" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Inbedden uitgeschakeld" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Ingebedde inhoud" - #: src/Content/Pager.php:216 msgid "first" msgstr "eerste" @@ -2201,38 +2201,38 @@ msgstr "volgende" msgid "last" msgstr "laatste" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Afbeelding/foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "klik om te openen/sluiten" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 schreef:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Versleutelde inhoud" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Ongeldig bron protocol" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Ongeldig verbinding protocol" @@ -2315,90 +2315,90 @@ msgstr "Globale gids" msgid "Local Directory" msgstr "Lokale gids" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Iedereen" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Relaties" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Alle Contacten" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protocollen" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Alle protocollen" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Bewaarde Mappen" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Alles" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Categorieën" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gedeeld contact" msgstr[1] "%d gedeelde contacten" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archieven" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Nieuws" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Account Types" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2448,12 +2448,12 @@ msgstr[1] "Populaire Tags (laatste %d uur)" msgid "More Trending Tags" msgstr "Meer Populaire Tags" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" @@ -2469,7 +2469,7 @@ msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2481,13 +2481,13 @@ msgstr "Plaats:" msgid "Network:" msgstr "Netwerk:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Stop volgen" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2860,27 +2860,23 @@ msgstr "" msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extensie is niet geïnstalleerd" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extensie is geïnstalleerd" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick ondersteunt GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Database al in gebruik." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Kon geen toegang krijgen tot de database." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2890,37 +2886,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Maandag" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Dinsdag" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Woensdag" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Donderdag" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Vrijdag" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Zaterdag" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Zondag" @@ -3258,47 +3254,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Goedkeuren" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organisatie" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Niet toegelaten profiel adres." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Domein geblokeerd" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Connectie URL ontbreekt." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Het opgegeven profiel adres bevat geen adequate informatie." @@ -3346,12 +3346,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Begint:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Eindigt:" @@ -3369,17 +3369,17 @@ msgid "today" msgstr "vandaag" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "maand" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "week" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "dag" @@ -3424,109 +3424,109 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Toon kaart" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Verberg kaart" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%s's verjaardag" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Gefeliciteerd %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "activiteit" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "bericht" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Waarschuwing inhoud: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Bekijk op aparte pagina" @@ -3534,7 +3534,7 @@ msgstr "Bekijk op aparte pagina" msgid "[no subject]" msgstr "[geen onderwerp]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Tijdlijn foto's" @@ -3818,11 +3818,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Profielfoto's" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3830,7 +3830,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tBeste %1$s,\n\t\t\tde administrator van %2$s heeft een gebruiker voor je aangemaakt." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3861,12 +3861,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Registratie details voor %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3881,12 +3881,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tBedankt voor uw registratie op %2$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3$s\n\t\t\tGebruikersnaam:\t\t%4$s\n\t\t\tWachtwoord:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Registratie bij %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3895,7 +3895,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\tBedankt voor je inschrijving op %2$s. Je gebruiker is aangemaakt.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3926,7 +3926,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3951,14 +3951,14 @@ msgid "Disable" msgstr "Uitschakelen" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Inschakelen" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3998,12 +3998,12 @@ msgid "Addon %s failed to install." msgstr "Installatie Addon %s is mislukt." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Instellingen opslaan" @@ -4198,8 +4198,8 @@ msgid "Enable Debugging" msgstr "Activeer Debugging" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4360,269 +4360,269 @@ msgstr "Aangemaakt" msgid "Priority" msgstr "Prioriteit" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Geen speciaal thema voor mobiele apparaten" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimenteel)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Geen groepspagina" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Publieke berichten van gebruikers van deze site" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Publieke berichten van het gefedereerde netwerk" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Server voor meerdere gebruikers" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Gesloten" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Toestemming vereist" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Open" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Geen rekening mee houden" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "Neem de stabiele versie in rekening" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "Neem de ontwikkel versie in rekening" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "geen" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Website" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Opnieuw de gebruikers naar de gids publiceren" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registratie" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Uploaden bestand" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Beleid" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Geavanceerd" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Automatisch Achterhaalde Contact Gids" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Performantie" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Boodschap Relais" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Site naam" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Verzender Email" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "Het email adres als afzender van notificatie emails." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Snelkoppeling icoon" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Link naar een icoon dat zal gebruikt worden voor browsers." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Pictogram voor smartphones" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link naar een icoon dat zal gebruikt worden voor tablets en mobiele telefoons." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Bijkomende Info" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Voor publieke servers: je kan bijkomende informatie hier toevoegen die zal opgelijst zijn op %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Systeemtaal" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Systeem thema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Mobiel systeem thema" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Dwing SSL af" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Server voor één gebruiker" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker." -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Maximum afbeeldingsgrootte" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4630,35 +4630,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Maximum afbeeldingslengte" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "JPEG afbeeldingskwaliteit" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Registratiebeleid" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4666,157 +4666,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Maximum aantal registraties per dag" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Registratietekst" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Verboden bijnamen" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Verlaten accounts na x dagen" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Toegelaten vriend domeinen" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Toegelaten e-mail domeinen" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Geen OEmbed richt content" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Dwing publiceren af" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "Algemene gids URL" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Privéberichten als standaard voor nieuwe gebruikers" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Privé beelden in berichten niet inwerken" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4824,11 +4834,11 @@ msgid "" "while." msgstr "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Expliciete inhoud" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4837,339 +4847,339 @@ msgid "" "will be shown at the user registration page." msgstr "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Sta Gebruikers toe om remote_self te configureren" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. " -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Groepspagina voor bezoekers" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Berichten per gebruiker op de groepspagina" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Diaspora ondersteuning activeren" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Controleer SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy-gebruiker" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Netwerk timeout" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Maximum gemiddelde belasting" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Minimaal Geheugen" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Ontdek contacten van andere servers" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Dagen tussen herbevraging" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Doorzoek de lokale gids" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Doorzoek de lokale gids in plaats van de globale gids. Bij lokale doorzoeking wordt elke opzoeking in de globale gids op de achtergrond uitgevoerd. Dit verbetert de zoekresultaten wanneer de zoekopdracht herhaald wordt." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Publiceer server informatie" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5177,50 +5187,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Controleer upstream versie" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Activeer het controleren op nieuwe versies van Friendica bij github. Als er een nieuwe versie is, dan word je geïnformeerd in the administratie paneel." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Onderdruk Tags" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Onderdruk het tonen van een lijst van hastags op het einde van het bericht." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Database opruimen" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Verwijder oude remote items, database weesrecords en oude content van andere helper tabellen." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Levensduur van remote items" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Als de database opruiming is geactiveerd, dan definieert dit na hoeveel dagen remote items verwijderd zullen worden. Eigen items, en gemarkeerde of opgeslagen items worden altijd behouden. 0 deactiveert dit gedrag." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Levensduur van niet geclaimde items" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5228,175 +5238,175 @@ msgid "" "items if set to 0." msgstr "Als de database opruiming geactiveerd is, dan definieert dit na hoeveel dagen ongeclaimde remote items (meestal content van een relais) zal verwijderd worden. Standaard waarde is 90 dagen. Als de waarde 0 is, dan is de waarde gelijk aan de algemene levensduur van remote items." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Levenstijd van ruwe gespreksdata" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "De gespreksdata word gebruikt voor ActivityPub, OStatus en voor debugging doeleinden. Het is veilig om dit na 14 dagen te verwijderen. Standaard staat dit op 90 dagen." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Maximum aantal reacties per bericht" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Tijdelijk pad" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Als je een systeem met restricties hebt waarbij de webserver geen toegang heeft tot het systeem pad, geef hier dan een ander pad in. " -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Zoek alleen in tags" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "Het opzoeken van tekst kan grote systemen extreem vertragen." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Maximum aantal parallelle workers" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Op gedeelde hosts zet dit op %d. Op grotere systemen, waarden als %d zijn goed. standaard waarde is %d" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Activeer fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Als deze parameter geactiveerd is, dan start het fastlane mechanisme een bijkomende worker als processen met hogere prioriteit geblokkeerd worden door processen met een lagere prioriteit." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5404,153 +5414,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Directe relais transfer" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Activeert directe relais transfer naar andere servers zonder gebruik van relais servers" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Scope van de relais" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Uitgeschakeld" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "alle" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Server tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Sta gebruiker tags toe." -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Start verhuis" @@ -6138,11 +6148,11 @@ msgstr "" msgid "Failed to remove event" msgstr "Kon remote event niet verwijderen" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Gebeurtenis kan niet eindigen voor het begin." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Titel en begintijd van de gebeurtenis zijn vereist." @@ -6234,7 +6244,7 @@ msgstr "Beeld" msgid "Create New Event" msgstr "Maak een nieuwe gebeurtenis" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "lijst" @@ -6882,7 +6892,7 @@ msgid "Actions" msgstr "Acties" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Tijdlijn" @@ -7054,33 +7064,33 @@ msgstr "Groepsoptie niet beschikbaar" msgid "Not available." msgstr "Niet beschikbaar" -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "" @@ -7112,7 +7122,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7123,179 +7133,179 @@ msgstr[1] "Fouten" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Bron input" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Bron ingave (Diaspora formaat):" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (Ruwe HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Onverwerkte HTML input" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "HTML Input" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (Ruwe HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Brontekst" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7804,7 +7814,7 @@ msgstr "Bestanden" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Uploaden" @@ -7825,14 +7835,14 @@ msgstr "Bestand is groter dan de limiet ( %s )" msgid "File upload failed." msgstr "Uploaden van bestand mislukt." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Niet in staat om de afbeelding te verwerken" -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Uploaden van afbeelding mislukt." @@ -8865,7 +8875,7 @@ msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8876,11 +8886,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -9005,21 +9015,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "De foto met id %s is niet beschikbaar" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Ongeldige foto met ID %s" @@ -9071,27 +9081,27 @@ msgstr "Geen contacten." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Tijdslijn van %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Berichten van %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "reactie van %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Beeld is groter dan de limiet ( %s )" @@ -9110,11 +9120,11 @@ msgid "" "administrator" msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Album bekijken" @@ -10177,12 +10187,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Omschrijving" @@ -10580,181 +10590,189 @@ msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " msgid "No entries." msgstr "Geen gegevens." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Het thema dat je koos is niet beschikbaar" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Niet ondersteund)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Scherminstellingen" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Algemene Thema Instellingen" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Speciale Thema Instellingen" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Content Instellingen" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Thema-instellingen" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Schermthema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Aantal items te tonen per pagina:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maximum 100 items" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Browser elke xx seconden verversen" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 seconden. Geef -1 op om te deactiveren." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Oneindig scrollen" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Begin van de week:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10919,7 +10937,7 @@ msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleining van de afbeelding [%s] mislukt." @@ -10959,31 +10977,31 @@ msgstr "Gebruik afbeelding zoals deze is" msgid "Missing uploaded image." msgstr "Ontbrekende geüploade afbeelding." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Profiel afbeelding instellingen" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Huidige profielafbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Upload profiel afbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Upload afbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "of" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "Deze stap overslaan" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "Kies een foto uit je fotoalbums" @@ -12683,124 +12701,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12840,19 +12834,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index 86a07f4481..2c913c6b39 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -384,8 +384,6 @@ $a->strings['Admin'] = 'Beheer'; $a->strings['Site setup and configuration'] = 'Website opzetten en configureren'; $a->strings['Navigation'] = 'Navigatie'; $a->strings['Site map'] = 'Sitemap'; -$a->strings['Embedding disabled'] = 'Inbedden uitgeschakeld'; -$a->strings['Embedded content'] = 'Ingebedde inhoud'; $a->strings['first'] = 'eerste'; $a->strings['prev'] = 'vorige'; $a->strings['next'] = 'volgende'; @@ -511,7 +509,6 @@ $a->strings['Error message from Curl when fetching'] = 'Fout boodschap van Curl $a->strings['Url rewrite is working'] = 'Url rewrite werkt correct'; $a->strings['ImageMagick PHP extension is not installed'] = 'ImageMagick PHP extensie is niet geïnstalleerd'; $a->strings['ImageMagick PHP extension is installed'] = 'ImageMagick PHP extensie is geïnstalleerd'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick ondersteunt GIF'; $a->strings['Database already in use.'] = 'Database al in gebruik.'; $a->strings['Could not connect to database.'] = 'Kon geen toegang krijgen tot de database.'; $a->strings['Monday'] = 'Maandag'; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 027f22e3f8..f92327a691 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -59,7 +59,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Piotr Strębski , 2022\n" "Language-Team: Polish (http://app.transifex.com/Friendica/friendica/language/pl/)\n" @@ -89,14 +89,14 @@ msgstr "Nie można pobrać elementu." msgid "Empty post discarded." msgstr "Pusty wpis został odrzucony." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Element nie znaleziony." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -119,14 +119,14 @@ msgstr "Element nie znaleziony." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Brak uprawnień." @@ -291,7 +291,7 @@ msgstr "Błąd zbierania komunikatów." msgid "Discard" msgstr "Odrzuć" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Wiadomości" @@ -336,20 +336,20 @@ msgstr "Wyślij zdjęcie" msgid "Insert web link" msgstr "Wstaw link" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Proszę czekać" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -363,7 +363,7 @@ msgstr "Proszę czekać" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Potwierdź" @@ -436,7 +436,7 @@ msgstr "Notatki osobiste są widziane tylko przez Ciebie." msgid "Save" msgstr "Zapisz" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -449,99 +449,99 @@ msgid "User not found." msgstr "Użytkownik nie znaleziony." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Albumy zdjęć" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Ostatnio dodane zdjęcia" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Wyślij nowe zdjęcie" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "wszyscy" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Informacje o kontakcie są niedostępne" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Nie znaleziono albumu." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Album został pomyślnie usunięty" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Album był pusty." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Błąd usunięcia zdjęcia." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "zdjęcie" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$szostał oznaczony znacznikiem %2$s przez %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Odmowa dostępu publicznego." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Nie zaznaczono zdjęć" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Prześlij zdjęcia" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nazwa nowego albumu: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "lub wybierz istniejący album:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Nie pokazuj stanu wpisów dla tego wysłania" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Uprawnienia" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Usuń album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -551,133 +551,133 @@ msgstr "Usuń album" msgid "Cancel" msgstr "Anuluj" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Edytuj album" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Upuść Album" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Pokaż najpierw najnowsze" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Zdjęcie niedostępne" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Edytuj zdjęcie" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Ustaw jako zdjęcie profilowe" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Prywatne zdjęcie" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Zobacz w pełnym rozmiarze" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Znaczniki: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Wybierz znaczniki do usunięcia]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nazwa nowego albumu" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Zawartość" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Dodaj znacznik" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Nie obracaj" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Obróć zgodnie z kierunkiem wskazówek zegara (w prawo)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "To jesteś Ty" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Komentarz" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Podgląd" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Wczytywanie..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Wybierz" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -686,23 +686,23 @@ msgstr "Wybierz" msgid "Delete" msgstr "Usuń" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Lubię" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Lubię to (zmień)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Nie lubię" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Nie lubię tego (zmień)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Mapa" @@ -843,18 +843,18 @@ msgid "All contacts" msgstr "Wszystkie kontakty" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Zwolenników" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Kolejny" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1132,7 +1132,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1634,29 +1634,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1834,7 +1842,7 @@ msgid "" msgstr "Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarzenia publiczne. Kontaktowe wydarzenia urodzinowe są prywatne dla Ciebie." #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1843,12 +1851,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "pokaż mniej" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "pokaż więcej" @@ -1856,7 +1864,7 @@ msgstr "pokaż więcej" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "wydarzenie" @@ -1864,7 +1872,7 @@ msgstr "wydarzenie" msgid "status" msgstr "stan" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "zdjęcie" @@ -1874,36 +1882,36 @@ msgstr "zdjęcie" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Śledź wątek" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Zobacz status" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Zobacz profil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Zobacz zdjęcia" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Wiadomości sieciowe" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Pokaż kontakt" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Wyślij prywatną wiadomość" @@ -1939,7 +1947,7 @@ msgid "Languages" msgstr "Języki" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Połącz/Obserwuj" @@ -1993,42 +2001,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Twoja strona profilu" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Zdjęcia" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Twoje zdjęcia" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "Twoje wpisy z mediami" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Kalendarz" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "Twój kalendarz" @@ -2098,7 +2106,7 @@ msgstr "Znaczniki" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Kontakty" @@ -2137,15 +2145,15 @@ msgstr "Warunki usługi" msgid "Terms of Service of this Friendica instance" msgstr "Warunki świadczenia usług tej instancji Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Sieć" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Rozmowy Twoich przyjaciół" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Twoje wpisy i rozmowy" @@ -2174,7 +2182,7 @@ msgstr "Oznacz jako przeczytane" msgid "Mark all system notifications as seen" msgstr "Oznacz wszystkie powiadomienia systemowe jako przeczytane" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Prywatne maile" @@ -2196,15 +2204,15 @@ msgstr "Zarządzaj innymi stronami" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Ustawienia" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Ustawienia konta" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Zarządzaj listą przyjaciół i kontaktami" @@ -2242,14 +2250,6 @@ msgstr "Nawigacja" msgid "Site map" msgstr "Mapa strony" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Osadzanie wyłączone" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Osadzona zawartość" - #: src/Content/Pager.php:216 msgid "first" msgstr "pierwszy" @@ -2266,38 +2266,38 @@ msgstr "następny" msgid "last" msgstr "ostatni" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Obrazek/zdjęcie" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Odnośnik do źródła" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 napisał:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Szyfrowana treść" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Nieprawidłowy protokół źródłowy" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Niepoprawny link protokołu" @@ -2382,49 +2382,49 @@ msgstr "Katalog globalny" msgid "Local Directory" msgstr "Katalog lokalny" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Wszyscy" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Relacje" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Wszystkie kontakty" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protokoły" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Wszystkie protokoły" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Zapisane katalogi" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Wszystko" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Kategorie" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2433,41 +2433,41 @@ msgstr[1] "%d wspólne kontakty" msgstr[2] "%d wspólnych kontaktów" msgstr[3] "%d wspólnych kontaktów" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Archiwa" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Osoby" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Organizacje" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Aktualności" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Rodzaje kont" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Wszyscy" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2521,12 +2521,12 @@ msgstr[3] "Popularne znaczniki (ostatnie %d godzin)" msgid "More Trending Tags" msgstr "Więcej popularnych znaczników" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Wzmianka" @@ -2542,7 +2542,7 @@ msgid "Matrix:" msgstr "Matrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2554,13 +2554,13 @@ msgstr "Lokalizacja:" msgid "Network:" msgstr "Sieć:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Przestań obserwować" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2933,27 +2933,23 @@ msgstr "Nie wykryto TLS" msgid "TLS detected" msgstr "Wykryto TLS" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick obsługuje GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Baza danych jest już w użyciu." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2963,37 +2959,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Poniedziałek" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Wtorek" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Środa" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Czwartek" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Piątek" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Sobota" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Niedziela" @@ -3331,47 +3327,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Zatwierdź" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organizacja" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Przekaźnik" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Nie dozwolony adres URL profilu." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Zablokowana domena" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Brak adresu URL połączenia." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." @@ -3419,12 +3419,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Rozpoczęcie:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Zakończenie:" @@ -3442,17 +3442,17 @@ msgid "today" msgstr "dzisiaj" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "miesiąc" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "tydzień" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "dzień" @@ -3497,76 +3497,76 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Pokaż mapę" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Ukryj mapę" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "Urodziny %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Wszystkiego najlepszego %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Wykryte języki w tym wpisie:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "aktywność" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "komentarz" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "wpis" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Ostrzeżenie o treści: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bajty" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3575,7 +3575,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3584,7 +3584,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3593,7 +3593,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3602,12 +3602,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Koniec ankiety: %s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Zobacz na oddzielnej stronie" @@ -3615,7 +3615,7 @@ msgstr "Zobacz na oddzielnej stronie" msgid "[no subject]" msgstr "[bez tematu]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Tablica zdjęć" @@ -3903,11 +3903,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Zdjęcie profilowe" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3915,7 +3915,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tSzanowna/y %1$s,\n\t\t\tadministrator of %2$s założył dla Ciebie konto." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3946,12 +3946,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3966,12 +3966,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tSzanowny Użytkowniku %1$s,\n\t\t\t\tDziękujemy za rejestrację na stronie %2$s. Twoje konto czeka na zatwierdzenie przez administratora.\n\n\t\t\tTwoje dane do logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%3$s\n\t\t\tNazwa użytkownika:\t\t%4$s\n\t\t\tHasło:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Rejestracja w %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3980,7 +3980,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tSzanowna/y %1$s,\n\t\t\t\tDziękujemy za rejestrację w %2$s. Twoje konto zostało utworzone.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -4011,7 +4011,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -4036,14 +4036,14 @@ msgid "Disable" msgstr "Wyłącz" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Zezwól" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4083,12 +4083,12 @@ msgid "Addon %s failed to install." msgstr "Instalacja dodatku %s nie powiodła się." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Zapisz ustawienia" @@ -4299,8 +4299,8 @@ msgid "Enable Debugging" msgstr "Włącz debugowanie" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4461,269 +4461,269 @@ msgstr "Utwórz" msgid "Priority" msgstr "Priorytet" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Brak specialnego motywu dla urządzeń mobilnych" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s- (Eksperymentalne)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Brak strony społeczności" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "Brak strony społeczności dla odwiedzających" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Publikacje publiczne od użytkowników tej strony" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Publikacje wpisy ze sfederowanej sieci" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Publikacje publiczne od użytkowników lokalnych i sieci federacyjnej" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Tryb wielu użytkowników" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Zamknięte" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Wymaga zatwierdzenia" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Otwarta" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Nie sprawdzaj" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "sprawdź wersję stabilną" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "sprawdź wersję rozwojową" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "brak" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Kontakty lokalne" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "Interaktorzy" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Strona" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Ogólne informacje" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Ponownie opublikuj użytkowników w katalogu" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Rejestracja" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Przesyłanie plików" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Zasady" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Zaawansowany" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Katalog kontaktów automatycznie odkrytych" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Ustawienia" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Przekaźnik wiadomości" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Użyj polecenia „console relay” w wierszu poleceń, aby dodać lub usunąć przekaźniki." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "System nie jest aktualnie objęty abonamentem na żadne przekaźniki." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "System jest obecnie objęty abonamentem na następujące przekaźniki:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "Przenieś węzeł" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Przeniesienie węzła umożliwia zmianę domeny DNS tego węzła i zachowanie wszystkich istniejących użytkowników i wpisów. Ten proces zajmuje trochę czasu i można go uruchomić tylko za pomocą konsolowego polecenia relokacji w następujący sposób:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Katalog Friendica)# bin/console relocate https://nowadomena.pl" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Nazwa strony" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "E-mail nadawcy" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "Adres e-mail używany przez Twój serwer do wysyłania e-maili z powiadomieniami." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Imię i nazwisko aktora systemu" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Nazwa wewnętrznego konta systemowego, które jest używane do wykonywania żądań ActivityPub. Musi to być nieużywana nazwa użytkownika. Jeśli jest ustawiona, nie można jej zmienić ponownie." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Baner/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "Baner/logo e-maila" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Ikona skrótu" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Link do ikony, która będzie używana w przeglądarkach." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Dołącz ikonę" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link do ikony, która będzie używana w tabletach i telefonach komórkowych." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Dodatkowe informacje" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "W przypadku serwerów publicznych: możesz tu dodać dodatkowe informacje, które będą wymienione na %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Język systemu" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Motyw systemowy" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Domyślny motyw systemu - może być nadpisywany przez profile użytkowników - Zmień domyślne ustawienia motywu" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Motyw systemu mobilnego" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Motyw na urządzenia mobilne" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Wymuś SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Wymuszaj wszystkie żądania SSL bez SSL - Uwaga: w niektórych systemach może to prowadzić do niekończących się pętli." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Pokaż wpis pomocy z menu nawigacyjnego" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Wyświetla pozycję menu dla stron pomocy z menu nawigacyjnego. Jest zawsze dostępna, odwołując się bezpośrednio do /help." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Tryb pojedynczego użytkownika" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Ustawia tryb dla wielu użytkowników lub pojedynczego użytkownika dla nazwanego użytkownika" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Maksymalny rozmiar zdjęcia" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4731,35 +4731,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Maksymalna długość obrazu" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maksymalna długość w pikselach dłuższego boku przesyłanego obrazu. Wartością domyślną jest -1, co oznacza brak ograniczeń." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Jakość obrazu JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Przesłane pliki JPEG zostaną zapisane w tym ustawieniu jakości [0-100]. Domyślna wartość to 100, która jest pełną jakością." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Zasady rejestracji" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4767,157 +4767,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Maksymalna dzienna rejestracja" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Jeśli rejestracja powyżej jest dozwolona, to określa maksymalną liczbę nowych rejestracji użytkowników do zaakceptowania na dzień. Jeśli rejestracja jest ustawiona na \"Zamknięta\", to ustawienie to nie ma wpływu." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Zarejestruj tekst" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Będą wyświetlane w widocznym miejscu na stronie rejestracji. Możesz użyć BBCode tutaj." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Zakazane pseudonimy" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Lista oddzielonych przecinkami pseudonimów, których nie wolno rejestrować. Preset to lista nazw ról zgodnie z RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Konta porzucone po x dni" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nie będzie marnować zasobów systemu wypytując zewnętrzne strony o opuszczone konta. Ustaw 0 dla braku limitu czasu ." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Dozwolone domeny przyjaciół" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Rozdzielana przecinkami lista domen, które mogą nawiązywać przyjaźnie z tą witryną. Symbole wieloznaczne są akceptowane. Pozostaw puste by zezwolić każdej domenie na zaprzyjaźnienie." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Dozwolone domeny e-mailowe" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Rozdzielana przecinkami lista domen dozwolonych w adresach e-mail do rejestracji na tej stronie. Symbole wieloznaczne są akceptowane. Opróżnij, aby zezwolić na dowolne domeny" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Brak treści multimedialnych ze znaczkiem HTML" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Nie wyświetlaj zasobów treści (np. osadzonego pliku PDF), z wyjątkiem domen wymienionych poniżej." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Zaufane domeny zewnętrzne" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Oddzielona przecinkami lista domen, z których treść może być osadzana we wpisach, tak jak w przypadku OEmbed. Dozwolone są również wszystkie subdomeny wymienionych domen." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Blokuj publicznie" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Zaznacz, aby zablokować publiczny dostęp do wszystkich publicznych stron prywatnych w tej witrynie, chyba że jesteś zalogowany." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Wymuś publikację" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Zaznacz, aby wymusić umieszczenie wszystkich profili w tej witrynie w katalogu witryny." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Włączenie tego może naruszyć prawa ochrony prywatności, takie jak GDPR" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "Globalny adres URL katalogu" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "Adres URL do katalogu globalnego. Jeśli nie zostanie to ustawione, katalog globalny jest całkowicie niedostępny dla aplikacji." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Prywatne posty domyślnie dla nowych użytkowników" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "W celu ochrony prywatności, nie włączaj zawartości postu/komentarza/wiadomości prywatnej/etc. do powiadomień w wiadomościach mailowych wysyłanych z tej strony." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Nie zezwalaj na publiczny dostęp do dodatkowych wtyczek wyszczególnionych w menu aplikacji." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Zaznaczenie tego pola spowoduje ograniczenie dodatków wymienionych w menu aplikacji tylko dla członków." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Nie umieszczaj prywatnych zdjęć we wpisach" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4925,11 +4935,11 @@ msgid "" "while." msgstr "Nie zastępuj lokalnie hostowanych zdjęć prywatnych we wpisach za pomocą osadzonej kopii obrazu. Oznacza to, że osoby, które otrzymują posty zawierające prywatne zdjęcia, będą musiały uwierzytelnić i wczytać każdy obraz, co może trochę potrwać." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Treści dla dorosłych" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4938,339 +4948,339 @@ msgid "" "will be shown at the user registration page." msgstr "Ustaw to, aby ogłosić, że Twój węzeł jest używany głównie do jawnej treści, która może nie być odpowiednia dla nieletnich. Informacje te zostaną opublikowane w informacjach o węźle i mogą zostać wykorzystane, np. w katalogu globalnym, aby filtrować węzeł z list węzłów do przyłączenia. Dodatkowo notatka o tym zostanie pokazana na stronie rejestracji użytkownika." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "Udostępniaj treści zewnętrzne" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Kieruj zawartość zewnętrzną za pośrednictwem funkcji proxy. Jest to używane na przykład w przypadku niektórych dostępów OEmbed i w niektórych innych rzadkich przypadkach." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "Buforuj awatary kontaktów" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Lokalnie przechowuj zdjęcia awatarów kontaktów. To zajmuje dużo miejsca, ale zwiększa wydajność." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Zezwól użytkownikom na ustawienie remote_self" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Po sprawdzeniu tego każdy użytkownik może zaznaczyć każdy kontakt jako zdalny w oknie dialogowym kontaktu naprawczego. Ustawienie tej flagi na kontakcie powoduje dublowanie każdego wpisu tego kontaktu w strumieniu użytkowników." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "Włącz wiele rejestracji" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "Zezwól użytkownikom na rejestrowanie dodatkowych kont do użytku jako strony." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "Włącz OpenID" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "Włącz obsługę OpenID dla rejestracji i logowania." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "Jeśli ta opcja jest włączona, a system jest ustawiony na otwartą rejestrację, wiadomość e-mail dla każdej nowej rejestracji jest wysyłana do administratorów." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Strony społecznościowe dla odwiedzających" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Które strony społeczności powinny być dostępne dla odwiedzających. Lokalni użytkownicy zawsze widzą obie strony." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Lista wpisów użytkownika na stronie społeczności" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "Włącz obsługę maili" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Włącz wbudowaną obsługę poczty, aby odpytywać katalogi IMAP i odpowiadać pocztą." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "Nie można włączyć obsługi poczty, ponieważ moduł PHP IMAP nie jest zainstalowany." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "Włącz obsługę OStatus" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Włącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itp.). Wszystkie komunikaty w OSstatus są publiczne." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Włączyć obsługę Diaspory" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Włącz wbudowaną kompatybilność sieci Diaspora do komunikacji z serwerami diaspory." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Weryfikacja SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Jeśli chcesz, możesz włączyć ścisłe sprawdzanie certyfikatu. Oznacza to, że nie możesz połączyć się (w ogóle) z własnoręcznie podpisanymi stronami SSL." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Użytkownik proxy" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "Nazwa użytkownika serwera proxy." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL pośrednika" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Jeśli chcesz używać serwera proxy, którego Friendica powinna używać do łączenia się z siecią, umieść tutaj adres URL proxy." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Limit czasu sieci" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Wartość jest w sekundach. Ustaw na 0 dla nieograniczonej (niezalecane)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Maksymalne obciążenie średnie" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maksymalne obciążenie systemu przed dostarczeniem i procesami odpytywania jest odroczone - domyślnie %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Minimalna pamięć" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimalna wolna pamięć w MB dla workera. Potrzebuje dostępu do /proc/ meminfo - domyślnie 0 (wyłączone)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Okresowo optymalizuj tabele" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Okresowo optymalizuj tabele, takie jak pamięć podręczna i kolejka workerów" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Odkryj obserwujących/obserwowanych z kontaktów" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Jeśli ta opcja jest włączona, kontakty są sprawdzane pod kątem ich obserwujących i śledzonych kontaktów." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "Brak - dezaktywowany" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Kontakty lokalne - kontakty naszych lokalnych kontaktów są wykrywane dla ich obserwujących/obserwujących." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interaktorzy - kontakty naszych lokalnych kontaktów i kontakty, które wchodziły w interakcję z lokalnie widocznymi wpisami, są wykrywane dla ich obserwujących/obserwowanych." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Synchronizuj kontakty z serwerem katalogowym" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "jeśli ta opcja jest włączona, system będzie okresowo sprawdzać nowe kontakty na zdefiniowanym serwerze katalogowym." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Odkryj kontakty z innych serwerów" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Dni między żądaniem" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Wyszukaj w lokalnym katalogu" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Wyszukaj lokalny katalog zamiast katalogu globalnego. Podczas wyszukiwania lokalnie każde wyszukiwanie zostanie wykonane w katalogu globalnym w tle. Poprawia to wyniki wyszukiwania, gdy wyszukiwanie jest powtarzane." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Publikuj informacje o serwerze" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5278,50 +5288,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Jeśli ta opcja jest włączona, ogólne dane dotyczące serwera i użytkowania zostaną opublikowane. Dane zawierają nazwę i wersję serwera, liczbę użytkowników z profilami publicznymi, liczbę postów i aktywowane protokoły i złącza. Szczegółowe informacje można znaleźć na the-federation.info." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Sprawdź wersję powyżej" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Umożliwia sprawdzenie nowych wersji Friendica na github. Jeśli pojawi się nowa wersja, zostaniesz o tym poinformowany w panelu administracyjnym." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Pomiń znaczniki" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Pomiń wyświetlenie listy hashtagów na końcu wpisu." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Wyczyść bazę danych" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Usuń stare zdalne pozycje, osierocone rekordy bazy danych i starą zawartość z innych tabel pomocników." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Żywotność odległych przedmiotów" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Po włączeniu czyszczenia bazy danych określa dni, po których zdalne elementy zostaną usunięte. Własne przedmioty oraz oznaczone lub wypełnione pozycje są zawsze przechowywane. 0 wyłącza to zachowanie." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Żywotność nieodebranych przedmiotów" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5329,175 +5339,175 @@ msgid "" "items if set to 0." msgstr "Po włączeniu czyszczenia bazy danych określa się dni, po których usunięte zostaną nieodebrane zdalne elementy (głównie zawartość z przekaźnika). Wartość domyślna to 90 dni. Wartość domyślna dla ogólnej długości życia zdalnych pozycji, jeśli jest ustawiona na 0." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Trwałość nieprzetworzonych danych konwersacji" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Dane konwersacji są używane do ActivityPub i OStatus, a także do celów debugowania. Powinno być bezpieczne usunięcie go po 14 dniach, domyślnie jest to 90 dni." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Maksymalna liczba komentarzy na wpis" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Ile komentarzy powinno być wyświetlanych dla każdego wpisu? Domyślna wartość to 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "Maksymalna liczba komentarzy na wpis na wyświetlanej stronie" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Ile komentarzy powinno być wyświetlanych w pojedynczym widoku dla każdego wpisu? Wartość domyślna to 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Ścieżka do temp" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Jeśli masz zastrzeżony system, w którym serwer internetowy nie może uzyskać dostępu do ścieżki temp systemu, wprowadź tutaj inną ścieżkę." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Szukaj tylko w znacznikach" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Maksymalna liczba równoległych workerów" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Na udostępnionych usługach hostingowych ustaw tę opcję %d. W większych systemach wartości %dsą świetne . Wartość domyślna to %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Włącz Fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Po włączeniu, system Fastlane uruchamia dodatkowego workera, jeśli procesy o wyższym priorytecie są blokowane przez procesy o niższym priorytecie." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5505,153 +5515,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Bezpośredni transfer przekaźników" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Umożliwia bezpośredni transfer do innych serwerów bez korzystania z serwerów przekazujących" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Zakres przekaźnika" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Mogą to być „wszystkie” lub „znaczniki”. „Wszystkie” oznacza, że ​​każdy publiczny wpis powinien zostać odebrany. „Znaczniki” oznaczają, że powinny być odbierane tylko wpisy z wybranymi znacznikami." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Wyłączony" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "wszystko" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "znaczniki" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Znaczniki serwera" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”." -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Odrzuć znaczniki serwera" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Lista oddzielonych przecinkami znaczników, które zostały odrzucone." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Pozwól na znaczniki użytkowników" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Jeśli ta opcja jest włączona, tagi z zapisanych wyszukiwań będą używane jako subskrypcja „tagów” jako uzupełnienie do \"relay_server_tags\"." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Rozpocznij przenoszenie" @@ -6247,11 +6257,11 @@ msgstr "Brak identyfikatora wydarzenia." msgid "Failed to remove event" msgstr "Nie udało się usunąć wydarzenia" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." @@ -6343,7 +6353,7 @@ msgstr "Widok" msgid "Create New Event" msgstr "Stwórz nowe wydarzenie" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "lista" @@ -7003,7 +7013,7 @@ msgid "Actions" msgstr "Akcja" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Stan" @@ -7175,33 +7185,33 @@ msgstr "Opcja wspólnotowa jest niedostępna." msgid "Not available." msgstr "Niedostępne." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Własne kontakty" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Zawiera" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Ukryj" @@ -7233,7 +7243,7 @@ msgid "Result Item" msgstr "Pozycja wynikowa" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7246,179 +7256,179 @@ msgstr[3] "Błędów" msgid "Source activity" msgstr "Aktywność źródła" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "Źródło wejściowe" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "BBCode::na prosty tekst" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "BBCode:: konwersjia (raw HTML)" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "BBCode::przekształć" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::przekształć => HTML::toBBCode" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::przekształć" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "Element Body" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "Znaczniki elementu" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "Źródło wejściowe (format Diaspora)" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "Wejście źródłowe (Markdown)" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "Surowe wejście HTML" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "Wejście HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "Oczyszczony HTML (surowy)" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "Oczyszczony HTML (szesnastkowy)" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "Oczyszczony HTML" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Odkodowany wpis" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Wpis przekonwertowany" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "Dodatek do Twittera jest nieobecny w katalogu addon/." -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "Diagnostyka Babel" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "Tekst źródłowy" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Źródło Twitter / URL Tweeta (wymaga klucza API)" @@ -7929,7 +7939,7 @@ msgstr "Pliki" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Wyślij" @@ -7950,14 +7960,14 @@ msgstr "Plik przekracza limit rozmiaru wynoszący %s" msgid "File upload failed." msgstr "Przesyłanie pliku nie powiodło się." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Przetwarzanie obrazu nie powiodło się." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się." @@ -9016,7 +9026,7 @@ msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontak msgid "Unsupported or missing response type" msgstr "Nieobsługiwany lub brakujący typ odpowiedzi" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Niekompletne dane żądania" @@ -9027,11 +9037,11 @@ msgid "" "close this window: %s" msgstr "Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Nieobsługiwany lub brakujący typ dotacji" @@ -9156,21 +9166,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "Zdjęcie jest niedostępne." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "Zdjęcie z identyfikatorem %s nie jest dostępne." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "Nieprawidłowy zasób zewnętrzny z adresem URL %s." -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s." @@ -9222,27 +9232,27 @@ msgstr "Brak kontaktów." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "oś czasu %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "wpisy %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "komentarze %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Obraz przekracza limit rozmiaru wynoszący %s" @@ -9261,11 +9271,11 @@ msgid "" "administrator" msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Plik obrazka jest pusty." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Zobacz album" @@ -10330,12 +10340,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Opis" @@ -10733,181 +10743,189 @@ msgstr "Potencjalni delegaci" msgid "No entries." msgstr "Brak wpisów." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Wybrany motyw jest niedostępny." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nieobsługiwane)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Ustawienia wyglądu" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Ogólne ustawienia motywu" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Niestandardowe ustawienia motywów" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Ustawienia zawartości" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Ustawienia motywu" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Wyświetl motyw:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Motyw dla urządzeń mobilnych:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Liczba elementów do wyświetlenia na stronie:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maksymalnie 100 elementów" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Odświeżaj stronę co xx sekund" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "Wyświetl emotikony" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Po włączeniu emotikony są zastępowane pasującymi symbolami." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Nieskończone przewijanie" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "Włącz inteligentne wątkowanie" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Włącz automatyczne tłumienie obcych wcięć wątku." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "Wyświetl funkcję \"Nie lubię\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Wyświetlaj przycisk \"Nie lubię\" i reakcje na wpisy i komentarze." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Wyświetl udostępniającego" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Wyświetlaj pierwszego udostępniającego jako ikonę i tekst na elemencie udostępnianym dalej." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Pozostań lokalny" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Początek tygodnia:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -11072,7 +11090,7 @@ msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." @@ -11112,31 +11130,31 @@ msgstr "Użyj obrazu takim, jaki jest" msgid "Missing uploaded image." msgstr " Brak przesłanego obrazu." -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Ustawienia zdjęcia profilowego" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Bieżące zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Prześlij zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Załaduj zdjęcie:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "lub" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "pomiń ten krok" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" @@ -12840,124 +12858,100 @@ msgstr "luźny" msgid "Variations" msgstr "Wariacje" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Jasny (akcentowany)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Ciemny (akcentowany)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Czarny (z akcentem)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Uwaga" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą oglądać obraz" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Własne" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Przestarzałe" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "Akcentowany" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Wybierz schemat kolorów" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Wybierz akcent schematu" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Niebieski" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Czerwony" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Purpurowy" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Zielony" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Różowy" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Skopiuj lub wklej ciąg schematu" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Kolor tła paska nawigacyjnego" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Kolor ikon na pasku nawigacyjnym " -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Kolor odnośników" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Ustaw kolor tła" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Nieprzezroczystość tła treści" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Ustaw obraz tła" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Styl obrazu tła" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Obraz tła strony logowania" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Kolor tła strony logowania" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Pozostaw pusty obraz tła i kolor dla domyślnych ustawień motywu" @@ -12997,19 +12991,35 @@ msgstr "Mozaika" msgid "Repeat image to fill the screen." msgstr "Powtórz obraz, aby wypełnić ekran." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Przejdź do głównej zawartości" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Powrót do góry" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Własne" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Gość" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Odwiedzający" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index b4affb2e56..12fe8f2759 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -452,8 +452,6 @@ $a->strings['Moderation'] = 'Moderacja'; $a->strings['Content and user moderation'] = 'Moderacja treści i użytkowników'; $a->strings['Navigation'] = 'Nawigacja'; $a->strings['Site map'] = 'Mapa strony'; -$a->strings['Embedding disabled'] = 'Osadzanie wyłączone'; -$a->strings['Embedded content'] = 'Osadzona zawartość'; $a->strings['first'] = 'pierwszy'; $a->strings['prev'] = 'poprzedni'; $a->strings['next'] = 'następny'; @@ -610,7 +608,6 @@ $a->strings['No TLS detected'] = 'Nie wykryto TLS'; $a->strings['TLS detected'] = 'Wykryto TLS'; $a->strings['ImageMagick PHP extension is not installed'] = 'Rozszerzenie PHP ImageMagick nie jest zainstalowane'; $a->strings['ImageMagick PHP extension is installed'] = 'Rozszerzenie PHP ImageMagick jest zainstalowane'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick obsługuje GIF'; $a->strings['Database already in use.'] = 'Baza danych jest już w użyciu.'; $a->strings['Could not connect to database.'] = 'Nie można połączyć się z bazą danych.'; $a->strings['Monday'] = 'Poniedziałek'; @@ -2503,16 +2500,8 @@ $a->strings['darkzero'] = 'ciemne zero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'luźny'; $a->strings['Variations'] = 'Wariacje'; -$a->strings['Light (Accented)'] = 'Jasny (akcentowany)'; -$a->strings['Dark (Accented)'] = 'Ciemny (akcentowany)'; -$a->strings['Black (Accented)'] = 'Czarny (z akcentem)'; $a->strings['Note'] = 'Uwaga'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą oglądać obraz'; -$a->strings['Custom'] = 'Własne'; -$a->strings['Legacy'] = 'Przestarzałe'; -$a->strings['Accented'] = 'Akcentowany'; -$a->strings['Select color scheme'] = 'Wybierz schemat kolorów'; -$a->strings['Select scheme accent'] = 'Wybierz akcent schematu'; $a->strings['Blue'] = 'Niebieski'; $a->strings['Red'] = 'Czerwony'; $a->strings['Purple'] = 'Purpurowy'; @@ -2540,6 +2529,7 @@ $a->strings['Mosaic'] = 'Mozaika'; $a->strings['Repeat image to fill the screen.'] = 'Powtórz obraz, aby wypełnić ekran.'; $a->strings['Skip to main content'] = 'Przejdź do głównej zawartości'; $a->strings['Back to top'] = 'Powrót do góry'; +$a->strings['Custom'] = 'Własne'; $a->strings['Guest'] = 'Gość'; $a->strings['Visitor'] = 'Odwiedzający'; $a->strings['Alignment'] = 'Wyrównanie'; diff --git a/view/lang/ro/strings.php b/view/lang/ro/strings.php index c9b3062132..56e3f94f5a 100644 --- a/view/lang/ro/strings.php +++ b/view/lang/ro/strings.php @@ -1,7 +1,7 @@ 19)||(($n%100==0)&&($n!=0)))) { return 2; } else { return 1; } }} diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index f8b23974bc..cc0011d970 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Alexander An , 2020-2023\n" "Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n" @@ -54,14 +54,14 @@ msgstr "Не удалось получить запись." msgid "Empty post discarded." msgstr "Пустое сообщение отбрасывается." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Пункт не найден." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -84,14 +84,14 @@ msgstr "Пункт не найден." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Нет разрешения." @@ -256,7 +256,7 @@ msgstr "Неудача коллекции сообщения." msgid "Discard" msgstr "Отказаться" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Сообщения" @@ -301,20 +301,20 @@ msgstr "Загрузить фото" msgid "Insert web link" msgstr "Вставить веб-ссылку" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Пожалуйста, подождите" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -328,7 +328,7 @@ msgstr "Пожалуйста, подождите" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Отправить" @@ -401,7 +401,7 @@ msgstr "Личные заметки видны только вам." msgid "Save" msgstr "Сохранить" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -414,99 +414,99 @@ msgid "User not found." msgstr "Пользователь не найден." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Фотоальбомы" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Последние фото" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Загрузить новые фото" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "все" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Информация о контакте недоступна" -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Альбом не найден." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Альбом успешно удалён" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Альбом был пуст." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Не получилось удалить фото." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "фото" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s отмечен/а/ в %2$s by %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Публичный доступ закрыт." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Не выбрано фото." -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "Максимально допустимый размер изображения %s" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Загрузить фото" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Название нового альбома: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "или выберите имеющийся альбом:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Не показывать статус-сообщение для этой закачки" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Разрешения" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Удалить альбом" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -516,133 +516,133 @@ msgstr "Удалить альбом" msgid "Cancel" msgstr "Отмена" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Редактировать альбом" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Удалить альбом" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Показать новые первыми" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Показать старые первыми" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Просмотр фото" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Нет разрешения. Доступ к этому элементу ограничен." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Фото недоступно" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Вы действительно хотите удалить эту фотографию?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Удалить фото" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Просмотр фото" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Редактировать фото" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Удалить фото" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Использовать как фото профиля" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Закрытое фото" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Просмотреть полный размер" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Ключевые слова: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[выберите тэги для удаления]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Название нового альбома" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Подпись" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Добавить тег" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Не поворачивать" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Поворот по часовой стрелке (направо)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Поворот против часовой стрелки (налево)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Это вы" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Комментировать" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Просмотр" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Загрузка..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Выберите" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -651,23 +651,23 @@ msgstr "Выберите" msgid "Delete" msgstr "Удалить" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Нравится" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Нравится" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Не нравится" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Не нравится" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Карта" @@ -808,18 +808,18 @@ msgid "All contacts" msgstr "Все контакты" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Подписаны на вас" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Ваши подписки" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1097,7 +1097,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "Эл. почта" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1599,29 +1599,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Записи от людей, на которых подписаны ваши контакты" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "Картинки" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "Записи с изображениями" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "Аудио" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "Записи с аудио" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "Видео" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "Записи с видео" @@ -1799,7 +1807,7 @@ msgid "" msgstr "Разрешает анонимным пользователям просматривать ваш календарь и публичные мероприятия. Дни рождения контактов видны только вам." #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "Группы" @@ -1808,12 +1816,12 @@ msgstr "Группы" msgid "External link to group" msgstr "Внешняя ссылка на группу" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "показать меньше" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "показать больше" @@ -1821,7 +1829,7 @@ msgstr "показать больше" msgid "Create new group" msgstr "Создать новую группу" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "мероприятие" @@ -1829,7 +1837,7 @@ msgstr "мероприятие" msgid "status" msgstr "статус" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "фото" @@ -1839,36 +1847,36 @@ msgstr "фото" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s tagged %2$s's %3$s в %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Подписаться на обсуждение" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Просмотреть статус" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Просмотреть профиль" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Просмотреть фото" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Записи сети" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Просмотреть контакт" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Отправить ЛС" @@ -1904,7 +1912,7 @@ msgid "Languages" msgstr "Языки" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Подключиться/Подписаться" @@ -1958,42 +1966,42 @@ msgstr "Ваши записи" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Информация" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Информация о вас" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Фото" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Ваши фотографии" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Медиа" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "Ваши записи с фото и видео" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "Календарь" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "Ваш календарь" @@ -2063,7 +2071,7 @@ msgstr "Тэги" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Контакты" @@ -2102,15 +2110,15 @@ msgstr "Условия оказания услуг" msgid "Terms of Service of this Friendica instance" msgstr "Условия оказания услуг для этого узла Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Новости" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Сообщения ваших друзей" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Ваши записи и диалоги" @@ -2139,7 +2147,7 @@ msgstr "Отметить, как прочитанное" msgid "Mark all system notifications as seen" msgstr "Пометить все уведомления прочитанными" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Личная почта" @@ -2161,15 +2169,15 @@ msgstr "Управление другими страницами" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Настройки" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Настройки аккаунта" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Управление / редактирование друзей и контактов" @@ -2207,14 +2215,6 @@ msgstr "Навигация" msgid "Site map" msgstr "Карта сайта" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Встраивание отключено" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Встроенное содержание" - #: src/Content/Pager.php:216 msgid "first" msgstr "первый" @@ -2231,38 +2231,38 @@ msgstr "след." msgid "last" msgstr "последний" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Изображение / Фото" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Ссылка на источник" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Нажмите, чтобы открыть / закрыть" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 написал:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Зашифрованный контент" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Неправильный протокол источника" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Неправильная протокольная ссылка" @@ -2347,49 +2347,49 @@ msgstr "Глобальный каталог" msgid "Local Directory" msgstr "Локальный каталог" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "Круги" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Все" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "Нет связи" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Отношения" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Все контакты" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Протоколы" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Все протоколы" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Сохранённые папки" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Всё" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Категории" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2398,41 +2398,41 @@ msgstr[1] "%d Контактов" msgstr[2] "%d Контактов" msgstr[3] "%d Контактов" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Архивы" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "В этот день" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Люди" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Организации" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Новости" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Тип учетной записи" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Все" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "Каналы" @@ -2486,12 +2486,12 @@ msgstr[3] "Популярные тэги (за %d часов)" msgid "More Trending Tags" msgstr "Больше популярных тэгов" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "Запись для группы" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Отметка" @@ -2507,7 +2507,7 @@ msgid "Matrix:" msgstr "Matrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2519,13 +2519,13 @@ msgstr "Откуда:" msgid "Network:" msgstr "Сеть:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Отписка" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "Просмотр группы" @@ -2898,27 +2898,23 @@ msgstr "TLS не обнаружено." msgid "TLS detected" msgstr "TLS обнаружено." -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "Модуль PHP ImageMagick не установлен" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "Модуль PHP ImageMagick установлен" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick поддерживает GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "База данных уже используется." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Не удалось подключиться к базе данных." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2928,37 +2924,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "Понедельник" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "Вторник" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "Среда" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "Четверг" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "Пятница" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "Суббота" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "Воскресенье" @@ -3296,47 +3292,51 @@ msgstr "Название круга:" msgid "Edit circles" msgstr "Редактировать круги" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Одобрить" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Организация" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "Группа" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Ретранслятор" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Запрещенный URL профиля." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Заблокированный домен" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "Connect-URL отсутствует." -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети." -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Ожидаемая сеть %s не соответствует обнаруженной сети %s" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Указанный адрес профиля не дает адекватной информации." @@ -3384,12 +3384,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Начало:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Окончание:" @@ -3407,17 +3407,17 @@ msgid "today" msgstr "сегодня" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "мес." #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "неделя" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "день" @@ -3462,76 +3462,76 @@ msgstr "D g:i A" msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Показать карту" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Скрыть карту" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "день рождения %s" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "С днём рождения %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Обнаруженные в этой записи языки:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "активность" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "комментарий" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "пост" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "%s заблокирован" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "%s игнорируется" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "Запись от %s скрыта" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Предупреждение о контенте: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "байт" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3540,7 +3540,7 @@ msgstr[1] "%2$s (%3$d%%, %1$d голоса)" msgstr[2] "%2$s (%3$d%%, %1$d голосов)" msgstr[3] "%2$s (%3$d%%, %1$d голосов)" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3549,7 +3549,7 @@ msgstr[1] "%2$s (%1$d голоса)" msgstr[2] "%2$s (%1$d голосов)" msgstr[3] "%2$s (%1$d голосов)" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3558,7 +3558,7 @@ msgstr[1] "%d голоса. Конец опроса: %s" msgstr[2] "%d голосов. Конец опроса: %s" msgstr[3] "%d голосов. Конец опроса: %s" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3567,12 +3567,12 @@ msgstr[1] "%d голоса." msgstr[2] "%d голосов." msgstr[3] "%d голосов." -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Конец опроса: %s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Посмотреть в отдельной вкладке" @@ -3580,7 +3580,7 @@ msgstr "Посмотреть в отдельной вкладке" msgid "[no subject]" msgstr "[без темы]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Фото стены" @@ -3868,11 +3868,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "При создании круга контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз." -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Фотографии профиля" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3880,7 +3880,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\n\t\tУважаемый(ая) %1$s,\n\t\t\tадминистратор %2$s создал для вас учётную запись." -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3911,12 +3911,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Подробности регистрации для %s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3931,12 +3931,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tУважаемый %1$s,\n\t\t\t\tБлагодарим Вас за регистрацию на %2$s. Ваш аккаунт ожидает подтверждения администратором.\n\n\t\t\tВаши данные для входа в систему:\n\n\t\t\tМестоположение сайта:\t%3$s\n\t\t\tЛогин:\t\t%4$s\n\t\t\tПароль:\t\t%5$s\n\t\t" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "Регистрация на %s" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3945,7 +3945,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tУважаемый(ая) %1$s,\n\t\t\t\tСпасибо за регистрацию на %2$s. Ваша учётная запись создана.\n\t\t\t" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3976,7 +3976,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -4001,14 +4001,14 @@ msgid "Disable" msgstr "Отключить" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Включить" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4048,12 +4048,12 @@ msgid "Addon %s failed to install." msgstr "Не удалось установить дополнение %s." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Сохранить настройки" @@ -4264,8 +4264,8 @@ msgid "Enable Debugging" msgstr "Включить отладку" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4426,269 +4426,269 @@ msgstr "Создано" msgid "Priority" msgstr "Приоритет" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "%s недопустимое значение для максимального размера изображений" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Нет специальной темы для мобильных устройств" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (экспериментально)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Нет общей ленты записей" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "Нет общей ленты записей для гостей" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "Публичные записи от пользователей этого узла" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "Публичные записи федеративной сети" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "Публичные записи от местных пользователей и федеративной сети." -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Многопользовательский вид" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Закрыто" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Требуется подтверждение" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Открыто" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Не проверять" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "проверить стабильную версию" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "проверить development-версию" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "нет" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Местные контакты" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Сайт" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Общая информация" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "Переопубликовать пользователей в каталог" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Регистрация" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Загрузка файлов" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Политики" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Дополнительно" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "Каталог автообнаружения контактов" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Производительность" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Обработчик" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Ретранслятор записей" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Используйте команду \"console relay\" в командной строке для добавления и удаления ретрансляторов." -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "Система сейчас не подписана на ретрансляторы." -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "Система сейчас подписана на следующие ретрансляторы:" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "Переместить узел" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "Перемещение узла позволяет вам изменить DNS-имя этого узла с сохранением всех пользователей и записей. Этот процесс может занять много времени и может быть запущен только с помощью команды консоли:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(каталог Friendica)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Название сайта" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Системный Email" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "Адрес с которого будут приходить письма пользователям." -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "Имя системного аккаунта" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "Имя внутреннего системного аккаунта, который используется для выполнения запросов ActivityPub. Это должно быть не занятое имя пользователя. После установки его нельзя изменить снова." -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Баннер/Логотип" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "Лого для писем" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Иконка сайта" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "Ссылка на иконку, которая будет использоваться браузерами." -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "Иконка веб-приложения" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Дополнительная информация" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Для публичных серверов: здесь вы можете разместить дополнительную информацию и она будет доступна по %s/servers." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Системный язык" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Системная тема" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "Мобильная тема системы" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Тема для мобильных устройств" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "SSL принудительно" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Форсировать не-SSL запросы как SSL. Внимание: на некоторых системах это может привести к бесконечным циклам." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "Показать пункт \"помощь\" в меню навигации" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Показывает пункт меню для страницы справки из меню навигации. Она так же всегда доступна по прямой ссылке /help." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "Однопользовательский режим" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Максимальный размер изображения" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4696,35 +4696,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Максимальная длина картинки" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Максимальная длина в пикселях для длинной стороны загруженных изображений. По умолчанию равно -1, что означает отсутствие ограничений." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Качество JPEG изображения" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Загруженные изображения JPEG будут сохранены в этом качестве [0-100]. По умолчанию 100, что означает полное качество." -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Политика регистрация" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "Максимум пользователей" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4732,157 +4732,167 @@ msgid "" "not when the policy is set to approval." msgstr "Если включено, регистрация будет автоматически закрываться при достижении указанного числа пользователей и вновь открываться, если число пользователей снова снизится. Это работает только, если регистрация установлена как открытая или закрытая, но не когда включено её одобрение." -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Максимальное число регистраций в день" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Если регистрация разрешена, этот параметр устанавливает максимальное количество новых регистраций пользователей в день. Если регистрация закрыта, эта опция не имеет никакого эффекта." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Текст регистрации" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Запрещённые ники" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Имена, перечисленные через запятую, которые запрещены для регистрации на этом узле. Предустановленный список соответствует RFC 2142." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Аккаунт считается после x дней не воспользованным" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Разрешенные домены друзей" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Разрешенные почтовые домены" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Разделенный запятыми список доменов, которые разрешены для установления связей. Групповые символы принимаются. Оставьте пустым для разрешения связи со всеми доменами." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "Не показывать контент OEmbed" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "Доверенные внешние домены" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "Список доменов через запятую, данные с которых будет разрешено внедрять в записи через OEmbed. Все поддомены этих доменов будут так же разрешены." -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Блокировать общественный доступ" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Отметьте, чтобы заблокировать публичный доступ ко всем иным публичным личным страницам на этом сайте, если вы не вошли на сайт." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Принудительная публикация" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Включение этого может нарушить законы о личных данных, например, GDPR." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "URL глобального каталога" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Частные сообщения по умолчанию для новых пользователей" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "Установить права на создание записей по-умолчанию для всех участников в приватный круг, а не для публично." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Не включать текст сообщения в email-оповещение." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Не включать содержание сообщения/комментария/личного сообщения и т.д.. в уведомления электронной почты, отправленных с сайта, в качестве меры конфиденциальности." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "Не вставлять личные картинки в записи" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4890,11 +4900,11 @@ msgid "" "while." msgstr "Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "Контент для взрослых" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4903,339 +4913,339 @@ msgid "" "will be shown at the user registration page." msgstr "Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "Проксировать внешние данные" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Отображать внешний контент через встроенное прокси. Это используется для некоторых случаев отображения OEmbed и некоторых других." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "Кэшировать аватары" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "Разрешить пользователям установить remote_self" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Если включено, любой пользователь сможет пометить любой контакт как \"remote_self\" в расширенных настройках контакта. Установка такого параметра приводит к тому, что все записи помеченного контакта публикуются в ленте от имени пользователя." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "Разрешить несколько регистраций" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "Разрешить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "Включить OpenID" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "Включить поддержку OpenID для регистрации и входа." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "Уведомлять администраторов о новых регистрациях" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "Если включено и регистрации открыты, то о каждой новой регистрации будет сообщаться администраторам по электронной почте." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "Публичная лента для посетителей" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "Число записей на пользователя в публичной ленте" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "Включить поддержку электронной почты" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте." -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP." -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "Включить поддержку OStatus" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично." -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Включить поддержку Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora." -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Проверка SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Если хотите, вы можете включить строгую проверку сертификатов. Это будет означать, что вы не сможете соединиться (вообще) с сайтами, имеющими само-подписанный SSL сертификат." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Прокси пользователь" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "Имя пользователя прокси" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "Прокси URL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "Если вы хотите указать прокси, который Friendica будет использовать для выхода в сеть, укажите здесь его URL." -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Тайм-аут сети" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "Средняя максимальная нагрузка" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d." -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "Минимум памяти" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Минимально допустимая свободная память ОЗУ для запуска заданий. Для работы нужен доступ в /proc/meminfo - по-умолчанию 0 (отключено)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "Периодически оптимизировать таблицы" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Периодически оптимизировать таблицы, такие как cache и workerqueue" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "Обнаруживать подписчиков и друзей для контактов" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Если включено, контакты будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "None - выключено." -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Local contacts - местные контакты будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interactors - местные контакты и те контакты, кто взаимодействовал с локально видимыми записями, будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "Синхронизировать контакты с сервером каталога" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Если включено, то система будет периодически проверять новые контакты на указанном сервере каталога." -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "Обнаруживать контакты с других серверов" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "Интервал запросов" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "Искать в местном каталоге" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Искать в локальном каталоге вместо глобального. При локальном поиске каждый запрос будет выполняться в глобальном каталоге в фоновом режиме. Это улучшит результаты поиска при повторных запросах." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "Опубликовать информацию о сервере" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5243,50 +5253,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "Проверять версию в репозитории" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Включает проверку новых версий Френдики на Github. Если появится новая версия, вы получите уведомление в панели администратора." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "Скрывать тэги" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Отключить показ списка тэгов в конце записей." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "Очистка базы данных" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Удалять старые записи, полученные с других серверов, ненужные записи в базе данных." -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "Время жизни записей с других серверов" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Если очистка базы данных включена, эта настройка определяет число дней, после которого записи будут удаляться. Собственные записи, записи с закладками, записи в папках не удаляются. 0 отключает очистку." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "Время жизни ничейных элементов" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5294,175 +5304,175 @@ msgid "" "items if set to 0." msgstr "Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "Время жизни необработанных данных коммуникаций." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней." -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "Максимальное число комментариев для записи" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "Максимальное число комментариев на запись при его просмотре" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Сколько комментариев показывать при просмотре записи на отдельной странице? Значение по-умолчанию: 1000." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Временная папка" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Если на вашей системе веб-сервер не имеет доступа к системному пути tmp, введите здесь другой путь." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Искать только в тегах" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "На больших системах текстовый поиск может сильно замедлить систему." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "Показывать счётчики записей по кругам при обновлении страницы сети" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "Для систем, где активно используются круги контактов, это может быть затратно по ресурсам." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "Максимальное число параллельно работающих worker'ов" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "На shared-хостингах установите это в %d. На больших системах можно установить %d или больше. Значение по-умолчанию %d." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "Включить fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Если включено, механизм fastlane будет запускать дополнительного обработчика, если процессы с высоким приоритетом задерживаются из-за процессов с более низким приоритетом." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5470,153 +5480,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "Прямая ретрансляция" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Разрешает прямую отправку на другие серверы без использования ретрансляторов" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "Область ретрансляции" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "Допустимые значения \"all\" или \"tags\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами." -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Отключено" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "all" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "Тэги сервера" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Список тэгов, разделённых запятыми, используемый для подписки в режиме \"tags\"" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "Запретить тэги сервера" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "Разделённый запятыми список тэгов, которые будут отбрасываться." -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "Разрешить пользовательские тэги" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Если включено, то теги. на которые подписались пользователи, будут добавлены в подписку в дополнение к тегам сервера." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "Начать перемещение" @@ -6212,11 +6222,11 @@ msgstr "Отсутствует id события" msgid "Failed to remove event" msgstr "Ошибка удаления события" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Эвент не может закончится до старта." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Название мероприятия и время начала обязательны для заполнения." @@ -6308,7 +6318,7 @@ msgstr "Смотреть" msgid "Create New Event" msgstr "Создать новое мероприятие" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "список" @@ -6968,7 +6978,7 @@ msgid "Actions" msgstr "Действия" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Записи" @@ -7140,33 +7150,33 @@ msgstr "Сообщество недоступно." msgid "Not available." msgstr "Недоступно." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "Нет такого круга" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "Круг: %s" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "Лента недоступна" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Свои контакты" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Включить" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Скрыть" @@ -7198,7 +7208,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7211,179 +7221,179 @@ msgstr[3] "Ошибки" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "Декодированная запись" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "Массив записи до развертывания объектов" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "Запись преобразована" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7894,7 +7904,7 @@ msgstr "Файлы" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Загрузить" @@ -7915,14 +7925,14 @@ msgstr "Файл превышает лимит размера в %s" msgid "File upload failed." msgstr "Загрузка файла не удалась." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Невозможно обработать фото." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Загрузка фото неудачная." @@ -8981,7 +8991,7 @@ msgstr "Вы действительно хотите разрешить этом msgid "Unsupported or missing response type" msgstr "Неподдерживаемый или отсутствующий тип отклика" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "Неполные данные запроса" @@ -8992,11 +9002,11 @@ msgid "" "close this window: %s" msgstr "Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "Ошибочные данные или неизвестный клиент" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "Неподдерживаемый или отсутствующий тип гранта." @@ -9121,21 +9131,21 @@ msgstr "Аудитория: %s
" msgid "Attributed To: %s
" msgstr "Относится к: %s
" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "Фото недоступно." -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "Фотография с id %s недоступна." -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "Проблема с внешним ресурсом по адресу %s." -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "Неправильное фото с id %s." @@ -9187,27 +9197,27 @@ msgstr "Нет контактов." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "Лента %s" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "Записи %s" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "Комментарии %s" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Изображение превышает лимит размера в %s" @@ -9226,11 +9236,11 @@ msgid "" "administrator" msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Файл изображения пуст." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Просмотреть альбом" @@ -10295,12 +10305,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "Название" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Описание" @@ -10698,181 +10708,189 @@ msgstr "Возможные доверенные лица" msgid "No entries." msgstr "Нет записей." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "Выбранная вами тема недоступна." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Не поддерживается)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "Нет предпросмотра" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "Без изображения" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "Маленькое изображение" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "Большое изображение" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Внешний вид" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "Общие настройки тем" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "Личные настройки тем" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "Настройки контента" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Настройки темы" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "Ленты" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Показать тему:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Мобильная тема:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Количество элементов, отображаемых на одной странице:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Максимум 100 элементов" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Обновление браузера каждые хх секунд" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Минимум 10 секунд. Введите -1 для отключения." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "Показывать смайлики" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Когда включено, соответствующие символы отображаются как смайлики." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Бесконечная прокрутка" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "Автоматически подгружать новые записи, когда вы оказываетесь в конце страницы." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "Включить умное ветвление обсуждений" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Включить автоматическое удаление излишних отступов в ветках обсуждений." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "Показывать \"Не нравится\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Показывать кнопку \"Не нравится\" и соответствующие реакции на записях и комментариях." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "Показывать поделившегося" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Показывать первого из поделившихся записью в виде значка над этой записью." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "Оставаться локально" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "Не переходить на другие серверы по ссылкам профилей." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "Показывать отметку для удаления записи" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "Показывать галочку отметки записей для удаления на странице ленты" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "Показывать события" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "Показывать напоминания о днях рождения и список событий на странице ленты." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "Предпросмотр ссылок" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Внешний вид предпросмотра ссылок, который появляется в записях со ссылками." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "Главное меню" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Включите ленты, которые вы хотите видеть в меню каналов слева, выберите ленты, которые будут отображаться в главном меню сверху." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "Языки каналов:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "Выберите все языки, которые вы хотите видеть в своих каналах." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "Начало недели:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "Вид календаря по-умолчанию:" @@ -11037,7 +11055,7 @@ msgstr "(Используется для поиска профилей, нико #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "Уменьшение размера изображения [%s] не удалось." @@ -11077,31 +11095,31 @@ msgstr "Использовать картинку как есть" msgid "Missing uploaded image." msgstr "Отсутствует загруженное изображение" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "Настройки картинки профиля" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "Текущая картинка профиля" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "Загрузить картинку профиля" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "Загрузить картинку:" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "пропустить этот шаг" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "выберите фото из ваших фотоальбомов" @@ -12805,124 +12823,100 @@ msgstr "slackr" msgid "Variations" msgstr "Вариации" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "Светлая (с акцентами)" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "Тёмная (с акцентами)" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "Чёрная (с акцентами)" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "Примечание" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям" -#: view/theme/frio/config.php:173 -msgid "Custom" -msgstr "Другое" +#: view/theme/frio/config.php:152 +msgid "Appearance" +msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" -msgstr "Традиционная" +#: view/theme/frio/config.php:153 +msgid "Accent color" +msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "С акцентами" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "Выбрать цветовую схему" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "Выберите акцент темы" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "Синий" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "Красный" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "Фиолетовый" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "Зелёный" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "Розовый" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "Скопируйте или вставьте код темы" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы." -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "Цвет фона навигационной панели" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "Цвет значков навигационной панели" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "Цвет ссылок" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "Установить цвет фона" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "Прозрачность фона основного содержимого" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "Установить фоновую картинку" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "Стиль фонового изображения" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "Всегда открывать страницу редактора" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "Кнопка создания новой записи всегда будет открывать страницу редактора вместо всплывающего окна. Когда это отключено, страница редактора может быть развёрнута из всплывающего окна, либо при открытии ссылки кнопки в новой вкладке." -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "Фоновое изображение страницы входа" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "Цвет фона страницы входа" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию." @@ -12962,19 +12956,35 @@ msgstr "Мозаика" msgid "Repeat image to fill the screen." msgstr "Размножить изображение по всему экрану." -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "Пропустить до основного содержимого" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "Наверх" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" +msgstr "Другое" + +#: view/theme/frio/theme.php:214 msgid "Guest" msgstr "Гость" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "Посетитель" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index 0bed7565d6..5c4d075ada 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -569,8 +569,6 @@ $a->strings['Moderation'] = 'Модерация'; $a->strings['Content and user moderation'] = 'Модерация пользователей и контента'; $a->strings['Navigation'] = 'Навигация'; $a->strings['Site map'] = 'Карта сайта'; -$a->strings['Embedding disabled'] = 'Встраивание отключено'; -$a->strings['Embedded content'] = 'Встроенное содержание'; $a->strings['first'] = 'первый'; $a->strings['prev'] = 'пред.'; $a->strings['next'] = 'след.'; @@ -734,7 +732,6 @@ $a->strings['No TLS detected'] = 'TLS не обнаружено.'; $a->strings['TLS detected'] = 'TLS обнаружено.'; $a->strings['ImageMagick PHP extension is not installed'] = 'Модуль PHP ImageMagick не установлен'; $a->strings['ImageMagick PHP extension is installed'] = 'Модуль PHP ImageMagick установлен'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick поддерживает GIF'; $a->strings['Database already in use.'] = 'База данных уже используется.'; $a->strings['Could not connect to database.'] = 'Не удалось подключиться к базе данных.'; $a->strings['Monday'] = 'Понедельник'; @@ -2929,16 +2926,8 @@ $a->strings['darkzero'] = 'darkzero'; $a->strings['comix'] = 'comix'; $a->strings['slackr'] = 'slackr'; $a->strings['Variations'] = 'Вариации'; -$a->strings['Light (Accented)'] = 'Светлая (с акцентами)'; -$a->strings['Dark (Accented)'] = 'Тёмная (с акцентами)'; -$a->strings['Black (Accented)'] = 'Чёрная (с акцентами)'; $a->strings['Note'] = 'Примечание'; $a->strings['Check image permissions if all users are allowed to see the image'] = 'Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям'; -$a->strings['Custom'] = 'Другое'; -$a->strings['Legacy'] = 'Традиционная'; -$a->strings['Accented'] = 'С акцентами'; -$a->strings['Select color scheme'] = 'Выбрать цветовую схему'; -$a->strings['Select scheme accent'] = 'Выберите акцент темы'; $a->strings['Blue'] = 'Синий'; $a->strings['Red'] = 'Красный'; $a->strings['Purple'] = 'Фиолетовый'; @@ -2968,6 +2957,7 @@ $a->strings['Mosaic'] = 'Мозаика'; $a->strings['Repeat image to fill the screen.'] = 'Размножить изображение по всему экрану.'; $a->strings['Skip to main content'] = 'Пропустить до основного содержимого'; $a->strings['Back to top'] = 'Наверх'; +$a->strings['Custom'] = 'Другое'; $a->strings['Guest'] = 'Гость'; $a->strings['Visitor'] = 'Посетитель'; $a->strings['Alignment'] = 'Выравнивание'; diff --git a/view/lang/sv/messages.po b/view/lang/sv/messages.po index c9b4ce3d36..1493640b19 100644 --- a/view/lang/sv/messages.po +++ b/view/lang/sv/messages.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-02-04 06:55+0000\n" +"POT-Creation-Date: 2024-03-01 08:51-0500\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Viktor Nilsson, 2022-2023\n" "Language-Team: Swedish (http://app.transifex.com/Friendica/friendica/language/sv/)\n" @@ -44,14 +44,14 @@ msgstr "Objektet kunde inte hämtas." msgid "Empty post discarded." msgstr "Tomt inlägg. Inte sparat." -#: mod/item.php:432 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:433 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:42 #: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 msgid "Item not found." msgstr "Hittar inte." -#: mod/item.php:456 mod/message.php:67 mod/message.php:113 mod/notes.php:45 -#: mod/photos.php:152 mod/photos.php:670 src/Model/Event.php:520 +#: mod/item.php:457 mod/message.php:67 mod/message.php:113 mod/notes.php:45 +#: mod/photos.php:150 mod/photos.php:666 src/Model/Event.php:520 #: src/Module/Attach.php:55 src/Module/BaseApi.php:103 #: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 #: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 @@ -74,14 +74,14 @@ msgstr "Hittar inte." #: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 #: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:62 #: src/Module/Settings/Channels.php:135 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:199 #: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:112 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 +#: src/Module/Settings/Profile/Photo/Index.php:110 +#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 #: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:215 -#: src/Module/Settings/UserExport.php:235 -#: src/Module/Settings/UserExport.php:300 src/Module/User/Delegation.php:154 +#: src/Module/Settings/UserExport.php:213 +#: src/Module/Settings/UserExport.php:233 +#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 #: src/Module/User/Import.php:84 src/Module/User/Import.php:91 msgid "Permission denied." msgstr "Åtkomst nekad." @@ -246,7 +246,7 @@ msgstr "Insamling av meddelanden misslyckades." msgid "Discard" msgstr "Ta bort" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Messages" msgstr "Meddelanden" @@ -291,20 +291,20 @@ msgstr "Ladda upp bild" msgid "Insert web link" msgstr "Infoga länk" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 +#: mod/message.php:201 mod/message.php:357 mod/photos.php:1297 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Object/Post.php:609 msgid "Please wait" msgstr "Var god vänta" -#: mod/message.php:202 mod/message.php:356 mod/photos.php:705 -#: mod/photos.php:824 mod/photos.php:1101 mod/photos.php:1142 -#: mod/photos.php:1198 mod/photos.php:1278 +#: mod/message.php:202 mod/message.php:356 mod/photos.php:701 +#: mod/photos.php:820 mod/photos.php:1097 mod/photos.php:1138 +#: mod/photos.php:1194 mod/photos.php:1274 #: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 #: src/Module/Contact/Profile.php:364 #: src/Module/Debug/ActivityPubConversion.php:140 -#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Babel.php:315 src/Module/Debug/Localtime.php:64 #: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 #: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 #: src/Module/Install.php:274 src/Module/Install.php:309 @@ -318,7 +318,7 @@ msgstr "Var god vänta" #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 #: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 +#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" msgstr "Spara" @@ -389,7 +389,7 @@ msgstr "Personliga anteckningar kan endast ses av dig själv." msgid "Save" msgstr "Spara" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 +#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:576 #: src/Model/Event.php:512 src/Model/Profile.php:233 #: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 @@ -402,99 +402,99 @@ msgid "User not found." msgstr "Användaren hittades inte." #: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: src/Module/Profile/Photos.php:375 msgid "Photo Albums" msgstr "Fotoalbum" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:107 src/Module/Profile/Photos.php:376 +#: src/Module/Profile/Photos.php:396 msgid "Recent Photos" msgstr "Nyligen tillagda bilder" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 +#: src/Module/Profile/Photos.php:398 msgid "Upload New Photos" msgstr "Ladda upp bilder" #: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: src/Module/Profile/Photos.php:359 msgid "everybody" msgstr "alla" -#: mod/photos.php:159 +#: mod/photos.php:157 msgid "Contact information unavailable" msgstr "Kommer inte åt kontaktuppgifter." -#: mod/photos.php:188 +#: mod/photos.php:186 msgid "Album not found." msgstr "Albumet finns inte." -#: mod/photos.php:244 +#: mod/photos.php:242 msgid "Album successfully deleted" msgstr "Borttagningen av albumet lyckades" -#: mod/photos.php:246 +#: mod/photos.php:244 msgid "Album was empty." msgstr "Albumet var tomt." -#: mod/photos.php:277 +#: mod/photos.php:275 msgid "Failed to delete the photo." msgstr "Borttagningen av fotot misslyckades." -#: mod/photos.php:545 +#: mod/photos.php:543 msgid "a photo" msgstr "ett foto" -#: mod/photos.php:545 +#: mod/photos.php:543 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s taggades i %2$s av %3$s" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 +#: mod/photos.php:580 src/Module/Conversation/Community.php:160 +#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 #: src/Module/Search/Index.php:65 msgid "Public access denied." msgstr "Publik åtkomst nekades." -#: mod/photos.php:587 +#: mod/photos.php:585 msgid "No photos selected" msgstr "Inga bilder har valts" -#: mod/photos.php:721 +#: mod/photos.php:717 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:724 msgid "Upload Photos" msgstr "Ladda upp bilder" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:728 mod/photos.php:816 msgid "New album name: " msgstr "Nytt album med namn: " -#: mod/photos.php:733 +#: mod/photos.php:729 msgid "or select existing album:" msgstr "eller välj befintligt album:" -#: mod/photos.php:734 +#: mod/photos.php:730 msgid "Do not show a status post for this upload" msgstr "Visa inte ett status-inlägg för den här uppladdningen" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 +#: mod/photos.php:732 mod/photos.php:1093 src/Content/Conversation.php:403 #: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 msgid "Permissions" msgstr "Åtkomst" -#: mod/photos.php:801 +#: mod/photos.php:797 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Vill du verkligen ta bort det här fotoalbumet och alla dess foton?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:798 mod/photos.php:821 msgid "Delete Album" msgstr "Ta bort album" -#: mod/photos.php:803 mod/photos.php:903 src/Content/Conversation.php:419 +#: mod/photos.php:799 mod/photos.php:899 src/Content/Conversation.php:419 #: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:109 #: src/Module/Contact/Unfollow.php:126 #: src/Module/Media/Attachment/Browser.php:77 @@ -504,133 +504,133 @@ msgstr "Ta bort album" msgid "Cancel" msgstr "Avbryt" -#: mod/photos.php:829 +#: mod/photos.php:825 msgid "Edit Album" msgstr "Redigera album" -#: mod/photos.php:830 +#: mod/photos.php:826 msgid "Drop Album" msgstr "Släpp albumet" -#: mod/photos.php:834 +#: mod/photos.php:830 msgid "Show Newest First" msgstr "Visa nyaste först" -#: mod/photos.php:836 +#: mod/photos.php:832 msgid "Show Oldest First" msgstr "Visa äldsta först" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:853 src/Module/Profile/Photos.php:346 msgid "View Photo" msgstr "Visa bild" -#: mod/photos.php:889 +#: mod/photos.php:885 msgid "Permission denied. Access to this item may be restricted." msgstr "Tillståndet nekades. Åtkomst till det här objektet kan vara begränsad." -#: mod/photos.php:891 +#: mod/photos.php:887 msgid "Photo not available" msgstr "Bilden är inte tillgänglig" -#: mod/photos.php:901 +#: mod/photos.php:897 msgid "Do you really want to delete this photo?" msgstr "Vill du verkligen ta bort det här fotot?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:898 mod/photos.php:1098 msgid "Delete Photo" msgstr "Ta bort bild" -#: mod/photos.php:1000 +#: mod/photos.php:996 msgid "View photo" msgstr "Visa fotot" -#: mod/photos.php:1002 +#: mod/photos.php:998 msgid "Edit photo" msgstr "Hantera bild" -#: mod/photos.php:1003 +#: mod/photos.php:999 msgid "Delete photo" msgstr "Ta bort fotot" -#: mod/photos.php:1004 +#: mod/photos.php:1000 msgid "Use as profile photo" msgstr "Använd som ett profilfoto" -#: mod/photos.php:1011 +#: mod/photos.php:1007 msgid "Private Photo" msgstr "Privat foto" -#: mod/photos.php:1017 +#: mod/photos.php:1013 msgid "View Full Size" msgstr "Visa fullstor" -#: mod/photos.php:1070 +#: mod/photos.php:1066 msgid "Tags: " msgstr "Taggar: " -#: mod/photos.php:1073 +#: mod/photos.php:1069 msgid "[Select tags to remove]" msgstr "[Välj taggar att ta bort]" -#: mod/photos.php:1088 +#: mod/photos.php:1084 msgid "New album name" msgstr "Nytt album med namn" -#: mod/photos.php:1089 +#: mod/photos.php:1085 msgid "Caption" msgstr "Caption" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "Add a Tag" msgstr "Lägg till tagg" -#: mod/photos.php:1090 +#: mod/photos.php:1086 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping" -#: mod/photos.php:1091 +#: mod/photos.php:1087 msgid "Do not rotate" msgstr "Rotera inte" -#: mod/photos.php:1092 +#: mod/photos.php:1088 msgid "Rotate CW (right)" msgstr "Rotera medurs (höger)" -#: mod/photos.php:1093 +#: mod/photos.php:1089 msgid "Rotate CCW (left)" msgstr "Rotera Moturs (vänster)" -#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 +#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1271 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 #: src/Object/Post.php:1151 msgid "This is you" msgstr "Det här är du" -#: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 +#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1273 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 #: src/Object/Post.php:1153 msgid "Comment" msgstr "Kommentera" -#: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 +#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 #: src/Object/Post.php:1167 msgid "Preview" msgstr "Förhandsgranskning" -#: mod/photos.php:1144 src/Content/Conversation.php:369 +#: mod/photos.php:1140 src/Content/Conversation.php:369 #: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Laddar..." -#: mod/photos.php:1236 src/Content/Conversation.php:1501 +#: mod/photos.php:1232 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Välj" -#: mod/photos.php:1237 src/Content/Conversation.php:1502 +#: mod/photos.php:1233 src/Content/Conversation.php:1502 #: src/Module/Moderation/Users/Active.php:136 #: src/Module/Moderation/Users/Blocked.php:136 #: src/Module/Moderation/Users/Index.php:151 @@ -639,23 +639,23 @@ msgstr "Välj" msgid "Delete" msgstr "Ta bort" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1294 src/Object/Post.php:426 msgid "Like" msgstr "Gilla" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1295 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Jag gillar det här (växla)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1296 src/Object/Post.php:427 msgid "Dislike" msgstr "Ogilla" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1298 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Jag ogillar det här (växla)" -#: mod/photos.php:1324 +#: mod/photos.php:1320 msgid "Map" msgstr "Karta" @@ -796,18 +796,18 @@ msgid "All contacts" msgstr "Alla kontakter" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 +#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 #: src/Module/Settings/Channels.php:154 msgid "Followers" msgstr "Följare" -#: src/BaseModule.php:444 src/Content/Widget.php:240 +#: src/BaseModule.php:444 src/Content/Widget.php:241 #: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 msgid "Following" msgstr "Följer" -#: src/BaseModule.php:449 src/Content/Widget.php:241 +#: src/BaseModule.php:449 src/Content/Widget.php:242 #: src/Module/Contact.php:420 msgid "Mutual friends" msgstr "" @@ -1085,7 +1085,7 @@ msgstr "RSS/Atom" msgid "Email" msgstr "E-postadress" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 msgid "Diaspora" msgstr "Diaspora" @@ -1563,29 +1563,37 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:48 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:48 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:49 #: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:49 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 #: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:50 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 #: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:51 msgid "Posts with videos" msgstr "" @@ -1763,7 +1771,7 @@ msgid "" msgstr "" #: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 +#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 #: src/Model/User.php:1381 msgid "Groups" msgstr "" @@ -1772,12 +1780,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 msgid "show less" msgstr "visa mindre" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 +#: src/Content/Widget.php:514 msgid "show more" msgstr "visa mer" @@ -1785,7 +1793,7 @@ msgstr "visa mer" msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:332 src/Model/Item.php:3254 msgid "event" msgstr "händelse" @@ -1793,7 +1801,7 @@ msgstr "händelse" msgid "status" msgstr "status" -#: src/Content/Item.php:341 src/Model/Item.php:3252 +#: src/Content/Item.php:341 src/Model/Item.php:3256 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "foto" @@ -1803,36 +1811,36 @@ msgstr "foto" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s taggade %2$ss %3$s med %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:429 view/theme/frio/theme.php:265 msgid "Follow Thread" msgstr "Följ tråd" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:430 src/Model/Contact.php:1243 msgid "View Status" msgstr "Visa status" #: src/Content/Item.php:431 src/Content/Item.php:452 -#: src/Model/Contact.php:1184 src/Model/Contact.php:1241 -#: src/Model/Contact.php:1251 src/Module/Directory.php:157 +#: src/Model/Contact.php:1177 src/Model/Contact.php:1234 +#: src/Model/Contact.php:1244 src/Module/Directory.php:157 #: src/Module/Settings/Profile/Index.php:259 msgid "View Profile" msgstr "Visa profil" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:432 src/Model/Contact.php:1245 msgid "View Photos" msgstr "Visa foton" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 +#: src/Content/Item.php:433 src/Model/Contact.php:1212 #: src/Model/Profile.php:468 msgid "Network Posts" msgstr "Nätverksinlägg" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:434 src/Model/Contact.php:1236 +#: src/Model/Contact.php:1247 msgid "View Contact" msgstr "Visa kontakt" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:435 src/Model/Contact.php:1248 msgid "Send PM" msgstr "Skicka privat meddelande" @@ -1868,7 +1876,7 @@ msgid "Languages" msgstr "Språk" #: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 +#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 #: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 msgid "Connect/Follow" msgstr "Gör till kontakt/Följ" @@ -1922,42 +1930,42 @@ msgstr "" #: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 #: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 #: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:230 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 msgid "Your profile page" msgstr "Din profil-sida" #: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 msgid "Photos" msgstr "Bilder" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 msgid "Your photos" msgstr "Dina foton" #: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 #: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:235 +#: view/theme/frio/theme.php:238 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 msgid "Your postings with media" msgstr "" #: src/Content/Nav.php:233 src/Content/Nav.php:293 #: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 #: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 +#: view/theme/frio/theme.php:243 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 msgid "Your calendar" msgstr "" @@ -2027,7 +2035,7 @@ msgstr "Taggar" #: src/Content/Nav.php:274 src/Content/Nav.php:329 #: src/Content/Text/HTML.php:877 src/Module/BaseProfile.php:127 #: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:243 +#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 msgid "Contacts" msgstr "Kontakter" @@ -2066,15 +2074,15 @@ msgstr "Villkor för användning" msgid "Terms of Service of this Friendica instance" msgstr "Den här Friendica-instansens villkor för användning" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Network" msgstr "Nätverk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 msgid "Conversations from your friends" msgstr "Konversationer från dina vänner" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 msgid "Your posts and conversations" msgstr "Dina inlägg och konversationer" @@ -2103,7 +2111,7 @@ msgstr "Markera som läst" msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 msgid "Private mail" msgstr "Privat e-post" @@ -2125,15 +2133,15 @@ msgstr "Hantera andra sidor" #: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 #: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:242 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 msgid "Settings" msgstr "Inställningar" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 msgid "Account settings" msgstr "Kontoinställningar" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 msgid "Manage/edit friends and contacts" msgstr "Hantera/redigera vänner och kontakter" @@ -2171,14 +2179,6 @@ msgstr "Navigering" msgid "Site map" msgstr "Karta över webbplatsen" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "Funktionen bädda in är avstängd" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "Inbäddat innehåll" - #: src/Content/Pager.php:216 msgid "first" msgstr "första" @@ -2195,38 +2195,38 @@ msgstr "nästa" msgid "last" msgstr "sista" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 +#: src/Content/Text/BBCode.php:1729 msgid "Image/photo" msgstr "Bild/foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:985 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:1005 src/Model/Item.php:3983 -#: src/Model/Item.php:3989 src/Model/Item.php:3990 +#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 +#: src/Model/Item.php:4005 src/Model/Item.php:4006 msgid "Link to source" msgstr "Länk till källa" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 msgid "Click to open/close" msgstr "Klicka för att öppna/stänga" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1668 msgid "$1 wrote:" msgstr "$1 skrev:" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 msgid "Encrypted content" msgstr "Krypterat innehåll" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:1997 msgid "Invalid source protocol" msgstr "Ogiltigt källprotokoll" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2016 msgid "Invalid link protocol" msgstr "Ogiltigt länkprotokoll" @@ -2309,90 +2309,90 @@ msgstr "Medlemskatalog för flera sajter (global)" msgid "Local Directory" msgstr "Lokal-mapp" -#: src/Content/Widget.php:215 src/Model/Circle.php:601 +#: src/Content/Widget.php:216 src/Model/Circle.php:601 #: src/Module/Contact.php:400 src/Module/Welcome.php:76 msgid "Circles" msgstr "" -#: src/Content/Widget.php:217 +#: src/Content/Widget.php:218 msgid "Everyone" msgstr "Alla" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:243 src/Module/Contact.php:423 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:248 msgid "Relationships" msgstr "Relationer" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 +#: src/Content/Widget.php:250 src/Module/Circle.php:292 #: src/Module/Contact.php:344 msgid "All Contacts" msgstr "Alla kontakter" -#: src/Content/Widget.php:288 +#: src/Content/Widget.php:289 msgid "Protocols" msgstr "Protokoll" -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:291 msgid "All Protocols" msgstr "Alla protokoll" -#: src/Content/Widget.php:318 +#: src/Content/Widget.php:319 msgid "Saved Folders" msgstr "Sparade mappar" -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:321 src/Content/Widget.php:352 msgid "Everything" msgstr "Allting" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:350 msgid "Categories" msgstr "Kategorier" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:407 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemensam kontakt" msgstr[1] "%d gemensamma kontakter" -#: src/Content/Widget.php:506 +#: src/Content/Widget.php:507 msgid "Archives" msgstr "Arkiv" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:515 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:535 msgid "Persons" msgstr "Personer" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:536 msgid "Organisations" msgstr "Organisationer" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:537 src/Model/Contact.php:1739 msgid "News" msgstr "Nyheter" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:539 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 +#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 msgid "Account Types" msgstr "Typer av konton" -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 msgid "All" msgstr "Alla" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 +#: src/Content/Widget.php:593 src/Module/Admin/Site.php:474 #: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Channels" msgstr "" @@ -2442,12 +2442,12 @@ msgstr[1] "Trendande taggar (de senaste %d timmarna)" msgid "More Trending Tags" msgstr "Fler trendande taggar" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 #: src/Model/Profile.php:461 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 +#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 #: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "Nämn" @@ -2463,7 +2463,7 @@ msgid "Matrix:" msgstr "Matrix:" #: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 +#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 #: src/Model/Profile.php:375 src/Module/Contact/Profile.php:406 #: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 #: src/Module/Profile/Profile.php:221 @@ -2475,13 +2475,13 @@ msgstr "Plats:" msgid "Network:" msgstr "Nätverk:" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1250 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "Avfölj" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 #: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -2854,27 +2854,23 @@ msgstr "Ingen TLS upptäcktes" msgid "TLS detected" msgstr "TLS upptäcktes" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:636 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:638 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:650 -msgid "ImageMagick supports GIF" -msgstr "ImageMagick har stöd för GIF" - -#: src/Core/Installer.php:672 +#: src/Core/Installer.php:659 msgid "Database already in use." msgstr "Databas används redan." -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:664 msgid "Could not connect to database." msgstr "Kunde inte ansluta till databasen." -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:444 src/Model/Item.php:2298 msgid "Undetermined" msgstr "" @@ -2884,37 +2880,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Module/Settings/Display.php:287 msgid "Monday" msgstr "måndag" #: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Module/Settings/Display.php:288 msgid "Tuesday" msgstr "tisdag" #: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Module/Settings/Display.php:289 msgid "Wednesday" msgstr "onsdag" #: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Module/Settings/Display.php:290 msgid "Thursday" msgstr "torsdag" #: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Module/Settings/Display.php:291 msgid "Friday" msgstr "fredag" #: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Module/Settings/Display.php:292 msgid "Saturday" msgstr "lördag" #: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Sunday" msgstr "söndag" @@ -3252,47 +3248,51 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 +#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 #: src/Module/Notifications/Introductions.php:132 #: src/Module/Notifications/Introductions.php:204 msgid "Approve" msgstr "Godkänn" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1735 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 msgid "Relay" msgstr "Fördröj" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3050 msgid "Disallowed profile URL." msgstr "Otillåten profil-URL." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blockerad domän" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3060 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3069 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3087 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" +#: src/Model/Contact.php:3104 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + #: src/Model/Contact.php:3111 msgid "The profile address specified does not provide adequate information." msgstr "Angiven profiladress ger inte tillräcklig information." @@ -3340,12 +3340,12 @@ msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" #: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:942 msgid "Starts:" msgstr "Börjar:" #: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:946 msgid "Finishes:" msgstr "Slutar:" @@ -3363,17 +3363,17 @@ msgid "today" msgstr "idag" #: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 msgid "month" msgstr "månad" #: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 msgid "week" msgstr "vecka" #: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 msgid "day" msgstr "dag" @@ -3418,109 +3418,109 @@ msgstr "" msgid "g:i A" msgstr "" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:961 src/Model/Event.php:963 msgid "Show map" msgstr "Visa karta" -#: src/Model/Event.php:965 +#: src/Model/Event.php:962 msgid "Hide map" msgstr "Göm karta" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1055 #, php-format msgid "%s's birthday" msgstr "%s's födelsedag" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1056 #, php-format msgid "Happy Birthday %s" msgstr "Grattis på födelsedagen %s" -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2305 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2307 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2310 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Upptäckte språken i det här inlägget:\\n%s" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3258 msgid "activity" msgstr "aktivitet" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3260 msgid "comment" msgstr "kommentar" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "inlägg" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3434 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3436 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3438 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3442 #, php-format msgid "Content warning: %s" msgstr "Innehållsvarning: %s" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3906 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3937 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3923 +#: src/Model/Item.php:3939 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3944 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3930 +#: src/Model/Item.php:3946 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3948 #, php-format msgid "Poll end: %s" msgstr "Omröstningen slut om: %s" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:3982 src/Model/Item.php:3983 msgid "View on separate page" msgstr "Visa på en separat sida" @@ -3528,7 +3528,7 @@ msgstr "Visa på en separat sida" msgid "[no subject]" msgstr "[ingen rubrik]" -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 msgid "Wall Photos" msgstr "Loggbilder" @@ -3812,11 +3812,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1413 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1597 +#: src/Model/User.php:1595 #, php-format msgid "" "\n" @@ -3824,7 +3824,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1600 +#: src/Model/User.php:1598 #, php-format msgid "" "\n" @@ -3855,12 +3855,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1632 src/Model/User.php:1738 +#: src/Model/User.php:1630 src/Model/User.php:1736 #, php-format msgid "Registration details for %s" msgstr "Registreringsdetaljer för 1%s" -#: src/Model/User.php:1652 +#: src/Model/User.php:1650 #, php-format msgid "" "\n" @@ -3875,12 +3875,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1669 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1693 #, php-format msgid "" "\n" @@ -3889,7 +3889,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1701 #, php-format msgid "" "\n" @@ -3920,7 +3920,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1763 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3945,14 +3945,14 @@ msgid "Disable" msgstr "Inaktivera" #: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 msgid "Enable" msgstr "Aktivera" #: src/Module/Admin/Addons/Details.php:111 #: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:218 #: src/Module/Admin/Logs/Settings.php:85 src/Module/Admin/Logs/View.php:83 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:455 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:457 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3992,12 +3992,12 @@ msgid "Addon %s failed to install." msgstr "" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:458 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:460 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:551 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 #: src/Module/Settings/Connectors.php:246 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:312 #: src/Module/Settings/Features.php:76 msgid "Save Settings" msgstr "Spara inställningar" @@ -4192,8 +4192,8 @@ msgid "Enable Debugging" msgstr "Aktivera avlusning" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:488 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4354,269 +4354,269 @@ msgstr "Skapades" msgid "Priority" msgstr "Prioritet" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:244 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:370 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 msgid "No special theme for mobile devices" msgstr "Inget speciellt tema för mobil-enheter" -#: src/Module/Admin/Site.php:387 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:401 msgid "No community page" msgstr "Ingen gemenskapssida" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:402 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:404 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:405 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:411 msgid "Multi user instance" msgstr "Instans för flertalet användare" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "Closed" msgstr "Stängd" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:435 msgid "Requires approval" msgstr "Kräver godkännande" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:436 msgid "Open" msgstr "Öppen" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Don't check" msgstr "Kolla inte" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:441 msgid "check the stable version" msgstr "kolla den stabila versionen" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:442 msgid "check the development version" msgstr "kolla utvecklingsversionen" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:446 msgid "none" msgstr "ingen" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:447 msgid "Local contacts" msgstr "Lokala kontakter " -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:448 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Sida" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "General Information" msgstr "Generell information" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 msgid "Registration" msgstr "Registrering" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "File upload" msgstr "Fil-uppladdning" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "Policies" msgstr "Policyer" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avancerat" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:466 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Performance" msgstr "Prestanda" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "Worker" msgstr "Arbetare" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "Message Relay" msgstr "Meddelandefördröjning" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:470 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:471 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "Site name" msgstr "Namn på sida" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "Sender Email" msgstr "Sändare av e-post" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Banner/Logo" msgstr "Banderoll/Logga" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Email Banner/Logo" msgstr "E-postbanderoll/logga" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Shortcut icon" msgstr "Genvägsikon" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:486 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Additional Info" msgstr "Ytterligare info" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:488 msgid "System language" msgstr "Systemets språk" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 msgid "System theme" msgstr "Systemets tema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:489 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:490 msgid "Theme for mobile devices" msgstr "Tema för mobilenheter" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Force SSL" msgstr "Tvinga SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:493 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum image size" msgstr "Maximal bildstorlek" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4624,35 +4624,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Maximum image length" msgstr "Maximal bildlängd" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "JPEG image quality" msgstr "Kvalité för JPEG-bilden" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "Register policy" msgstr "Registrera policy" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4660,157 +4660,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Maximum Daily Registrations" msgstr "Maximala registreringar varje dag" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Register text" msgstr "Registrera text" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Forbidden Nicknames" msgstr "Förbjudna smeknamn" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Accounts abandoned after x days" msgstr "Konton som övergavs efter x dagar" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Allowed friend domains" msgstr "Tillåtna vän-domäner" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Allowed email domains" msgstr "Tillåtna e-postdomäner" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:510 +msgid "" +"Comma separated list of domains which are rejected as email addresses for " +"registrations to this site. Wildcards are accepted." +msgstr "" + +#: src/Module/Admin/Site.php:511 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:511 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:512 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "Block public" msgstr "Blockera publik" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:513 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Force publish" msgstr "Tvinga publicering" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:514 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:515 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "Private posts by default for new users" msgstr "Privata inlägg som standard för nya användare" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:516 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "Don't include post content in email notifications" msgstr "Inkludera inte inläggets innehåll i aviseringar för e-post" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:517 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:518 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:519 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4818,11 +4828,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:520 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4831,339 +4841,339 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:521 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:522 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:523 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:524 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:522 +#: src/Module/Admin/Site.php:525 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:525 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:526 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:530 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "" "The maximum number of posts per user on the local community page. This is " "useful, when a single user floods the local community page." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "The maximum number of posts per server on the global community page. This is" " useful, when posts from a single server flood the global community page." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "Enable Diaspora support" msgstr "Aktivera Diaspora-support" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "Verify SSL" msgstr "Bekräfta SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "Proxy user" msgstr "Proxy-användare" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "Proxy URL" msgstr "URL för proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:545 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Network timeout" msgstr "Tidsgräns för nätverket" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Värdet är i sekunder. Ställ in det till 0 för obegränsat (rekommenderas inte)." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:548 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:552 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:554 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5171,50 +5181,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5222,175 +5232,175 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:570 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Temp path" msgstr "Tillfällig genväg" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Only search in tags" msgstr "Sök endast i taggar" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Maximum age of items in the search table in days. Lower values will increase" " the performance and reduce disk usage. 0 means no age restriction." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:578 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:587 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5398,153 +5408,153 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:588 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:593 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:594 msgid "" "Maximum amount of tags in a post before it is rejected as spam. The post has" " to contain at least one link. Posts from subscribed accounts will not be " "rejected." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:596 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:597 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:598 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:600 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:601 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:602 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:603 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:604 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:607 msgid "Start Relocation" msgstr "" @@ -6132,11 +6142,11 @@ msgstr "" msgid "Failed to remove event" msgstr "Borttagning av evenemanget misslyckades" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 msgid "Event can not end before it has started." msgstr "Evenemanget kan inte sluta före det har börjat." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 msgid "Event title and start time are required." msgstr "Evenemangets titel och start-tid krävs." @@ -6228,7 +6238,7 @@ msgstr "Visa" msgid "Create New Event" msgstr "Skapa nytt evenemang" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 msgid "list" msgstr "lista" @@ -6876,7 +6886,7 @@ msgid "Actions" msgstr "" #: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 msgid "Status" msgstr "Status" @@ -7048,33 +7058,33 @@ msgstr "" msgid "Not available." msgstr "Inte tillgängligt." -#: src/Module/Conversation/Network.php:202 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:206 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 +#: src/Module/Conversation/Timeline.php:196 msgid "Own Contacts" msgstr "Egna kontakter" -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:200 msgid "Include" msgstr "Inkludera" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:201 msgid "Hide" msgstr "Dölj" @@ -7106,7 +7116,7 @@ msgid "Result Item" msgstr "" #: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:293 src/Module/Moderation/Item/Source.php:87 +#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 #: src/Module/Security/TwoFactor/Verify.php:98 msgid "Error" msgid_plural "Errors" @@ -7117,179 +7127,179 @@ msgstr[1] "Fel" msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:52 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:58 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:64 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:69 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:74 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:80 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:86 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:92 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:96 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:102 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:108 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:116 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:120 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:126 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:131 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:135 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:142 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:151 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:157 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:162 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:168 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:175 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:180 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:187 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:192 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:197 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:203 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:209 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:214 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:220 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:226 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:232 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:238 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:256 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:277 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:284 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:289 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:295 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:305 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:307 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:308 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:310 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:311 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:313 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" @@ -7798,7 +7808,7 @@ msgstr "Filer" #: src/Module/Media/Attachment/Browser.php:79 #: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:127 msgid "Upload" msgstr "Ladda upp" @@ -7819,14 +7829,14 @@ msgstr "Filen överstiger maxstorleken %s" msgid "File upload failed." msgstr "Uppladdning av filen misslyckades." -#: src/Module/Media/Photo/Upload.php:152 src/Module/Media/Photo/Upload.php:153 -#: src/Module/Profile/Photos.php:217 -#: src/Module/Settings/Profile/Photo/Index.php:69 +#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 +#: src/Module/Profile/Photos.php:215 +#: src/Module/Settings/Profile/Photo/Index.php:67 msgid "Unable to process image." msgstr "Det gick inte att behandla bilden." -#: src/Module/Media/Photo/Upload.php:178 src/Module/Profile/Photos.php:237 -#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 +#: src/Module/Settings/Profile/Photo/Index.php:94 msgid "Image upload failed." msgstr "Fel vid bilduppladdning." @@ -8859,7 +8869,7 @@ msgstr "Vill du ge den här applikationen åtkomst till dina inlägg och kontakt msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 msgid "Incomplete request data" msgstr "" @@ -8870,11 +8880,11 @@ msgid "" "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:80 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:105 msgid "Unsupported or missing grant type" msgstr "" @@ -8999,21 +9009,21 @@ msgstr "" msgid "Attributed To: %s
" msgstr "" -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:123 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:148 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:189 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:191 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9065,27 +9075,27 @@ msgstr "Inga kontakter." #: src/Module/Profile/Conversations.php:106 #: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098 +#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1099 #: src/Protocol/OStatus.php:1009 #, php-format msgid "%s's timeline" msgstr "" #: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Protocol/Feed.php:1103 src/Protocol/OStatus.php:1014 #, php-format msgid "%s's posts" msgstr "" #: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 #, php-format msgid "%s's comments" msgstr "" #: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:194 -#: src/Module/Settings/Profile/Photo/Index.php:60 +#: src/Module/Profile/Photos.php:192 +#: src/Module/Settings/Profile/Photo/Index.php:58 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildstorlek överstiger %s" @@ -9104,11 +9114,11 @@ msgid "" "administrator" msgstr "Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör" -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:200 msgid "Image file is empty." msgstr "Bildfilen är tom." -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:352 msgid "View Album" msgstr "Titta i album" @@ -10171,12 +10181,12 @@ msgid "" msgstr "" #: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:342 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "" @@ -10574,181 +10584,189 @@ msgstr "Potentiella delegater" msgid "No entries." msgstr "Inga poster." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:185 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:263 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:264 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:265 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:266 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Display Settings" msgstr "Skärm-inställningar" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:313 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:314 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:315 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 +#: src/Module/Settings/Display.php:316 view/theme/duepuntozero/config.php:86 +#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 #: view/theme/vier/config.php:136 msgid "Theme settings" msgstr "Tema-inställningar" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:317 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Display Theme:" msgstr "Tema/utseende:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Mobile Theme:" msgstr "Mobil-tema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Number of items to display per page:" msgstr "Antalet objekt att visa per sida:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 msgid "Maximum of 100 items" msgstr "Maximalt 100 objekt" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Update browser every xx seconds" msgstr "Uppdatera webbläsaren var xx sekunder" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Infinite scroll" msgstr "Oändlig skroll" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:336 +msgid "Display sensitive content" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "If enabled, pictures in posts marked as \"sensitive\" will not be blurred." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:337 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:340 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:349 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:351 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:352 msgid "Default calendar view:" msgstr "" @@ -10913,7 +10931,7 @@ msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte f #: src/Module/Settings/Profile/Photo/Crop.php:107 #: src/Module/Settings/Profile/Photo/Crop.php:125 #: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:102 +#: src/Module/Settings/Profile/Photo/Index.php:100 #, php-format msgid "Image size reduction [%s] failed." msgstr "" @@ -10953,31 +10971,31 @@ msgstr "" msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:123 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:124 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:125 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:126 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:131 msgid "or" msgstr "eller" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:133 msgid "skip this step" msgstr "hoppa över det här steget" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:135 msgid "select a photo from your photo albums" msgstr "välj en bild från ett album" @@ -12677,124 +12695,100 @@ msgstr "" msgid "Variations" msgstr "" -#: view/theme/frio/config.php:153 -msgid "Light (Accented)" -msgstr "" - -#: view/theme/frio/config.php:154 -msgid "Dark (Accented)" -msgstr "" - -#: view/theme/frio/config.php:155 -msgid "Black (Accented)" -msgstr "" - -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:146 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:152 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:153 +msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:175 -msgid "Accented" -msgstr "" - -#: view/theme/frio/config.php:176 -msgid "Select color scheme" -msgstr "" - -#: view/theme/frio/config.php:177 -msgid "Select scheme accent" -msgstr "" - -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:153 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:154 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:155 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:156 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:157 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:158 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:159 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:160 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:161 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:164 msgid "" "The New Post button always open the Compose page " "instead of the modal form. When this is disabled, the Compose page can be " "accessed with a middle click on the link or from the modal." msgstr "" -#: view/theme/frio/config.php:192 +#: view/theme/frio/config.php:168 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:172 msgid "Leave background image and color empty for theme defaults" msgstr "" @@ -12834,19 +12828,35 @@ msgstr "" msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 -msgid "Guest" +#: view/theme/frio/php/scheme.php:105 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:107 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:118 +msgid "Custom" msgstr "" #: view/theme/frio/theme.php:214 +msgid "Guest" +msgstr "" + +#: view/theme/frio/theme.php:217 msgid "Visitor" msgstr "" diff --git a/view/lang/sv/strings.php b/view/lang/sv/strings.php index add772e502..2e4ebb63f4 100644 --- a/view/lang/sv/strings.php +++ b/view/lang/sv/strings.php @@ -347,8 +347,6 @@ $a->strings['Manage/edit friends and contacts'] = 'Hantera/redigera vänner och $a->strings['Admin'] = 'Administratör'; $a->strings['Navigation'] = 'Navigering'; $a->strings['Site map'] = 'Karta över webbplatsen'; -$a->strings['Embedding disabled'] = 'Funktionen bädda in är avstängd'; -$a->strings['Embedded content'] = 'Inbäddat innehåll'; $a->strings['first'] = 'första'; $a->strings['prev'] = 'föreg'; $a->strings['next'] = 'nästa'; @@ -453,7 +451,6 @@ $a->strings['config/local.config.php is writable'] = 'config/local.config.php ä $a->strings['view/smarty3 is writable'] = 'view/smarty3 är skrivbar'; $a->strings['No TLS detected'] = 'Ingen TLS upptäcktes'; $a->strings['TLS detected'] = 'TLS upptäcktes'; -$a->strings['ImageMagick supports GIF'] = 'ImageMagick har stöd för GIF'; $a->strings['Database already in use.'] = 'Databas används redan.'; $a->strings['Could not connect to database.'] = 'Kunde inte ansluta till databasen.'; $a->strings['Monday'] = 'måndag'; From a6b033c4f68cae61cf5a89b5526bad5c89d9ab77 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 4 Mar 2024 17:38:32 +0100 Subject: [PATCH 231/281] CHANGELOG for 2024.03 --- CHANGELOG | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index b454648c33..38bf5bde2f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,53 @@ Version 2024.03 (unreleased) Friendica Core + Updates to the translations AR, BG, CS, DE, EO, ES, FR, GD, HU, IS, IT, JA, PL, RO, RU, SV + Updates to the themes (frio, vier) [annando, foss-, haheute, MrPetovan, Raroun, toddy15] + Improved the channel feature [annando] + Improved the search performance [annando] + Improved spam detection [annando] + Improved the account overview on the moderation page [annando] + Improved account creation via CLI console [mexon] + Improved the Mastodon compatible API [annando, MrPetovan] + Improved logging of the system load value [annando] + Improved image handling [annando] + Fixed an issue that could lead to empty URLs in the server block list [annando] + Fixed XSS attacks [leoOliver, MrPetovan, snajafov] + Fixed enumberation attack on photo URLs [MrPetovan] + Fixed an issue when importing emails [annando] + Fixed an issue that blocked users could still use the API [annando] + Fixed an issue when fetching remote content [anndndo, arcanicanis] + General code cleanup [annando, MrPetovan] + Updated the PasswordExposed usage [mexon] + Removed fpostit (Friendica post bookmarklet) [MrPetovan] + Removed the possibility for users to follow relays directly [annando] + Removed unused OEmbed functionality [annando] + Removed legacy schemes from frio theme [MrPetovan] + Added blur effect to sensitive images and user setting against it [annando] + Added account type Channel Relay [annando] + Added OCR generated image descriptions via tesseract addon [annando] + Added WebP and BMP support [annando] + Added blocked email addresses for registration [annando] Friendica Addons + advancedcontentfilter + Updated dependency for PHP8.2 compatibility [MrPetovan] + bluesky + Overhaul of the Bluesky connector [annando] + Fixed problem with empty quoted shares [annando] + openstreetmap + Fix a config problem [haheute] + pnut: + Connector addon was added [spacenerdmo] + tesseract + Added the addon to generate image descriptions from images via OCR [annando] + url_replace + Added addon to replace URLs from Twitter, Youtube and some others using 12ft.io [toddy15] Closed Issues + 903, 7732, 8768, 11142, 13220, 13293, 13765, 13768, 13809, + 13814, 13814, 13818, 13819, 13822, 13823, 13828, 13839, 13844, + 13845, 13859, 13863, 13877, 13886, 13887, 13897, 13899, 13905, + 13909, 13922, 13940, 13949, 13953, 13955 Version 2023.12 (2023-12-24) Friendica Core From 2cedbae2062e1391530d8497ab6b8cb02bd35b49 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 5 Mar 2024 07:14:39 +0100 Subject: [PATCH 232/281] ypots --- CHANGELOG | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 38bf5bde2f..36262bdfbc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -12,10 +12,9 @@ Version 2024.03 (unreleased) Improved image handling [annando] Fixed an issue that could lead to empty URLs in the server block list [annando] Fixed XSS attacks [leoOliver, MrPetovan, snajafov] - Fixed enumberation attack on photo URLs [MrPetovan] Fixed an issue when importing emails [annando] Fixed an issue that blocked users could still use the API [annando] - Fixed an issue when fetching remote content [anndndo, arcanicanis] + Fixed an issue when fetching remote content [annando, arcanicanis] General code cleanup [annando, MrPetovan] Updated the PasswordExposed usage [mexon] Removed fpostit (Friendica post bookmarklet) [MrPetovan] From 72e045e7443704d804c29d4e1ed26980c2125e69 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 5 Mar 2024 14:06:26 +0000 Subject: [PATCH 233/281] Improved assigning of "last-activity" and "login_date" --- src/Model/User.php | 31 +++++++++++++++---------------- src/Security/Authentication.php | 26 +++++--------------------- src/Security/BasicAuth.php | 5 +---- src/Security/OAuth.php | 5 ++++- 4 files changed, 25 insertions(+), 42 deletions(-) diff --git a/src/Model/User.php b/src/Model/User.php index 9472407715..04c6943452 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -826,27 +826,26 @@ class User /** * Update the day of the last activity of the given user * - * @param integer $uid + * @param array $user + * @param bool $refresh_login * @return void */ - public static function updateLastActivity(int $uid) + public static function updateLastActivity(array $user, bool $refresh_login) { - if (!$uid) { - return; - } - - $user = self::getById($uid, ['last-activity']); - if (empty($user)) { - return; - } - $current_day = DateTimeFormat::utcNow('Y-m-d'); - - if ($user['last-activity'] != $current_day) { - self::update(['last-activity' => $current_day], $uid); - // Set the last activity for all identities of the user - DBA::update('user', ['last-activity' => $current_day], ['parent-uid' => $uid, 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false]); + if (($user['last-activity'] == $current_day) && (!$refresh_login || DateTimeFormat::utc($user['login_date'], 'z-H') == date('z-H'))) { + return; } + + $fields = ['last-activity' => $current_day]; + if ($refresh_login) { + $fields['login_date'] = DateTimeFormat::utcNow(); + } + + Logger::debug('Set last activity for user', ['uid' => $user['uid'], 'fields' => $fields]); + self::update($fields, $user['uid']); + // Set the last activity for all identities of the user + DBA::update('user', $fields, ['parent-uid' => $user['uid'], 'verified' => true, 'blocked' => false, 'account_removed' => false, 'account_expired' => false]); } /** diff --git a/src/Security/Authentication.php b/src/Security/Authentication.php index 5ec15567f0..93e6344a35 100644 --- a/src/Security/Authentication.php +++ b/src/Security/Authentication.php @@ -194,18 +194,7 @@ class Authentication $this->baseUrl->redirect(); } - // Make sure to refresh the last login time for the user if the user - // stays logged in for a long time, e.g. with "Remember Me" - $login_refresh = false; - if (!$this->session->get('last_login_date')) { - $this->session->set('last_login_date', DateTimeFormat::utcNow()); - } - if (strcmp(DateTimeFormat::utc('now - 12 hours'), $this->session->get('last_login_date')) > 0) { - $this->session->set('last_login_date', DateTimeFormat::utcNow()); - $login_refresh = true; - } - - $this->setForUser($a, $user, false, false, $login_refresh); + $this->setForUser($a, $user); } } } @@ -283,7 +272,6 @@ class Authentication // if we haven't failed up this point, log them in. $this->session->set('remember', $remember); - $this->session->set('last_login_date', DateTimeFormat::utcNow()); $openid_identity = $this->session->get('openid_identity'); $openid_server = $this->session->get('openid_server'); @@ -311,7 +299,7 @@ class Authentication * @param array $user_record The current "user" record * @param bool $login_initial * @param bool $interactive - * @param bool $login_refresh + * @param bool $refresh_login * * @throws HTTPException\FoundException * @throws HTTPException\MovedPermanentlyException @@ -321,7 +309,7 @@ class Authentication * @throws HTTPException\InternalServerErrorException In case of Friendica specific exceptions * */ - public function setForUser(App $a, array $user_record, bool $login_initial = false, bool $interactive = false, bool $login_refresh = false) + public function setForUser(App $a, array $user_record, bool $login_initial = false, bool $interactive = false, bool $refresh_login = true) { $my_url = $this->baseUrl . '/profile/' . $user_record['nickname']; @@ -354,13 +342,9 @@ class Authentication $this->setXAccMgmtStatusHeader($user_record); - if ($login_initial || $login_refresh) { - $this->dba->update('user', ['last-activity' => DateTimeFormat::utcNow('Y-m-d'), 'login_date' => DateTimeFormat::utcNow()], ['uid' => $user_record['uid']]); - - // Set the login date for all identities of the user - $this->dba->update('user', ['last-activity' => DateTimeFormat::utcNow('Y-m-d'), 'login_date' => DateTimeFormat::utcNow()], - ['parent-uid' => $user_record['uid'], 'account_removed' => false]); + User::updateLastActivity($user_record, $refresh_login); + if ($login_initial) { // Regularly update suggestions if (Contact\Relation::areSuggestionsOutdated($user_record['uid'])) { Worker::add(Worker::PRIORITY_MEDIUM, 'UpdateSuggestions', $user_record['uid']); diff --git a/src/Security/BasicAuth.php b/src/Security/BasicAuth.php index 23dbbc9ef5..9627b62bb0 100644 --- a/src/Security/BasicAuth.php +++ b/src/Security/BasicAuth.php @@ -183,10 +183,7 @@ class BasicAuth throw new UnauthorizedException("This API requires login"); } - // Don't refresh the login date more often than twice a day to spare database writes - $login_refresh = strcmp(DateTimeFormat::utc('now - 12 hours'), $record['login_date']) > 0; - - DI::auth()->setForUser($a, $record, false, false, $login_refresh); + DI::auth()->setForUser($a, $record, false, false, false); Hook::callAll('logged_in', $record); diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php index eb4b3eba4d..167c55487f 100644 --- a/src/Security/OAuth.php +++ b/src/Security/OAuth.php @@ -104,7 +104,10 @@ class OAuth } Logger::debug('Token found', $token); - User::updateLastActivity($token['uid']); + $user = User::getById($token['uid'], ['uid', 'last-activity', 'login_date']); + if (!empty($user)) { + User::updateLastActivity($user, false); + } // Regularly update suggestions if (Contact\Relation::areSuggestionsOutdated($token['uid'])) { From ba07172a65e5b8367f19aa468e88b073c99dac1e Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 5 Mar 2024 14:24:40 +0000 Subject: [PATCH 234/281] Compare with the utc value --- src/Model/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/User.php b/src/Model/User.php index 04c6943452..59ac7b46b5 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -833,7 +833,7 @@ class User public static function updateLastActivity(array $user, bool $refresh_login) { $current_day = DateTimeFormat::utcNow('Y-m-d'); - if (($user['last-activity'] == $current_day) && (!$refresh_login || DateTimeFormat::utc($user['login_date'], 'z-H') == date('z-H'))) { + if (($user['last-activity'] == $current_day) && (!$refresh_login || DateTimeFormat::utc($user['login_date'], 'z-H') == DateTimeFormat::utcNow('z-H'))) { return; } From 1b651519a3513def63eb5b5a67a4efcf1d6fab8d Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Tue, 5 Mar 2024 10:10:15 -0500 Subject: [PATCH 235/281] Normalize API fixture data - Change public contact name to the related local user name - Add location data to profile record that is used to update self and public contact during Auth --- tests/datasets/api.fixture.php | 3 ++- tests/src/Module/Api/ApiTest.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/datasets/api.fixture.php b/tests/datasets/api.fixture.php index 907d4545f9..fb758e7334 100644 --- a/tests/datasets/api.fixture.php +++ b/tests/datasets/api.fixture.php @@ -215,7 +215,7 @@ return [ 'id' => 48, 'uid' => 0, 'uri-id' => 42, - 'name' => 'Self contact', + 'name' => 'Test user', 'nick' => 'selfcontact', 'self' => 0, 'nurl' => 'http://friendica.local/profile/selfcontact', @@ -928,6 +928,7 @@ return [ [ 'id' => 1, 'uid' => 42, + 'locality' => 'DFRN', ], ], 'group' => [ diff --git a/tests/src/Module/Api/ApiTest.php b/tests/src/Module/Api/ApiTest.php index 31723cd90f..77f5fafa4b 100644 --- a/tests/src/Module/Api/ApiTest.php +++ b/tests/src/Module/Api/ApiTest.php @@ -43,7 +43,7 @@ abstract class ApiTest extends FixtureTest // User data that the test database is populated with const SELF_USER = [ 'id' => 42, - 'name' => 'Self contact', + 'name' => 'Test user', 'nick' => 'selfcontact', 'nurl' => 'http://localhost/profile/selfcontact' ]; From 31b92b16ed0c42fa2a0de765b28d4e600ff8ac3c Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 5 Mar 2024 21:25:00 +0000 Subject: [PATCH 236/281] Reduce the height of portrait videos --- src/Model/Item.php | 9 +++++++++ view/templates/video_top.tpl | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/Model/Item.php b/src/Model/Item.php index 6fba99853b..b5e31f0fba 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -3643,6 +3643,13 @@ class Item } if ($PostMedia->mimetype->type == 'video') { + if (($PostMedia->height ?? 0) > ($PostMedia->width ?? 0)) { + $height = min(DI::config()->get('system', 'max_video_height'), $PostMedia->height); + $width = 'auto'; + } else { + $height = 'auto'; + $width = '100%'; + } /// @todo Move the template to /content as well $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('video_top.tpl'), [ '$video' => [ @@ -3651,6 +3658,8 @@ class Item 'name' => $PostMedia->name ?: $PostMedia->url, 'preview' => $preview_url, 'mime' => (string)$PostMedia->mimetype, + 'height' => $height, + 'width' => $width, ], ]); if (($item['post-type'] ?? null) == Item::PT_VIDEO) { diff --git a/view/templates/video_top.tpl b/view/templates/video_top.tpl index 3f9d5886a5..b3cf049e71 100644 --- a/view/templates/video_top.tpl +++ b/view/templates/video_top.tpl @@ -1,6 +1,6 @@
{{* set preloading to none to lessen the load on the server *}} -